You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-07 03:22:57 +03:00
Disabled warnings and add drop table commands
This commit is contained in:
@@ -19,3 +19,4 @@ j11_key
|
|||||||
24
|
24
|
||||||
25
|
25
|
||||||
NULL
|
NULL
|
||||||
|
drop table j11;
|
||||||
|
@@ -19,3 +19,4 @@ j16_key
|
|||||||
29
|
29
|
||||||
30
|
30
|
||||||
NULL
|
NULL
|
||||||
|
drop table j16;
|
||||||
|
@@ -19,3 +19,4 @@ j6_key
|
|||||||
19
|
19
|
||||||
20
|
20
|
||||||
NULL
|
NULL
|
||||||
|
drop table j6;
|
||||||
|
@@ -7,10 +7,13 @@
|
|||||||
|
|
||||||
-- source ../include/have_columnstore.inc
|
-- source ../include/have_columnstore.inc
|
||||||
|
|
||||||
|
--disable_warnings
|
||||||
drop table if exists j11;
|
drop table if exists j11;
|
||||||
|
--enable_warnings
|
||||||
|
|
||||||
create table j11 (j11_key int)engine=columnstore;
|
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);
|
insert into j11 values (11),(12),(13),(14),(15),(16),(17),(18),(19),(20),(21),(22),(23),(24),(25),(null);
|
||||||
|
|
||||||
select * from j11;
|
select * from j11;
|
||||||
|
drop table j11;
|
||||||
|
@@ -7,10 +7,13 @@
|
|||||||
|
|
||||||
-- source ../include/have_columnstore.inc
|
-- source ../include/have_columnstore.inc
|
||||||
|
|
||||||
|
--disable_warnings
|
||||||
drop table if exists j16;
|
drop table if exists j16;
|
||||||
|
--enable_warnings
|
||||||
|
|
||||||
create table j16 (j16_key int)engine=columnstore;
|
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);
|
insert into j16 values (16),(17),(18),(19),(20),(21),(22),(23),(24),(25),(26),(27),(28),(29),(30),(null);
|
||||||
|
|
||||||
select * from j16;
|
select * from j16;
|
||||||
|
drop table j16;
|
||||||
|
@@ -7,11 +7,13 @@
|
|||||||
|
|
||||||
-- source ../include/have_columnstore.inc
|
-- source ../include/have_columnstore.inc
|
||||||
|
|
||||||
|
--disable_warnings
|
||||||
drop table if exists j6;
|
drop table if exists j6;
|
||||||
|
--enable_warnings
|
||||||
create table j6 (j6_key int)engine=columnstore;
|
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);
|
insert into j6 values (6),(7),(8),(9),(10),(11),(12),(13),(14),(15),(16),(17),(18),(19),(20),(null);
|
||||||
|
|
||||||
select * from j6;
|
select * from j6;
|
||||||
|
|
||||||
|
drop table j6;
|
||||||
|
Reference in New Issue
Block a user