mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
23cd919681
* workig commit №1 * working commit №2 * first version of ArithmeticOperationsInAgrFuncOptimize (min, max, sum) * fix conflicts * fix №2 * attempt №3 * Description + little mistake * fix style + expanded optimization + add performance test * style + merge with new version * one more branch * bug fix + merge * just merge * some code style and logic fixes * little changes * tests * test(2) * style * seems to have fixed everything that was required * bug fix * style * build fix * fix typo * fix clang-10 warning * fix clang-10 warning * nolint * add new files to ya.make * extract all functions from Any * add last new lines. * extract all functions from Any * add last new lines. * build + requested changes * code style * build + little perf test + anyLast * minor changes * bug fix * minor changes * another minor changes * fix + experement * experement 2.0 * experement 3.0 * experement 3.1 * experement 4.0 * last experement(think so) * just another attempt to fix UB * minor changes * I think I won * ya.make * fix requested changes Co-authored-by: Artem Zuikov <chertus@gmail.com>
20 lines
506 B
XML
20 lines
506 B
XML
<test>
|
|
|
|
<stop_conditions>
|
|
<all_of>
|
|
<iterations>10</iterations>
|
|
</all_of>
|
|
</stop_conditions>
|
|
|
|
|
|
<query>SELECT any(-1 * (((-2 * (number * -3)) * -4) * -5)) FROM numbers(120000000)</query>
|
|
|
|
<query>SELECT anyLast(-1 * (((-2 * (number * -3)) * -4) * -5)) FROM numbers(120000000)</query>
|
|
|
|
<query>SELECT any(number * 2) as n, n * 3 FROM numbers(120000000)</query>
|
|
|
|
<query>SELECT any(number * round(toInt64(number), -2)) FROM numbers(120000000)</query>
|
|
|
|
|
|
</test>
|