1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-01 06:46:55 +03:00

Disable warnings for 'drop if exists' and 'create if not exist' commands

This commit is contained in:
mariadb-DanielLee
2022-12-08 11:37:44 -06:00
parent c14ab6d86b
commit fad0fd08f0
166 changed files with 903 additions and 148 deletions

View File

@ -8,7 +8,10 @@
#
USE tpch1;
#
--disable_warnings
drop table if exists stringtest;
--enable_warnings
create table stringtest (c1 char(10), c2 varchar(10), c3 varchar(6))engine=columnstore;
insert into stringtest values ('abc','cde','abc'), ('cde','abc','cde');
select * from stringtest where c1='abc' or c2='abc';
@ -17,6 +20,9 @@ select * from stringtest where c2='abc ';
select * from stringtest where c1='abc ' or c2='abc ';
select * from stringtest where c1 = 'abc' or c3='cde ';
select concat('abc ', c2), concat('cde ', c3) from stringtest;
--disable_warnings
drop table stringtest;
--enable_warnings
#