summaryrefslogtreecommitdiff
path: root/storage/spider/mysql-test/spider/bugfix/r/mdev_29352.result
blob: 5715edf2bd686316c3d1fd98b92455e6560505d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CREATE TABLE t (c INT);
SHOW CREATE TABLE t;
Table	Create Table
t	CREATE TABLE `t` (
  `c` int(11) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
FLUSH TABLES WITH READ LOCK;
CREATE FUNCTION spider_bg_direct_sql RETURNS INT SONAME 'ha_spider.so';
ERROR HY000: Can't execute the query because you have a conflicting read lock
SELECT * FROM t;
c
DROP TABLE t;