Skip to content

Commit

Permalink
[fix](test) fix clickhouse jdbc catalog func push down case (#43196)
Browse files Browse the repository at this point in the history
Related PR: #42102

Because we previously disabled the pushdown of cast, a test case error occurred when checking the pushdown of the clickhosue function. Because the column type is largeint, a cast will be generated when using from_unixtime, causing the function to fail to be pushed down. So we changed the column type to bigint.
  • Loading branch information
zy-kkk authored and Your Name committed Nov 5, 2024
1 parent 21daa9b commit 0b0119f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ ORDER BY key;
CREATE TABLE doris_test.ts
(
id Int64,
ts UInt64
ts Int64
)
ENGINE = MergeTree
ORDER BY id;
Expand Down

0 comments on commit 0b0119f

Please sign in to comment.