Skip to content

Commit 4eca64e

Browse files
committed
add missing result file
1 parent 852e138 commit 4eca64e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#
2+
# MDEV-28739 Trying to lock uninitialized mutex or hang upon shutdown after using Spider with query_cache
3+
#
4+
for master_1
5+
for child2
6+
for child3
7+
set global query_cache_type= on;
8+
CREATE SERVER srv FOREIGN DATA WRAPPER mysql
9+
OPTIONS (SOCKET "$MASTER_1_MYSOCK", DATABASE 'test',user 'root');
10+
create table t2 (c int);
11+
create table t1 (c int) ENGINE=Spider
12+
COMMENT='WRAPPER "mysql", srv "srv",TABLE "t2"';
13+
SELECT * FROM t1;
14+
c
15+
# restart
16+
drop table t1, t2;
17+
drop server srv;
18+
for master_1
19+
for child2
20+
for child3

0 commit comments

Comments
 (0)