MXS-1196: Add Oracle specific tests

Copied from .../server/mysql-test/suite/compat/oracle/t

Will be used as a baseline and edited as needed.
This commit is contained in:
Johan Wikman
2017-05-16 12:37:22 +03:00
parent 8c1d53192c
commit 50413c5195
32 changed files with 11322 additions and 0 deletions

View File

@ -0,0 +1,37 @@
SET sql_mode=ORACLE;
--echo #
--echo # MDEV-10596 Allow VARCHAR and VARCHAR2 without length as a data type of routine parameters and in RETURN clause
--echo #
--let type = CHAR
--let length = 2000
--source sp-param.inc
--let type = NCHAR
--let length = 2000
--source sp-param.inc
--let type = BINARY
--let length = 2000
--source sp-param.inc
--let type = VARCHAR
--let length = 4000
--source sp-param.inc
--let type = VARCHAR2
--let length = 4000
--source sp-param.inc
--let type = NVARCHAR
--let length = 4000
--source sp-param.inc
--let type = VARBINARY
--let length = 4000
--source sp-param.inc
--let type = RAW
--let length = 4000
--source sp-param.inc