summaryrefslogtreecommitdiff
path: root/mysql-test/r/tablelock.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/tablelock.result')
-rw-r--r--mysql-test/r/tablelock.result9
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/tablelock.result b/mysql-test/r/tablelock.result
index 2ffd8f928a9..6923ad40916 100644
--- a/mysql-test/r/tablelock.result
+++ b/mysql-test/r/tablelock.result
@@ -46,3 +46,12 @@ CREATE TABLE t2 (a int);
lock tables t1 write,t1 as b write, t2 write, t2 as c read;
drop table t2,t1;
unlock tables;
+create temporary table t1(f1 int);
+lock tables t1 write;
+insert into t1 values (1);
+show columns from t1;
+Field Type Null Key Default Extra
+f1 int(11) YES NULL
+insert into t1 values(2);
+drop table t1;
+unlock tables;