1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00
Files
mariadb-columnstore-engine/mysql-test/columnstore/devregression/r/mcs7580_j16.result
2022-08-17 11:29:04 -05:00

23 lines
275 B
Plaintext

drop table if exists j16;
create table j16 (j16_key int)engine=columnstore;
insert into j16 values (16),(17),(18),(19),(20),(21),(22),(23),(24),(25),(26),(27),(28),(29),(30),(null);
select * from j16;
j16_key
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
NULL
drop table j16;