Files
doris/regression-test/common/table/quantile_state_basic_agg.sql
spaces-x 5b39fa9843 [Feature](vec)(quantile_state): support quantile state in vectorized engine (#16562)
* [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>
2023-03-14 10:54:04 +08:00

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");