mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
WL#751 Error message construction, backport
This commit is contained in:
@ -2332,21 +2332,21 @@ DECLARE céèçà foo CONDITION FOR SQLSTATE '12345';
|
||||
SIGNAL céèçà SET MYSQL_ERRNO = 1000;
|
||||
end $$
|
||||
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '<27>èçà foo CONDITION FOR SQLSTATE '12345';
|
||||
SIGNAL céèçà SET MYSQL_ERRNO = 1' at line 3
|
||||
SIGNAL céèçà SET ' at line 3
|
||||
create procedure test_signal()
|
||||
begin
|
||||
DECLARE "céèçà" CONDITION FOR SQLSTATE '12345';
|
||||
SIGNAL "céèçà" SET MYSQL_ERRNO = 1000;
|
||||
end $$
|
||||
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '"céèçà" CONDITION FOR SQLSTATE '12345';
|
||||
SIGNAL "céèçà" SET MYSQL_ERRNO =' at line 3
|
||||
SIGNAL "céèçà" S' at line 3
|
||||
create procedure test_signal()
|
||||
begin
|
||||
DECLARE 'céèçà' CONDITION FOR SQLSTATE '12345';
|
||||
SIGNAL 'céèçà' SET MYSQL_ERRNO = 1000;
|
||||
end $$
|
||||
ERROR 42000: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''céèçà' CONDITION FOR SQLSTATE '12345';
|
||||
SIGNAL 'céèçà' SET MYSQL_ERRNO =' at line 3
|
||||
SIGNAL 'céèçà' S' at line 3
|
||||
create procedure test_signal()
|
||||
begin
|
||||
DECLARE `céèçà` CONDITION FOR SQLSTATE '12345';
|
||||
|
Reference in New Issue
Block a user