diff options
Diffstat (limited to 'mysql-test/suite/parts/r/truncate_locked.result')
-rw-r--r-- | mysql-test/suite/parts/r/truncate_locked.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/suite/parts/r/truncate_locked.result b/mysql-test/suite/parts/r/truncate_locked.result new file mode 100644 index 00000000..54a37229 --- /dev/null +++ b/mysql-test/suite/parts/r/truncate_locked.result @@ -0,0 +1,7 @@ +create table t1 (i int) engine=myisam partition by hash(i) partitions 2 ; +lock table t1 write; +truncate table t1; +desc t1; +Field Type Null Key Default Extra +i int(11) YES NULL +drop table t1; |