mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-32656: ASAN errors in base_list_iterator::next / setup_table_map upon 2nd execution of PS
Correctly supress error issuing when saving value in field for comporison
This commit is contained in:
@ -6351,3 +6351,30 @@ SELECT ROW(1,2) = (1 = ANY (SELECT 1 UNION SELECT 2));
|
||||
--echo #
|
||||
--echo # End of 10.4 tests
|
||||
--echo #
|
||||
|
||||
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-32656: ASAN errors in base_list_iterator::next /
|
||||
--echo # setup_table_map upon 2nd execution of PS
|
||||
--echo # (10.6 part)
|
||||
--echo #
|
||||
|
||||
CREATE TABLE t1 (id BIGINT);
|
||||
INSERT INTO t1 VALUES (1),(2);
|
||||
CREATE VIEW v1 AS SELECT * FROM t1;
|
||||
|
||||
CREATE TABLE t2 (a INT);
|
||||
INSERT INTO t2 VALUES (2),(3);
|
||||
|
||||
CREATE TABLE t3 (b INT);
|
||||
INSERT INTO t3 VALUES (3),(4);
|
||||
|
||||
insert into t2 select (('e','e') IN (SELECT v1.id, v1.id FROM v1 JOIN t3));
|
||||
|
||||
drop view v1;
|
||||
drop table t1, t2, t3;
|
||||
|
||||
--echo #
|
||||
--echo # End of 10.6 tests
|
||||
--echo #
|
||||
|
Reference in New Issue
Block a user