fix of test suite
This commit is contained in:
parent
6cecb10a2f
commit
47274d902e
@ -901,7 +901,7 @@ INSERT INTO t1 VALUES (1),(2);
|
|||||||
INSERT IGNORE INTO t2 VALUES (2,2),('three',3),(4,4);
|
INSERT IGNORE INTO t2 VALUES (2,2),('three',3),(4,4);
|
||||||
Warnings:
|
Warnings:
|
||||||
Warning 1366 Incorrect integer value: 'three' for column 'b' at row 2
|
Warning 1366 Incorrect integer value: 'three' for column 'b' at row 2
|
||||||
UPDATE v SET a = NULL ORDER BY a, b;
|
UPDATE v SET a = NULL;
|
||||||
Warnings:
|
Warnings:
|
||||||
Warning 1292 Truncated incorrect DOUBLE value: 'foo'
|
Warning 1292 Truncated incorrect DOUBLE value: 'foo'
|
||||||
DROP view v;
|
DROP view v;
|
||||||
|
@ -1008,7 +1008,7 @@ CREATE ALGORITHM = MERGE VIEW v AS SELECT a, b FROM t1 STRAIGHT_JOIN t2 WHERE b
|
|||||||
|
|
||||||
INSERT INTO t1 VALUES (1),(2);
|
INSERT INTO t1 VALUES (1),(2);
|
||||||
INSERT IGNORE INTO t2 VALUES (2,2),('three',3),(4,4);
|
INSERT IGNORE INTO t2 VALUES (2,2),('three',3),(4,4);
|
||||||
UPDATE v SET a = NULL ORDER BY a, b;
|
UPDATE v SET a = NULL;
|
||||||
|
|
||||||
DROP view v;
|
DROP view v;
|
||||||
DROP TABLE t1, t2;
|
DROP TABLE t1, t2;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user