mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge 10.5 into 10.6
This commit is contained in:
@ -644,3 +644,15 @@ insert delayed into t1 values (3,3);
|
||||
flush tables t1;
|
||||
select * from t1;
|
||||
drop table t1;
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-26546 SIGSEGV's in spider_db_connect on SHOW TABLE and
|
||||
--echo # spider_db_mbase::connect (and SIGSEGV's in check_vcol_forward_refs
|
||||
--echo # and inline_mysql_mutex_lock)
|
||||
--echo #
|
||||
|
||||
CREATE TABLE t1 (c0 INT,UNIQUE (c0) USING HASH) ENGINE=MYISAM;
|
||||
INSERT DELAYED INTO t1 VALUES (0);
|
||||
INSERT DELAYED INTO t1 VALUES (0);
|
||||
DROP TABLE t1;
|
||||
|
||||
|
Reference in New Issue
Block a user