mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge tag '11.4' into 11.6
MariaDB 11.4.4 release
This commit is contained in:
@ -134,7 +134,7 @@ DROP PROCEDURE p1;
|
||||
GET DIAGNOSTICS CONDITION;
|
||||
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 near '' at line 1
|
||||
GET DIAGNOSTICS CONDITION a;
|
||||
ERROR 42S22: Unknown column 'a' in 'field list'
|
||||
ERROR 42S22: Unknown column 'a' in 'GET DIAGNOSTICS'
|
||||
GET DIAGNOSTICS CONDITION 1;
|
||||
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 near '' at line 1
|
||||
GET DIAGNOSTICS CONDITION 1 @var;
|
||||
@ -213,9 +213,9 @@ ERROR 42000: You have an error in your SQL syntax; check the manual that corresp
|
||||
GET DIAGNOSTICS CONDITION (1) @var = CLASS_ORIGIN;
|
||||
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 near '(1) @var = CLASS_ORIGIN' at line 1
|
||||
GET DIAGNOSTICS CONDITION p1() @var = CLASS_ORIGIN;
|
||||
ERROR 42S22: Unknown column 'p1' in 'field list'
|
||||
ERROR 42S22: Unknown column 'p1' in 'GET DIAGNOSTICS'
|
||||
GET DIAGNOSTICS CONDITION ABS(2) @var = CLASS_ORIGIN;
|
||||
ERROR 42S22: Unknown column 'ABS' in 'field list'
|
||||
ERROR 42S22: Unknown column 'ABS' in 'GET DIAGNOSTICS'
|
||||
GET DIAGNOSTICS CONDITION 1.1 @var = CLASS_ORIGIN;
|
||||
GET DIAGNOSTICS CONDITION "1" @var = CLASS_ORIGIN;
|
||||
SELECT COUNT(max_questions) INTO @var FROM mysql.user;
|
||||
@ -227,7 +227,7 @@ Warnings:
|
||||
Error 1758 Invalid condition number
|
||||
Error 1758 Invalid condition number
|
||||
GET DIAGNOSTICS CONDITION a @var = CLASS_ORIGIN;
|
||||
ERROR 42S22: Unknown column 'a' in 'field list'
|
||||
ERROR 42S22: Unknown column 'a' in 'GET DIAGNOSTICS'
|
||||
SELECT COUNT(max_questions) INTO @var FROM mysql.user;
|
||||
SET @cond = 1;
|
||||
GET DIAGNOSTICS CONDITION @cond @var1 = CLASS_ORIGIN;
|
||||
@ -1502,13 +1502,13 @@ SELECT @var119;
|
||||
@var119
|
||||
0
|
||||
INSERT INTO t1 VALUES (1) RETURNING id2;
|
||||
ERROR 42S22: Unknown column 'id2' in 'field list'
|
||||
ERROR 42S22: Unknown column 'id2' in 'RETURNING'
|
||||
GET DIAGNOSTICS CONDITION 1 @var120= ROW_NUMBER;
|
||||
SELECT @var120;
|
||||
@var120
|
||||
0
|
||||
INSERT INTO t1(id2) VALUES(1);
|
||||
ERROR 42S22: Unknown column 'id2' in 'field list'
|
||||
ERROR 42S22: Unknown column 'id2' in 'INSERT INTO'
|
||||
GET DIAGNOSTICS CONDITION 1 @var121= ROW_NUMBER;
|
||||
SELECT @var121;
|
||||
@var121
|
||||
@ -1544,13 +1544,13 @@ SELECT @var125;
|
||||
@var125
|
||||
0
|
||||
REPLACE INTO t1 VALUES (1) RETURNING id2;
|
||||
ERROR 42S22: Unknown column 'id2' in 'field list'
|
||||
ERROR 42S22: Unknown column 'id2' in 'RETURNING'
|
||||
GET DIAGNOSTICS CONDITION 1 @var126= ROW_NUMBER;
|
||||
SELECT @var126;
|
||||
@var126
|
||||
0
|
||||
REPLACE INTO t1(id2) VALUES(1);
|
||||
ERROR 42S22: Unknown column 'id2' in 'field list'
|
||||
ERROR 42S22: Unknown column 'id2' in 'INSERT INTO'
|
||||
GET DIAGNOSTICS CONDITION 1 @var127= ROW_NUMBER;
|
||||
SELECT @var127;
|
||||
@var127
|
||||
|
Reference in New Issue
Block a user