You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-17 09:41:06 +03:00
15 lines
506 B
SQL
Executable File
15 lines
506 B
SQL
Executable File
# Validation sql statement.
|
|
|
|
select count(*) from test012_fact where c3 is null;
|
|
|
|
select count(*) from test012_fact where c3 is not null;
|
|
|
|
select id, hex(c3) from test012_fact where id = 2 union
|
|
select id, hex(c1) from test012_staging where id = 2;
|
|
|
|
select id, hex(c3) from test012_fact where id = 2 union
|
|
select id, hex(c1) from test012_staging where id = 2;
|
|
|
|
select id, hex(c1) from test012_staging where id in (1, 3, 5);
|
|
select id, hex(c3) from test012_fact where id in (200, 205, 999);
|