There was an error while loading. Please reload this page.
1 parent 852e138 commit 4eca64eCopy full SHA for 4eca64e
storage/spider/mysql-test/spider/bugfix/r/mdev_28739_simple.result
@@ -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
19
20
0 commit comments