mirror of
https://github.com/MariaDB/server.git
synced 2026-05-03 13:45:34 +02:00
Merge 10.3 into 10.4
This commit is contained in:
commit
2bf93a8fd6
17 changed files with 282 additions and 177 deletions
|
|
@ -20,5 +20,8 @@ ERROR 42000: You have an error in your SQL syntax; check the manual that corresp
|
|||
SET @binlog_fragment_0='012345';
|
||||
BINLOG @binlog_fragment_0, @binlog_fragment_not_exist;
|
||||
ERROR 42000: Incorrect argument type to variable 'binlog_fragment_not_exist'
|
||||
SET @a= '42';
|
||||
BINLOG @a, @a;
|
||||
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use
|
||||
# Cleanup
|
||||
DROP TABLE t;
|
||||
|
|
|
|||
|
|
@ -41,6 +41,11 @@ SET @binlog_fragment_0='012345';
|
|||
--error ER_WRONG_TYPE_FOR_VAR
|
||||
BINLOG @binlog_fragment_0, @binlog_fragment_not_exist;
|
||||
|
||||
# MDEV-22520
|
||||
SET @a= '42';
|
||||
--error ER_SYNTAX_ERROR
|
||||
BINLOG @a, @a;
|
||||
|
||||
--echo # Cleanup
|
||||
--remove_file $MYSQLTEST_VARDIR/tmp/mysqlbinlog.sql
|
||||
DROP TABLE t;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue