diff options
author | Sergei Golubchik <serg@mariadb.org> | 2015-04-28 13:57:21 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2015-04-28 13:57:21 +0200 |
commit | fbab0685a7b7f39db0217823ad90dd47034eae29 (patch) | |
tree | 11baae52acdb6c3300d8fe37eb804920ac172960 /mysql-test/r/blackhole.result | |
parent | 67a3ddf17abfd182b99e16cc539dc72be5da707b (diff) | |
download | mariadb-git-fbab0685a7b7f39db0217823ad90dd47034eae29.tar.gz |
post-merge changes, fixes, and tests
Diffstat (limited to 'mysql-test/r/blackhole.result')
-rw-r--r-- | mysql-test/r/blackhole.result | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/blackhole.result b/mysql-test/r/blackhole.result index 317070ca08e..1e8ea3888d1 100644 --- a/mysql-test/r/blackhole.result +++ b/mysql-test/r/blackhole.result @@ -8,4 +8,11 @@ CREATE TABLE t2 (a INT UNSIGNED, b INT, UNIQUE KEY (a, b)) ENGINE=BLACKHOLE; SELECT 1 FROM t1 WHERE a = ANY (SELECT a FROM t2); 1 DROP TABLE t1, t2; +create temporary table t1 (a int) engine=blackhole; +lock table t1 write; +truncate table t1; +select * from t1; +a +unlock tables; +drop temporary table t1; End of 5.5 tests |