You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-06-13 16:01:32 +03:00
22 lines
496 B
Plaintext
22 lines
496 B
Plaintext
#
|
|
# Test case migrated from regression test suite:
|
|
# ./mysql/queries/nightly/alltest/test000/tpchSchemaValidation/j6.sql
|
|
#
|
|
# Author: Susil, susil.behera@mariadb.com
|
|
#
|
|
|
|
-- source ../include/have_columnstore.inc
|
|
|
|
--disable_warnings
|
|
drop table if exists j6;
|
|
--enable_warnings
|
|
create table j6 (j6_key int)engine=columnstore;
|
|
|
|
insert into j6 values (6),(7),(8),(9),(10),(11),(12),(13),(14),(15),(16),(17),(18),(19),(20),(null);
|
|
|
|
select * from j6;
|
|
--disable_warnings
|
|
drop table j6;
|
|
--enable_warnings
|
|
#
|