mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Fix jit compilation settings in performance test
This commit is contained in:
parent
5090198d3a
commit
81ac09746a
@ -57,7 +57,7 @@
|
|||||||
NOT ignore(a / b + c / d + e / f + g / h + i / j)
|
NOT ignore(a / b + c / d + e / f + g / h + i / j)
|
||||||
SETTINGS
|
SETTINGS
|
||||||
compile_expressions = 1,
|
compile_expressions = 1,
|
||||||
min_count_to_compile = 1
|
min_count_to_compile_expression = 1
|
||||||
</query>
|
</query>
|
||||||
<drop_query>DROP TABLE IF EXISTS jit_test</drop_query>
|
<drop_query>DROP TABLE IF EXISTS jit_test</drop_query>
|
||||||
</test>
|
</test>
|
||||||
|
@ -36,7 +36,8 @@
|
|||||||
bitXor(x4, bitShiftRight(x4, 33)) AS x5
|
bitXor(x4, bitShiftRight(x4, 33)) AS x5
|
||||||
SELECT count() FROM numbers(10000000) WHERE NOT ignore(x5)
|
SELECT count() FROM numbers(10000000) WHERE NOT ignore(x5)
|
||||||
SETTINGS
|
SETTINGS
|
||||||
compile_expressions = 1
|
compile_expressions = 1,
|
||||||
|
min_count_to_compile_expression = 1
|
||||||
</query>
|
</query>
|
||||||
|
|
||||||
<!-- The same expression written as ClickHouse builtin function. -->
|
<!-- The same expression written as ClickHouse builtin function. -->
|
||||||
|
Loading…
Reference in New Issue
Block a user