You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
Add drop view v1 to the test to avoid failure if previous test forget to drop it
This commit is contained in:
committed by
Leonid Fedorov
parent
cfe95ea846
commit
5a709e11a5
@ -8,6 +8,13 @@
|
||||
SET sql_mode=ORACLE;
|
||||
SET default_storage_engine=ColumnStore;
|
||||
|
||||
--disable_query_log
|
||||
--disable_warnings
|
||||
DROP VIEW IF EXISTS v1;
|
||||
--enable_warnings
|
||||
--enable_query_log
|
||||
|
||||
|
||||
EXPLAIN EXTENDED SELECT 'a'||'b'||'c';
|
||||
EXPLAIN EXTENDED SELECT CONCAT('a'||'b'||'c');
|
||||
|
||||
|
@ -1,5 +1,12 @@
|
||||
SET sql_mode=ORACLE;
|
||||
SET default_storage_engine=ColumnStore;
|
||||
|
||||
--disable_query_log
|
||||
--disable_warnings
|
||||
DROP VIEW IF EXISTS v1;
|
||||
--enable_warnings
|
||||
--enable_query_log
|
||||
|
||||
--error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT
|
||||
SELECT DECODE(10);
|
||||
--error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT
|
||||
|
@ -8,6 +8,13 @@ SET default_storage_engine=ColumnStore;
|
||||
--echo # MDEV-13003 - Oracle compatibility : Replace function
|
||||
--echo #
|
||||
|
||||
--disable_query_log
|
||||
--disable_warnings
|
||||
DROP VIEW IF EXISTS v1;
|
||||
--enable_warnings
|
||||
--enable_query_log
|
||||
|
||||
|
||||
SELECT REPLACE(null,'a','b') ;
|
||||
SELECT REPLACE('ab',null,'b') ;
|
||||
SELECT REPLACE('ab','a',null) ;
|
||||
|
Reference in New Issue
Block a user