mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
add missing result file
This commit is contained in:
parent
852e1383e3
commit
4eca64e331
1 changed files with 20 additions and 0 deletions
|
@ -0,0 +1,20 @@
|
|||
#
|
||||
# MDEV-28739 Trying to lock uninitialized mutex or hang upon shutdown after using Spider with query_cache
|
||||
#
|
||||
for master_1
|
||||
for child2
|
||||
for child3
|
||||
set global query_cache_type= on;
|
||||
CREATE SERVER srv FOREIGN DATA WRAPPER mysql
|
||||
OPTIONS (SOCKET "$MASTER_1_MYSOCK", DATABASE 'test',user 'root');
|
||||
create table t2 (c int);
|
||||
create table t1 (c int) ENGINE=Spider
|
||||
COMMENT='WRAPPER "mysql", srv "srv",TABLE "t2"';
|
||||
SELECT * FROM t1;
|
||||
c
|
||||
# restart
|
||||
drop table t1, t2;
|
||||
drop server srv;
|
||||
for master_1
|
||||
for child2
|
||||
for child3
|
Loading…
Reference in a new issue