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/mcs7578_j1.result
2022-08-17 16:56:26 +00:00

23 lines
250 B
Plaintext

drop table if exists j1;
create table j1 (j1_key int)engine=columnstore;
insert into j1 values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12),(13),(14),(15),(null);
select * from j1;
j1_key
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
NULL
drop table j1;