should be it
This commit is contained in:
13
external/duckdb/benchmark/micro/aggregate/quantile/quantile_many.benchmark
vendored
Normal file
13
external/duckdb/benchmark/micro/aggregate/quantile/quantile_many.benchmark
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
# name: benchmark/micro/aggregate/quantile/quantile_many.benchmark
|
||||
# description: Quantile Function
|
||||
# group: [quantile]
|
||||
|
||||
name Quantile Many Groups
|
||||
group quantile
|
||||
|
||||
load
|
||||
create table quantile as select range r, random() from range(10000000) union all values (NULL, 0.1), (NULL, 0.5), (NULL, 0.9) order by 2;
|
||||
|
||||
run
|
||||
SELECT quantile(r, 0.5) FROM quantile GROUP BY r % 100000
|
||||
|
||||
Reference in New Issue
Block a user