ClickHouse/tests/performance/order_by_decimals.xml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
551 B
XML
Raw Normal View History

2019-08-07 14:41:03 +00:00
<test>
2021-03-29 20:26:06 +00:00
<query>SELECT toInt32(number) AS n FROM numbers(10000000) ORDER BY n DESC FORMAT Null</query>
<query>SELECT toDecimal32(number, 0) AS n FROM numbers(10000000) ORDER BY n FORMAT Null</query>
2019-08-07 14:41:03 +00:00
2021-03-29 20:26:06 +00:00
<query>SELECT toDecimal32(number, 0) AS n FROM numbers(10000000) ORDER BY n DESC FORMAT Null</query>
<query>SELECT toDecimal64(number, 8) AS n FROM numbers(10000000) ORDER BY n DESC FORMAT Null</query>
<query>SELECT toDecimal128(number, 10) AS n FROM numbers(10000000) ORDER BY n DESC FORMAT Null</query>
2019-08-07 14:41:03 +00:00
</test>