1drop table if exists j11;
2create table j11 (j11_key int)engine=columnstore;
3insert into j11 values (11),(12),(13),(14),(15),(16),(17),(18),(19),(20),(21),(22),(23),(24),(25),(null);
4select * from j11;
5j11_key
611
712
813
914
1015
1116
1217
1318
1419
1520
1621
1722
1823
1924
2025
21NULL
22