mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
MDEV-14576 Include full name of object in message about incorrect value for column.
The error message modified. Then the TABLE_SHARE::error_table_name() implementation taken from 10.3, to be used as a name of the table in this message.
This commit is contained in:
@ -912,7 +912,7 @@ CREATE ALGORITHM = MERGE VIEW v AS SELECT a, b FROM t1 STRAIGHT_JOIN t2 WHERE b
|
||||
INSERT INTO t1 VALUES (1),(2);
|
||||
INSERT IGNORE INTO t2 VALUES (2,2),('three',3),(4,4);
|
||||
Warnings:
|
||||
Warning 1366 Incorrect integer value: 'three' for column 'b' at row 2
|
||||
Warning 1366 Incorrect integer value: 'three' for column `test`.`t2`.`b` at row 2
|
||||
UPDATE v SET a = NULL;
|
||||
Warnings:
|
||||
Warning 1292 Truncated incorrect DOUBLE value: 'foo'
|
||||
|
Reference in New Issue
Block a user