You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
Disable warnings for 'drop if exists' and 'create if not exist' commands
This commit is contained in:
@ -8,16 +8,19 @@
|
||||
#
|
||||
USE tpch1;
|
||||
#
|
||||
--disable_warnings
|
||||
drop table if exists qa_cast;
|
||||
--enable_warnings
|
||||
|
||||
create table qa_cast ( s1 varchar(20), qaint1 int, qadouble double) engine=columnstore;
|
||||
insert into qa_cast values ('123456789',123456789, 1234);
|
||||
insert into qa_cast values ('123.45',123456789, 123.45);
|
||||
insert into qa_cast values ('abc',123456789, 1.5);
|
||||
insert into qa_cast values ('0.001',123456789, 0.001);
|
||||
select s1, qaint1, mod(s1, 10), mod(qaint1, 10), mod(qadouble, 10) from qa_cast;
|
||||
|
||||
--disable_warnings
|
||||
drop table qa_cast;
|
||||
|
||||
|
||||
|
||||
--enable_warnings
|
||||
#
|
||||
|
||||
|
Reference in New Issue
Block a user