summaryrefslogtreecommitdiff
path: root/mysql-test/suite/maria/maria.result
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2017-09-21 16:30:24 +0300
committerMonty <monty@mariadb.org>2017-09-21 16:34:48 +0300
commit0a44ae6528d1fdb2d4a9dab1be7e36931eac8236 (patch)
tree49cb66b22401072eb4b3f46fef10cc487b5af8c1 /mysql-test/suite/maria/maria.result
parent05da63f0483e2e1d2389e9c6829f269db014dfbb (diff)
downloadmariadb-git-0a44ae6528d1fdb2d4a9dab1be7e36931eac8236.tar.gz
Fix that FLUSH TABLES FOR EXPORT also works for Aria tables.
- Added missing test case for MyISAM
Diffstat (limited to 'mysql-test/suite/maria/maria.result')
-rw-r--r--mysql-test/suite/maria/maria.result8
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/suite/maria/maria.result b/mysql-test/suite/maria/maria.result
index 88f39827f27..b5fbcbe113d 100644
--- a/mysql-test/suite/maria/maria.result
+++ b/mysql-test/suite/maria/maria.result
@@ -2790,3 +2790,11 @@ test.t1 check status OK
SET aria_repair_threads=@@global.aria_repair_threads;
SET aria_sort_buffer_size=@@global.aria_sort_buffer_size;
DROP TABLE t1;
+CREATE TABLE t1(a INT, b CHAR(10), KEY(a), KEY(b));
+INSERT INTO t1 VALUES(1,'0'),(2,'0'),(3,'0'),(4,'0'),(5,'0'),
+(6,'0'),(7,'0');
+flush tables test.t1 for export;
+insert into t1 values (8,'0');
+ERROR HY000: Table 't1' was locked with a READ lock and can't be updated
+unlock tables;
+drop table t1;