mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Merge 10.11 into 11.0
This commit is contained in:
@ -3898,6 +3898,18 @@ DROP TABLE t1;
|
||||
DROP TABLE m1;
|
||||
set global default_storage_engine=@save_default_storage_engine;
|
||||
#
|
||||
# MDEV-31083 ASAN use-after-poison in myrg_attach_children
|
||||
#
|
||||
CREATE TABLE t1 (f TEXT, FULLTEXT (f)) ENGINE=MyISAM;
|
||||
INSERT INTO t1 VALUES ('foo'),('bar');
|
||||
CREATE TABLE mrg (f TEXT) ENGINE=MERGE, UNION(t1);
|
||||
SELECT * FROM mrg;
|
||||
f
|
||||
foo
|
||||
bar
|
||||
DROP TABLE mrg, t1;
|
||||
End of 10.5 tests
|
||||
#
|
||||
# End of 10.0 tests
|
||||
#
|
||||
#
|
||||
|
@ -2859,6 +2859,18 @@ set global default_storage_engine=@save_default_storage_engine;
|
||||
# gone so execution of other tests won't be affected by their presence.
|
||||
--source include/wait_until_count_sessions.inc
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-31083 ASAN use-after-poison in myrg_attach_children
|
||||
--echo #
|
||||
|
||||
CREATE TABLE t1 (f TEXT, FULLTEXT (f)) ENGINE=MyISAM;
|
||||
INSERT INTO t1 VALUES ('foo'),('bar');
|
||||
CREATE TABLE mrg (f TEXT) ENGINE=MERGE, UNION(t1);
|
||||
SELECT * FROM mrg;
|
||||
DROP TABLE mrg, t1;
|
||||
|
||||
--echo End of 10.5 tests
|
||||
|
||||
--echo #
|
||||
--echo # End of 10.0 tests
|
||||
--echo #
|
||||
|
Reference in New Issue
Block a user