* [Feature](vectorized)(quantile_state): support vectorized quantile state functions 1. now quantile column only support not nullable 2. add up some regression test cases 3. set default enable_quantile_state_type = true --------- Co-authored-by: spaces-x <weixiang06@meituan.com>
7 lines
233 B
SQL
7 lines
233 B
SQL
create TABLE if not exists `quantile_state_basic_agg` (
|
|
`k1` int(11) NULL,
|
|
`k2` QUANTILE_STATE QUANTILE_UNION NOT NULL
|
|
)AGGREGATE KEY(`k1`)
|
|
DISTRIBUTED BY HASH(`k1`) BUCKETS 1
|
|
PROPERTIES("replication_num" = "1");
|