Skip to content

Commit

Permalink
[fix](test) fix clickhouse jdbc catalog func push down case (apache#4…
Browse files Browse the repository at this point in the history
…3196)

Related PR: apache#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 morningman committed Nov 6, 2024
1 parent 9096671 commit a9cd1ff
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 a9cd1ff

Please sign in to comment.