mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-34679 ER_BAD_FIELD uses non-localizable substrings
This commit is contained in:
@ -2927,16 +2927,16 @@ DROP TABLE t1;
|
||||
CREATE TABLE t1 (a INT);
|
||||
INSERT INTO t1 VALUES (1), (2), (3);
|
||||
DELETE FROM t1 USING t1 WHERE uknown_column = 12345;
|
||||
ERROR 42S22: Unknown column 'uknown_column' in 'where clause'
|
||||
ERROR 42S22: Unknown column 'uknown_column' in 'WHERE'
|
||||
EXPLAIN EXTENDED DELETE FROM t1 USING t1 WHERE uknown_column = 12345;
|
||||
ERROR 42S22: Unknown column 'uknown_column' in 'where clause'
|
||||
ERROR 42S22: Unknown column 'uknown_column' in 'WHERE'
|
||||
DROP TABLE t1;
|
||||
#57
|
||||
CREATE TABLE t1(f1 INT);
|
||||
EXPLAIN EXTENDED UPDATE t1 SET f2=1 ORDER BY f2;
|
||||
ERROR 42S22: Unknown column 'f2' in 'order clause'
|
||||
ERROR 42S22: Unknown column 'f2' in 'ORDER BY'
|
||||
UPDATE t1 SET f2=1 ORDER BY f2;
|
||||
ERROR 42S22: Unknown column 'f2' in 'order clause'
|
||||
ERROR 42S22: Unknown column 'f2' in 'ORDER BY'
|
||||
DROP TABLE t1;
|
||||
#62
|
||||
CREATE TABLE t1 (a INT);
|
||||
|
Reference in New Issue
Block a user