1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-17 09:41:06 +03:00
Files
mariadb-columnstore-engine/mysql/queries/nightly/srvswdev11/test112/validate.sql
2016-01-06 14:08:59 -06:00

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