1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

Disabled warnings and add drop table commands

This commit is contained in:
mariadb-DanielLee
2022-08-17 11:29:04 -05:00
parent 10a8d274cd
commit 8166e0284f
6 changed files with 12 additions and 1 deletions

View File

@ -19,3 +19,4 @@ j11_key
24
25
NULL
drop table j11;

View File

@ -19,3 +19,4 @@ j16_key
29
30
NULL
drop table j16;

View File

@ -19,3 +19,4 @@ j6_key
19
20
NULL
drop table j6;

View File

@ -7,10 +7,13 @@
-- source ../include/have_columnstore.inc
--disable_warnings
drop table if exists j11;
--enable_warnings
create table j11 (j11_key int)engine=columnstore;
insert into j11 values (11),(12),(13),(14),(15),(16),(17),(18),(19),(20),(21),(22),(23),(24),(25),(null);
select * from j11;
drop table j11;

View File

@ -7,10 +7,13 @@
-- 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;
drop table j16;

View File

@ -7,11 +7,13 @@
-- 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;
drop table j6;