# # This file contains tests covering the parser # #============================================================================= # LEXICAL PARSER (lex) #============================================================================= # # Maintainer: these tests are for the lexical parser, so every character, # even whitespace or comments, is significant here. # SET @save_sql_mode=@@sql_mode; # # Documenting the current behavior, to detect incompatible changes. # In each cases: # - no error is the correct result # - an error is the expected result with the current implementation, # and is a limitation. set SQL_MODE=''; create table ADDDATE(a int); drop table ADDDATE; create table ADDDATE (a int); drop table ADDDATE; --error ER_PARSE_ERROR create table BIT_AND(a int); create table BIT_AND (a int); drop table BIT_AND; --error ER_PARSE_ERROR create table BIT_OR(a int); create table BIT_OR (a int); drop table BIT_OR; --error ER_PARSE_ERROR create table BIT_XOR(a int); create table BIT_XOR (a int); drop table BIT_XOR; --error ER_PARSE_ERROR create table CAST(a int); create table CAST (a int); drop table CAST; --error ER_PARSE_ERROR create table COUNT(a int); create table COUNT (a int); drop table COUNT; --error ER_PARSE_ERROR create table CURDATE(a int); create table CURDATE (a int); drop table CURDATE; --error ER_PARSE_ERROR create table CURTIME(a int); create table CURTIME (a int); drop table CURTIME; --error ER_PARSE_ERROR create table DATE_ADD(a int); create table DATE_ADD (a int); drop table DATE_ADD; --error ER_PARSE_ERROR create table DATE_SUB(a int); create table DATE_SUB (a int); drop table DATE_SUB; --error ER_PARSE_ERROR create table EXTRACT(a int); create table EXTRACT (a int); drop table EXTRACT; --error ER_PARSE_ERROR create table GROUP_CONCAT(a int); create table GROUP_CONCAT (a int); drop table GROUP_CONCAT; # Limitation removed in 5.1 create table GROUP_UNIQUE_USERS(a int); drop table GROUP_UNIQUE_USERS; create table GROUP_UNIQUE_USERS (a int); drop table GROUP_UNIQUE_USERS; --error ER_PARSE_ERROR create table MAX(a int); create table MAX (a int); drop table MAX; --error ER_PARSE_ERROR create table MID(a int); create table MID (a int); drop table MID; --error ER_PARSE_ERROR create table MIN(a int); create table MIN (a int); drop table MIN; --error ER_PARSE_ERROR create table NOW(a int); create table NOW (a int); drop table NOW; --error ER_PARSE_ERROR create table POSITION(a int); create table POSITION (a int); drop table POSITION; create table SESSION_USER(a int); drop table SESSION_USER; create table SESSION_USER (a int); drop table SESSION_USER; --error ER_PARSE_ERROR create table STD(a int); create table STD (a int); drop table STD; --error ER_PARSE_ERROR create table STDDEV(a int); create table STDDEV (a int); drop table STDDEV; --error ER_PARSE_ERROR create table STDDEV_POP(a int); create table STDDEV_POP (a int); drop table STDDEV_POP; --error ER_PARSE_ERROR create table STDDEV_SAMP(a int); create table STDDEV_SAMP (a int); drop table STDDEV_SAMP; create table SUBDATE(a int); drop table SUBDATE; create table SUBDATE (a int); drop table SUBDATE; --error ER_PARSE_ERROR create table SUBSTR(a int); create table SUBSTR (a int); drop table SUBSTR; --error ER_PARSE_ERROR create table SUBSTRING(a int); create table SUBSTRING (a int); drop table SUBSTRING; --error ER_PARSE_ERROR create table SUM(a int); create table SUM (a int); drop table SUM; create table SYSDATE(a int); DROP TABLE SYSDATE; create table SYSDATE (a int); drop table SYSDATE; create table SYSTEM_USER(a int); drop table SYSTEM_USER; create table SYSTEM_USER (a int); drop table SYSTEM_USER; --error ER_PARSE_ERROR create table TRIM(a int); create table TRIM (a int); drop table TRIM; # Limitation removed in 5.1 create table UNIQUE_USERS(a int); drop table UNIQUE_USERS; create table UNIQUE_USERS (a int); drop table UNIQUE_USERS; --error ER_PARSE_ERROR create table VARIANCE(a int); create table VARIANCE (a int); drop table VARIANCE; --error ER_PARSE_ERROR create table VAR_POP(a int); create table VAR_POP (a int); drop table VAR_POP; --error ER_PARSE_ERROR create table VAR_SAMP(a int); create table VAR_SAMP (a int); drop table VAR_SAMP; set SQL_MODE='IGNORE_SPACE'; create table ADDDATE(a int); drop table ADDDATE; create table ADDDATE (a int); drop table ADDDATE; --error ER_PARSE_ERROR create table BIT_AND(a int); --error ER_PARSE_ERROR create table BIT_AND (a int); --error ER_PARSE_ERROR create table BIT_OR(a int); --error ER_PARSE_ERROR create table BIT_OR (a int); --error ER_PARSE_ERROR create table BIT_XOR(a int); --error ER_PARSE_ERROR create table BIT_XOR (a int); --error ER_PARSE_ERROR create table CAST(a int); --error ER_PARSE_ERROR create table CAST (a int); --error ER_PARSE_ERROR create table COUNT(a int); --error ER_PARSE_ERROR create table COUNT (a int); --error ER_PARSE_ERROR create table CURDATE(a int); --error ER_PARSE_ERROR create table CURDATE (a int); --error ER_PARSE_ERROR create table CURTIME(a int); --error ER_PARSE_ERROR create table CURTIME (a int); --error ER_PARSE_ERROR create table DATE_ADD(a int); --error ER_PARSE_ERROR create table DATE_ADD (a int); --error ER_PARSE_ERROR create table DATE_SUB(a int); --error ER_PARSE_ERROR create table DATE_SUB (a int); --error ER_PARSE_ERROR create table EXTRACT(a int); --error ER_PARSE_ERROR create table EXTRACT (a int); --error ER_PARSE_ERROR create table GROUP_CONCAT(a int); --error ER_PARSE_ERROR create table GROUP_CONCAT (a int); # Limitation removed in 5.1 create table GROUP_UNIQUE_USERS(a int); drop table GROUP_UNIQUE_USERS; create table GROUP_UNIQUE_USERS (a int); drop table GROUP_UNIQUE_USERS; --error ER_PARSE_ERROR create table MAX(a int); --error ER_PARSE_ERROR create table MAX (a int); --error ER_PARSE_ERROR create table MID(a int); --error ER_PARSE_ERROR create table MID (a int); --error ER_PARSE_ERROR create table MIN(a int); --error ER_PARSE_ERROR create table MIN (a int); --error ER_PARSE_ERROR create table NOW(a int); --error ER_PARSE_ERROR create table NOW (a int); --error ER_PARSE_ERROR create table POSITION(a int); --error ER_PARSE_ERROR create table POSITION (a int); create table SESSION_USER(a int); drop table SESSION_USER; create table SESSION_USER (a int); drop table SESSION_USER; --error ER_PARSE_ERROR create table STD(a int); --error ER_PARSE_ERROR create table STD (a int); --error ER_PARSE_ERROR create table STDDEV(a int); --error ER_PARSE_ERROR create table STDDEV (a int); --error ER_PARSE_ERROR create table STDDEV_POP(a int); --error ER_PARSE_ERROR create table STDDEV_POP (a int); --error ER_PARSE_ERROR create table STDDEV_SAMP(a int); --error ER_PARSE_ERROR create table STDDEV_SAMP (a int); create table SUBDATE(a int); drop table SUBDATE; create table SUBDATE (a int); drop table SUBDATE; --error ER_PARSE_ERROR create table SUBSTR(a int); --error ER_PARSE_ERROR create table SUBSTR (a int); --error ER_PARSE_ERROR create table SUBSTRING(a int); --error ER_PARSE_ERROR create table SUBSTRING (a int); --error ER_PARSE_ERROR create table SUM(a int); --error ER_PARSE_ERROR create table SUM (a int); create table SYSDATE(a int); DROP TABLE SYSDATE; create table SYSDATE (a int); DROP TABLE SYSDATE; create table SYSTEM_USER(a int); drop table SYSTEM_USER; create table SYSTEM_USER (a int); drop table SYSTEM_USER; --error ER_PARSE_ERROR create table TRIM(a int); --error ER_PARSE_ERROR create table TRIM (a int); # Limitation removed in 5.1 create table UNIQUE_USERS(a int); drop table UNIQUE_USERS; create table UNIQUE_USERS (a int); drop table UNIQUE_USERS; --error ER_PARSE_ERROR create table VARIANCE(a int); --error ER_PARSE_ERROR create table VARIANCE (a int); --error ER_PARSE_ERROR create table VAR_POP(a int); --error ER_PARSE_ERROR create table VAR_POP (a int); --error ER_PARSE_ERROR create table VAR_SAMP(a int); --error ER_PARSE_ERROR create table VAR_SAMP (a int); # # Bug#25930 (CREATE TABLE x SELECT ... parses columns wrong when ran with # ANSI_QUOTES mode) # --disable_warnings DROP TABLE IF EXISTS table_25930_a; DROP TABLE IF EXISTS table_25930_b; --enable_warnings SET SQL_MODE = 'ANSI_QUOTES'; CREATE TABLE table_25930_a ( "blah" INT ); CREATE TABLE table_25930_b SELECT "blah" - 1 FROM table_25930_a; # The lexer used to chop the first <">, # not marking the start of the token "blah" correctly. desc table_25930_b; DROP TABLE table_25930_a; DROP TABLE table_25930_b; SET @@sql_mode=@save_sql_mode; # # Bug#26030 (Parsing fails for stored routine w/multi-statement execution # enabled) # --disable_warnings DROP PROCEDURE IF EXISTS p26030; --enable_warnings delimiter $$; select "non terminated"$$ select "terminated";$$ select "non terminated, space" $$ select "terminated, space"; $$ select "non terminated, comment" /* comment */$$ #--view-protocol test mode can not parse query --disable_view_protocol select "terminated, comment"; /* comment */$$ # Multi queries can not be used in --ps-protocol test mode --disable_ps_protocol select "stmt 1";select "stmt 2 non terminated"$$ select "stmt 1";select "stmt 2 terminated";$$ select "stmt 1";select "stmt 2 non terminated, space" $$ select "stmt 1";select "stmt 2 terminated, space"; $$ select "stmt 1";select "stmt 2 non terminated, comment" /* comment */$$ select "stmt 1";select "stmt 2 terminated, comment"; /* comment */$$ select "stmt 1"; select "space, stmt 2"$$ select "stmt 1";/* comment */select "comment, stmt 2"$$ DROP PROCEDURE IF EXISTS p26030; CREATE PROCEDURE p26030() BEGIN SELECT 1; END; CALL p26030() $$ DROP PROCEDURE IF EXISTS p26030; CREATE PROCEDURE p26030() SELECT 1; CALL p26030() $$ --enable_ps_protocol --enable_view_protocol delimiter ;$$ DROP PROCEDURE p26030; #============================================================================= # SYNTACTIC PARSER (bison) #============================================================================= # # # Bug#21114 (Foreign key creation fails to table with name format) # # Test coverage with edge conditions -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select pi(3.14); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select tan(); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select tan(1, 2); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select makedate(1); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select makedate(1, 2, 3); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select maketime(); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select maketime(1); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select maketime(1, 2); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select maketime(1, 2, 3, 4); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select atan(); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select atan2(1, 2, 3); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select concat(); select concat("foo"); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select concat_ws(); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select concat_ws("foo"); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select encrypt(); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select encrypt(1, 2, 3); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select des_encrypt("p1", "p2", "not expected"); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select des_decrypt("p1", "p2", "not expected"); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select elt(); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select elt(1); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select export_set(); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select export_set("p1"); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select export_set("p1", "p2"); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select export_set("p1", "p2", "p3", "p4", "p5", "p6"); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select field(); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select field("p1"); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select from_unixtime(); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select from_unixtime(1, 2, 3); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select unix_timestamp(1, 2); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select greatest(); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select greatest(12); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select last_insert_id(1, 2); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select least(); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select least(12); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select locate(); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select locate(1); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select locate(1, 2, 3, 4); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select log(); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select log(1, 2, 3); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select make_set(); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select make_set(1); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select master_pos_wait(); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select master_pos_wait(1); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select master_pos_wait(1, 2, 3, 4, 5); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select rand(1, 2, 3); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select round(1, 2, 3); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select yearweek(); -- error ER_WRONG_PARAMCOUNT_TO_NATIVE_FCT select yearweek(1, 2, 3); # # Bug#24736: UDF functions parsed as Stored Functions # # Verify that the syntax for calling UDF : foo(expr AS param, ...) # can not be used when calling native functions # Native function with 1 argument select abs(3); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select abs(3 AS three); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select abs(3 three); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select abs(3 AS "three"); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select abs(3 "three"); # Native function with 2 arguments set @bar="bar"; set @foobar="foobar"; select instr("foobar", "bar"); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select instr("foobar" AS p1, "bar"); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select instr("foobar" p1, "bar"); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select instr("foobar" AS "p1", "bar"); ## String concatenation, valid syntax select instr("foobar" "p1", "bar"); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select instr(@foobar "p1", "bar"); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select instr("foobar", "bar" AS p2); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select instr("foobar", "bar" p2); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select instr("foobar", "bar" AS "p2"); ## String concatenation, valid syntax select instr("foobar", "bar" "p2"); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select instr("foobar", @bar "p2"); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select instr("foobar" AS p1, "bar" AS p2); # Native function with 3 arguments select conv(255, 10, 16); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select conv(255 AS p1, 10, 16); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select conv(255 p1, 10, 16); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select conv(255 AS "p1", 10, 16); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select conv(255 "p1", 10, 16); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select conv(255, 10 AS p2, 16); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select conv(255, 10 p2, 16); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select conv(255, 10 AS "p2", 16); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select conv(255, 10 "p2", 16); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select conv(255, 10, 16 AS p3); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select conv(255, 10, 16 p3); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select conv(255, 10, 16 AS "p3"); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select conv(255, 10, 16 "p3"); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select conv(255 AS p1, 10 AS p2, 16 AS p3); # Native function with a variable number of arguments # Bug in libm.so on Solaris: # atan(10) from 32-bit version returns 1.4711276743037347 # atan(10) from 64-bit version returns 1.4711276743037345 --replace_result 1.4711276743037345 1.4711276743037347 select atan(10); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select atan(10 AS p1); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select atan(10 p1); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select atan(10 AS "p1"); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select atan(10 "p1"); select atan(10, 20); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select atan(10 AS p1, 20); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select atan(10 p1, 20); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select atan(10 AS "p1", 20); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select atan(10 "p1", 20); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select atan(10, 20 AS p2); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select atan(10, 20 p2); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select atan(10, 20 AS "p2"); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select atan(10, 20 "p2"); -- error ER_WRONG_PARAMETERS_TO_NATIVE_FCT select atan(10 AS p1, 20 AS p2); # # Bug#22312 Syntax error in expression with INTERVAL() # --disable_warnings DROP TABLE IF EXISTS t1; --enable_warnings SELECT STR_TO_DATE('10:00 PM', '%h:%i %p') + INTERVAL 10 MINUTE; #enable view protocol after fix MDEV-27871 --disable_view_protocol SELECT STR_TO_DATE('10:00 PM', '%h:%i %p') + INTERVAL (INTERVAL(1,2,3) + 1) MINUTE; --enable_view_protocol SELECT "1997-12-31 23:59:59" + INTERVAL 1 SECOND; SELECT 1 + INTERVAL(1,0,1,2) + 1; SELECT INTERVAL(1^1,0,1,2) + 1; SELECT INTERVAL(1,0+1,2,3) * 5.5; SELECT INTERVAL(3,3,1+3,4+4) / 0.5; SELECT (INTERVAL(1,0,1,2) + 5) * 7 + INTERVAL(1,0,1,2) / 2; SELECT INTERVAL(1,0,1,2) + 1, 5 * INTERVAL(1,0,1,2); SELECT INTERVAL(0,(1*5)/2) + INTERVAL(5,4,3); --disable_warnings SELECT 1^1 + INTERVAL 1+1 SECOND & 1 + INTERVAL 1+1 SECOND; SELECT 1%2 - INTERVAL 1^1 SECOND | 1%2 - INTERVAL 1^1 SECOND; --enable_warnings CREATE TABLE t1 (a INT, b DATETIME); INSERT INTO t1 VALUES (INTERVAL(3,2,1) + 1, "1997-12-31 23:59:59" + INTERVAL 1 SECOND); SELECT * FROM t1 WHERE a = INTERVAL(3,2,1) + 1; DROP TABLE t1; # # Bug#28317 Left Outer Join with {oj outer-join} # --disable_warnings DROP TABLE IF EXISTS t1,t2,t3; --enable_warnings CREATE TABLE t1 (a1 INT, a2 INT, a3 INT, a4 DATETIME); CREATE TABLE t2 LIKE t1; CREATE TABLE t3 LIKE t1; SELECT t1.* FROM t1 AS t0, { OJ t2 INNER JOIN t1 ON (t1.a1=t2.a1) } WHERE t0.a3=2; SELECT t1.*,t2.* FROM { OJ ((t1 INNER JOIN t2 ON (t1.a1=t2.a2)) LEFT OUTER JOIN t3 ON t3.a3=t2.a1)}; SELECT t1.*,t2.* FROM { OJ ((t1 LEFT OUTER JOIN t2 ON t1.a3=t2.a2) INNER JOIN t3 ON (t3.a1=t2.a2))}; SELECT t1.*,t2.* FROM { OJ (t1 LEFT OUTER JOIN t2 ON t1.a1=t2.a2) CROSS JOIN t3 ON (t3.a2=t2.a3)}; SELECT * FROM {oj t1 LEFT OUTER JOIN t2 ON t1.a1=t2.a3} WHERE t1.a2 > 10; SELECT {fn CONCAT(a1,a2)} FROM t1; UPDATE t3 SET a4={d '1789-07-14'} WHERE a1=0; SELECT a1, a4 FROM t2 WHERE a4 LIKE {fn UCASE('1789-07-14')}; DROP TABLE t1, t2, t3; --echo # --echo # End of 5.1 tests --echo # --echo # --echo # Bug#17075846 : unquoted file names for variable values are --echo # accepted but parsed incorrectly --echo # --error ER_WRONG_TYPE_FOR_VAR SET default_storage_engine=a.myisam; --error ER_WRONG_TYPE_FOR_VAR SET default_storage_engine = .a.MyISAM; --error ER_WRONG_TYPE_FOR_VAR SET default_storage_engine = a.b.MyISAM; --error ER_WRONG_TYPE_FOR_VAR SET default_storage_engine = `a`.MyISAM; --error ER_WRONG_TYPE_FOR_VAR SET default_storage_engine = `a`.`MyISAM`; --error ER_UNKNOWN_STORAGE_ENGINE set default_storage_engine = "a.MYISAM"; --error ER_UNKNOWN_STORAGE_ENGINE set default_storage_engine = 'a.MYISAM'; --error ER_UNKNOWN_STORAGE_ENGINE set default_storage_engine = `a.MYISAM`; CREATE TABLE t1 (s VARCHAR(100)); --ERROR ER_BAD_FIELD_ERROR CREATE TRIGGER trigger1 BEFORE INSERT ON t1 FOR EACH ROW SET default_storage_engine = NEW.INNODB; DROP TABLE t1; # # MDEV-8328 Evaluation of two "!" operators depends on space in beetween # --error ER_PARSE_ERROR select 0==0; select 1=!0, 1 = ! 0; select !!0, ! ! 0; select 2>!0, 2 > ! 0; select 0<=!0, 0 <= !0; select 1<proc_list.elements == 0 or syntax error on PROCEDURE ANALYSE in UNION --echo # CREATE TABLE t1 (i INT); --error ER_PARSE_ERROR (SELECT * FROM t1 PROCEDURE ANALYSE(10, 10)) UNION (SELECT * FROM t1 PROCEDURE ANALYSE(10, 10)); --error ER_PARSE_ERROR (SELECT * FROM t1 PROCEDURE ANALYSE(10, 10)) UNION SELECT * FROM t1 PROCEDURE ANALYSE(10, 10); --error ER_PARSE_ERROR (SELECT * FROM t1 PROCEDURE ANALYSE(10, 10)) UNION (SELECT 1); --error ER_PARSE_ERROR (SELECT * FROM t1 PROCEDURE ANALYSE(10, 10)) UNION SELECT 1; --error ER_PARSE_ERROR SELECT * FROM t1 PROCEDURE ANALYSE(10, 10) UNION (SELECT * FROM t1 PROCEDURE ANALYSE(10, 10)); --error ER_PARSE_ERROR SELECT * FROM t1 PROCEDURE ANALYSE(10, 10) UNION SELECT * FROM t1 PROCEDURE ANALYSE(10, 10); --error ER_PARSE_ERROR SELECT * FROM t1 PROCEDURE ANALYSE(10, 10) UNION (SELECT 1); --error ER_PARSE_ERROR SELECT * FROM t1 PROCEDURE ANALYSE(10, 10) UNION SELECT 1; DROP TABLE t1; # # MDEV-11582 InnoDB: Failing assertion: !((field)->vcol_info && !(field)->stored_in_db()) # --error ER_PARSE_ERROR create table t1 (a serial null); --error ER_PARSE_ERROR create table t1 (a serial auto_increment); --error ER_PARSE_ERROR create table t1 (a serial serial default value); --error ER_PARSE_ERROR create table t1 (a serial collate binary); --error ER_PARSE_ERROR create table t1 (i int, vc serial as (i)); --error ER_PARSE_ERROR create function fs() returns serial return 1; create table t1 ( id serial ); show create table t1; drop table t1; # # BETWEEN syntax # create or replace view v1 as select 1 between (2 between 3 and 4) and 5; Select view_definition from information_schema.views where table_schema='test' and table_name='v1'; create or replace view v1 as select 1 between (2 in (3,4)) and 5; Select view_definition from information_schema.views where table_schema='test' and table_name='v1'; create or replace view v1 as select 1 between (2 like 3) and 4; Select view_definition from information_schema.views where table_schema='test' and table_name='v1'; create or replace view v1 as select 1 not between (2 like 3) and 4; Select view_definition from information_schema.views where table_schema='test' and table_name='v1'; drop view v1; --echo # --echo # Start of 10.2 tests --echo # --echo # --echo # MDEV-27066 Fixed scientific notation parser --echo # --error ER_PARSE_ERROR SELECT 1 1.e*1; --error ER_PARSE_ERROR SELECT 1 1.e/1; --error ER_PARSE_ERROR SELECT 1 1.e^1; --error ER_PARSE_ERROR SELECT 1 1.e%1; --error ER_PARSE_ERROR SELECT 1 1.e&1; --error ER_PARSE_ERROR SELECT 1 1.e|1; --error ER_PARSE_ERROR SELECT 1.e(1); --error ER_PARSE_ERROR SELECT (1 1.e); --error ER_PARSE_ERROR SELECT 1 1.e, 1; CREATE TABLE scientific_notation (test int); --error ER_PARSE_ERROR SELECT tmp 1.e.test FROM scientific_notation AS tmp; DROP TABLE scientific_notation; --echo # --echo # MDEV-6899 extra semicolon in show create event syntax --echo # --disable_ps_protocol set timestamp=unix_timestamp('2020-10-10 5:5:5'); create table t1 (a int); delimiter $; create trigger a before insert on t1 for each row set @a:=1;select 2$ delimiter ;$ query_vertical show create trigger a; drop table t1; delimiter $; create procedure a() select 1;select 2$ delimiter ;$ query_vertical show create procedure a; drop procedure a; delimiter $; create function a() returns int return 1;select 2$ delimiter ;$ query_vertical show create function a; drop function a; set timestamp=default; --enable_ps_protocol --echo # --echo # End of 10.2 tests --echo # --echo # --echo # MDEV-10343 Providing compatibility for basic SQL data types --echo # CREATE TABLE clob (clob int); DROP TABLE clob; CREATE TABLE raw (raw int); DROP TABLE raw; CREATE TABLE varchar2 (varchar2 int); DROP TABLE varchar2; --echo # --echo # MDEV-15620 Crash when using "SET @@NEW.a=expr" inside a trigger --echo # CREATE TABLE t1 (a INT); --error ER_UNKNOWN_STRUCTURED_VARIABLE CREATE TRIGGER tr1 BEFORE INSERT ON t1 FOR EACH ROW SET @@NEW.a=0; DROP TABLE t1; --echo # --echo # MDEV-15664 sql_mode=ORACLE: Make TRIM return NULL instead of empty string --echo # CREATE TABLE trim_oracle (trim_oracle int); DROP TABLE trim_oracle; --echo # --echo # MDEV-15615 Unexpected syntax error instead of "Unknown system variable" inside an SP --echo # DELIMITER $$; --error ER_UNKNOWN_SYSTEM_VARIABLE BEGIN NOT ATOMIC DECLARE a INT; SET GLOBAL a=10; END; $$ DELIMITER ;$$ --echo # --echo # MDEV-16202 Latest changes made erroneously some keywords reserved in sql_mode=ORACLE --echo # DELIMITER $$; CREATE PROCEDURE p1(name VARCHAR(64), pattern TEXT) BEGIN DECLARE query TEXT DEFAULT REPLACE(pattern, 'name', name); DECLARE CONTINUE HANDLER FOR SQLEXCEPTION BEGIN SHOW ERRORS; END; SELECT query AS ''; EXECUTE IMMEDIATE query; END; $$ CREATE PROCEDURE p2(name VARCHAR(64)) BEGIN CALL p1(name, 'BEGIN NOT ATOMIC DECLARE name INT; SET name=10; SELECT name; END'); EXECUTE IMMEDIATE REPLACE('CREATE TABLE t1 (name INT)', 'name', name); CALL p1(name, 'SELECT name FROM t1'); CALL p1(name, 'SELECT name ''alias'' FROM t1'); CALL p1(name, 'SELECT name()'); CALL p1(name, 'SELECT name.name()'); CALL p1(name, 'SELECT name DATE FROM t1'); CALL p1(name, 'SELECT name HISTORY FROM t1'); CALL p1(name, 'SELECT name NEXT FROM t1'); CALL p1(name, 'SELECT name PERIOD FROM t1'); CALL p1(name, 'SELECT name PREVIOUS FROM t1'); CALL p1(name, 'SELECT name SYSTEM FROM t1'); CALL p1(name, 'SELECT name SYSTEM_TIME FROM t1'); CALL p1(name, 'SELECT name TIME FROM t1'); CALL p1(name, 'SELECT name TIMESTAMP FROM t1'); CALL p1(name, 'SELECT name TRANSACTION FROM t1'); CALL p1(name, 'SELECT name VALUE FROM t1'); CALL p1(name, 'SELECT name VERSIONING FROM t1'); CALL p1(name, 'SELECT name WITHOUT FROM t1'); CALL p1(name, 'SELECT name OVERLAPS FROM t1'); DROP TABLE t1; END; $$ DELIMITER ;$$ --disable_column_names CALL p2('date'); CALL p2('history'); CALL p2('next'); CALL p2('period'); CALL p2('previous'); CALL p2('system'); CALL p2('system_time'); CALL p2('time'); CALL p2('timestamp'); CALL p2('transaction'); CALL p2('value'); CALL p2('versioning'); CALL p2('without'); CALL p2('overlaps'); --enable_column_names DROP PROCEDURE p2; DROP PROCEDURE p1; --echo # --echo # MDEV-16697: Fix difference between 32bit/windows and 64bit --echo # systems in allowed select nest level --echo # #enable view protocol after fix MDEV-27871 --disable_view_protocol SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT (SELECT 1 ))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))); --enable_view_protocol --echo # --echo # MDEV-17693 Shift/reduce conflicts for NAMES,ROLE,PASSWORD in the option_value_no_option_type grammar --echo # CREATE TABLE names (names INT); SELECT names FROM names AS names; DROP TABLE names; CREATE TABLE password (password INT); SELECT password FROM password AS password; DROP TABLE password; CREATE TABLE role (role INT); SELECT role FROM role AS role; DROP TABLE role; DELIMITER $$; BEGIN NOT ATOMIC DECLARE names VARCHAR(32) DEFAULT '[names]'; DECLARE password VARCHAR(32) DEFAULT '[password]'; DECLARE role VARCHAR(32) DEFAULT '[role]'; names: LOOP SELECT names; LEAVE names; END LOOP; password: LOOP SELECT password; LEAVE password; END LOOP; role: LOOP SELECT role; LEAVE role; END LOOP; END; $$ DELIMITER ;$$ DELIMITER $$; --error ER_SP_BAD_VAR_SHADOW BEGIN NOT ATOMIC DECLARE names VARCHAR(32); SET names='[names]'; END; $$ DELIMITER ;$$ DELIMITER $$; --error ER_SP_BAD_VAR_SHADOW BEGIN NOT ATOMIC DECLARE password VARCHAR(32); SET password='[password]'; END; $$ DELIMITER ;$$ DELIMITER $$; BEGIN NOT ATOMIC DECLARE role VARCHAR(32); SET role='[role]'; END; $$ DELIMITER ;$$ --error ER_UNKNOWN_SYSTEM_VARIABLE SELECT @@GLOBAL.names; --error ER_UNKNOWN_SYSTEM_VARIABLE SELECT @@GLOBAL.password; --error ER_UNKNOWN_SYSTEM_VARIABLE SELECT @@GLOBAL.role; --echo # --echo # MDEV-22022 Various mangled SQL statements will crash 10.3 to 10.5 debug builds --echo # --error ER_PARSE_ERROR EXECUTE IMMEDIATE 'if(`systeminfo /FO LIST'; --error ER_PARSE_ERROR EXECUTE IMMEDIATE 'if(`systeminfo'; --echo # --echo # MDEV-23666 Assertion failed in Lex_input_stream::body_utf8_append --echo # SET @@sql_mode='ANSI_QUOTES'; # Without a patch execution of the following statements results in assertion # in Lex_input_stream::body_utf8_append on parsing the statement --error ER_PARSE_ERROR EXECUTE IMMEDIATE 'CREATE PROCEDURE p() UPDATE t SET c=\'\'"'; --error ER_PARSE_ERROR EXECUTE IMMEDIATE 'CREATE PROCEDURE p() UPDATE t SET c=\'\'"abc'; SET @@sql_mode=@save_sql_mode; --echo # End of 10.3 tests --echo # --echo # MDEV-19540: 10.4 allow lock options with SELECT in brackets --echo # which previous version do not --echo # --disable_service_connection create table t1 (a int); (select * from t1) for update; --error ER_WRONG_USAGE (select * from t1) union (select * from t1) for update; (select * from t1 for update); select * from t1 for update; drop table t1; --enable_service_connection --echo # --echo # MDEV-20108: [ERROR] mysqld got signal 11 in --echo # st_select_lex::add_table_to_list --echo # --disable_service_connection CREATE TABLE t1 (c1 INT NULL); CREATE TABLE t2 (c1 INT NULL); SET STATEMENT max_statement_time=900 FOR LOCK TABLES `t1` WRITE; select * from t1; --error ER_TABLE_NOT_LOCKED select * from t2; SET STATEMENT max_statement_time=900 FOR unlock tables; drop table t1, t2; --enable_service_connection --echo # --echo # MDEV-21616: Server crash when using --echo # "SET STATEMENT max_statement_time=0 FOR desc xxx" lead to collapse --echo # create table t1 (a int); SET STATEMENT max_statement_time=0 FOR desc t1; drop table t1; SET STATEMENT max_statement_time=0 FOR do 1; set @save_sql_mode=@@SQL_MODE; set SQL_MODE=ORACLE; create table t1 (a int); SET STATEMENT max_statement_time=0 FOR desc t1; drop table t1; SET STATEMENT max_statement_time=0 FOR do 1; set SQL_MODE=@save_sql_mode; --echo # --echo # MDEV-21684: mysqld crash with signal 11 when renaming --echo # table+max_statement_time --echo # --error ER_NO_SUCH_TABLE SET STATEMENT max_statement_time=180 FOR RENAME TABLE bleh TO blah; SET STATEMENT max_statement_time=180 FOR load index into cache t1_base; --error ER_NO_SUCH_TABLE SET STATEMENT max_statement_time=180 FOR DROP INDEX i1 ON t1; SET STATEMENT max_statement_time=180 FOR BACKUP LOCK test.t1; SET STATEMENT max_statement_time=180 FOR BACKUP UNLOCK; set @save_sql_mode=@@SQL_MODE; set SQL_MODE=ORACLE; --error ER_NO_SUCH_TABLE SET STATEMENT max_statement_time=180 FOR RENAME TABLE bleh TO blah; SET STATEMENT max_statement_time=180 FOR load index into cache t1_base; --error ER_NO_SUCH_TABLE SET STATEMENT max_statement_time=180 FOR DROP INDEX i1 ON t1; SET STATEMENT max_statement_time=180 FOR BACKUP LOCK test.t1; SET STATEMENT max_statement_time=180 FOR BACKUP UNLOCK; set SQL_MODE=@save_sql_mode; --echo # --echo # MDEV-21997: Server crashes in LEX::create_item_ident_sp --echo # upon use of unknown identifier --echo # --error ER_SP_UNDECLARED_VAR /*! IF 1 IN ( SELECT 2 ) OR foo = 3 THEN */ SELECT 4; DELIMITER $$; --error ER_SP_UNDECLARED_VAR BEGIN NOT ATOMIC IF (SELECT 2) OR foo = 3 THEN SELECT 4; END IF ; END; $$ --echo # ... but if declare it then it still work BEGIN NOT ATOMIC DECLARE foo int; IF (SELECT 2) OR foo = 3 THEN SELECT 4; END IF ; END; $$ --error ER_SP_UNDECLARED_VAR CASE (SELECT 2) OR foo WHEN 1 THEN SET @x=10; $$ --error ER_SP_UNDECLARED_VAR /*! WHILE (SELECT 2) OR foo */ SET @x=10; END WHILE; $$ --error ER_SP_UNDECLARED_VAR REPEAT SET @x=10; UNTIL (SELECT 2) OR foo END REPEAT; $$ --error ER_SP_UNDECLARED_VAR FOR i IN 1..(SELECT 2) OR foo DO SET @x=10; END FOR; $$ --echo # ... but automatic FOR variable still work FOR i IN 1..2 DO SELECT i; END FOR; $$ DELIMITER ;$$ --echo # --echo # MDEV-21998: Server crashes in st_select_lex::add_table_to_list --echo # upon mix of KILL and sequences --echo # --error ER_SUBQUERIES_NOT_SUPPORTED KILL ( SELECT 1 ) + LASTVAL(s); --error ER_SUBQUERIES_NOT_SUPPORTED KILL LASTVAL(s); --echo # --echo # MDEV-23094: Multiple calls to a Stored Procedure from another --echo # Stored Procedure crashes server --echo # create table t1 (id1 int primary key, data1 int); create table t2 (id2 int primary key, data2 int); delimiter //; create procedure p1(IN id int, IN dt int) begin if (exists(select * from t1 where id1 = id and data1 = dt) or not exists (select * from t2 where id2 = id and data2 = dt)) then select 1; end if; end // delimiter ;// call p1(1,2); call p1(1,2); drop procedure p1; delimiter //; create procedure p1(IN id int, IN dt int) begin case (exists(select * from t1 where id1 = id and data1 = dt) or not exists (select * from t2 where id2 = id and data2 = dt)) when 1 then select 1; else select 0; end case; end // delimiter ;// call p1(1,2); call p1(1,2); drop procedure p1; delimiter //; create procedure p1(IN id int, IN dt int) begin declare wcont int default 1; while (exists(select * from t1 where id1 = id and data1 = dt) or not exists (select * from t2 where id2 = id and data2 = dt)) and wcont do select 1; set wcont=0; end while; end // delimiter ;// call p1(1,2); call p1(1,2); drop procedure p1; delimiter //; create procedure p1(IN id int, IN dt int) begin declare count int default 1; repeat select 1; set count=count+1; until (exists(select * from t1 where id1 = id and data1 = dt) or not exists (select * from t2 where id2 = id and data2 = dt)) and count < 3 end repeat; end // delimiter ;// call p1(1,2); call p1(1,2); drop procedure p1; delimiter //; create procedure p1(IN id int, IN dt int) begin for i in 1..(exists(select * from t1 where id1 = id and data1 = dt) or not exists (select * from t2 where id2 = id and data2 = dt)) do select 1; end for; end // delimiter ;// call p1(1,2); call p1(1,2); drop procedure p1; drop table t1,t2; --echo # End of 10.4 tests --echo # --echo # Start of 10.5 tests --echo # --echo # --echo # MDEV-20734 Allow reserved keywords as user defined type names --echo # --error ER_UNKNOWN_DATA_TYPE CREATE TABLE t1 (a DUAL); --error ER_UNKNOWN_DATA_TYPE SELECT CAST(1 AS DUAL); --echo # --echo # MDEV-20735 Allow non-reserved keywords as user defined type names --echo # --error ER_UNKNOWN_DATA_TYPE CREATE TABLE t1 (a ASCII); --error ER_UNKNOWN_DATA_TYPE SELECT CAST(1 AS ASCII); --error ER_UNKNOWN_DATA_TYPE CREATE TABLE t1 (a LANGUAGE); --error ER_UNKNOWN_DATA_TYPE SELECT CAST(1 AS LANGUAGE); --error ER_UNKNOWN_DATA_TYPE CREATE TABLE t1 (a CLOSE); --error ER_UNKNOWN_DATA_TYPE SELECT CAST(1 AS CLOSE); --error ER_UNKNOWN_DATA_TYPE CREATE TABLE t1 (a NAMES); --error ER_UNKNOWN_DATA_TYPE SELECT CAST(1 AS NAMES); --error ER_UNKNOWN_DATA_TYPE CREATE TABLE t1 (a END); --error ER_UNKNOWN_DATA_TYPE SELECT CAST(1 AS END); --error ER_UNKNOWN_DATA_TYPE CREATE TABLE t1 (a GLOBAL); --error ER_UNKNOWN_DATA_TYPE SELECT CAST(1 AS GLOBAL); --error ER_UNKNOWN_DATA_TYPE CREATE TABLE t1 (a ACTION); --error ER_UNKNOWN_DATA_TYPE SELECT CAST(1 AS ACTION); --echo # --echo # End of 10.5 tests --echo # --echo # --echo # Start of 10.6 tests --echo # --echo # --echo # MDEV-25510 Assertion `sel->select_lock == --echo # st_select_lex::select_lock_type::NONE' failed in Lex_select_lock::set_to --echo # --error ER_NO_SUCH_TABLE (SELECT x FROM t WINDOW w1 AS () FOR UPDATE) LIMIT 1; create table t1 (x int); insert into t1 values (1),(2); explain extended (SELECT x FROM t1 WINDOW w1 as () FOR UPDATE) LIMIT 1; explain extended (SELECT x FROM t1 FOR UPDATE) LIMIT 1; drop table t1; --echo # --echo # MDEV-19682 sql_mode="oracle" does not support sysdate --echo # --enable_prepare_warnings --error ER_BAD_FIELD_ERROR SELECT sysdate LIKE '____-__-__ __:__:__'; --error ER_BAD_FIELD_ERROR SELECT sysdate = sysdate(); --error ER_BAD_FIELD_ERROR SELECT sysdate = sysdate(0); CREATE DATABASE sysdate; DROP DATABASE sysdate; CREATE TABLE sysdate (a INT); DROP TABLE sysdate; CREATE TABLE t1 (sysdate INT); DROP TABLE t1; DELIMITER $$; CREATE FUNCTION sysdate() RETURNS INT BEGIN RETURN 1; END; $$ DELIMITER ;$$ DROP FUNCTION sysdate; DELIMITER $$; BEGIN NOT ATOMIC DECLARE sysdate INT DEFAULT 10; SELECT sysdate; END; $$ DELIMITER ;$$ DELIMITER $$; BEGIN NOT ATOMIC DECLARE a INT DEFAULT 0; sysdate: WHILE a DO SELECT 1; LEAVE sysdate; END WHILE ; END; $$ DELIMITER ;$$ --disable_prepare_warnings --echo # --echo # End of 10.6 tests --echo #