mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 07:32:27 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
9 lines
428 B
SQL
9 lines
428 B
SQL
select arrayReduce('median', [toDecimal32OrNull('1', 2)]);
|
|
select arrayReduce('median', [toDecimal64OrNull('1', 2)]);
|
|
select arrayReduce('median', [toDecimal128OrZero('1', 2)]);
|
|
select arrayReduce('sum', [toDecimal128OrNull('1', 2)]);
|
|
|
|
select arrayReduce('median', [toDecimal128OrNull('1', 2)]);
|
|
select arrayReduce('quantile(0.2)', [toDecimal128OrNull('1', 2)]);
|
|
select arrayReduce('medianExact', [toDecimal128OrNull('1', 2)]);
|