mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-06-07 19:22:02 +03:00
23 lines
508 B
Plaintext
23 lines
508 B
Plaintext
#
|
|
# Test case migrated from regression test suite:
|
|
# ./mysql/queries/nightly/alltest/test000/tpchSchemaValidation/j16.sql
|
|
#
|
|
# Author: Susil, susil.behera@mariadb.com
|
|
#
|
|
|
|
-- source ../include/have_columnstore.inc
|
|
|
|
--disable_warnings
|
|
drop table if exists j16;
|
|
--enable_warnings
|
|
|
|
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;
|
|
--disable_warnings
|
|
drop table j16;
|
|
--enable_warnings
|
|
#
|