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