summaryrefslogtreecommitdiff
path: root/mysql-test/suite/archive/discover.test
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2013-04-09 15:57:09 +0200
committerSergei Golubchik <sergii@pisem.net>2013-04-09 15:57:09 +0200
commite06cb31719ce31fb1cd7944d1de86d4de9e3eca6 (patch)
tree2c740b5851514787748799604b6c724d7c4e10b9 /mysql-test/suite/archive/discover.test
parentb3e70c4ae713abeddd47b3987f898ed763fa4eca (diff)
downloadmariadb-git-e06cb31719ce31fb1cd7944d1de86d4de9e3eca6.tar.gz
CREATE TABLE and frm-less discovering engines.
Now CREATE TABLE does not write the frm file on disk, if the engine can discover it
Diffstat (limited to 'mysql-test/suite/archive/discover.test')
-rw-r--r--mysql-test/suite/archive/discover.test2
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/suite/archive/discover.test b/mysql-test/suite/archive/discover.test
index 6c1f563dfa8..8175511929f 100644
--- a/mysql-test/suite/archive/discover.test
+++ b/mysql-test/suite/archive/discover.test
@@ -18,6 +18,7 @@ select * from t1;
--echo # show tables
--echo #
create table t2 (a int) engine=archive;
+select * from t2;
remove_file $mysqld_datadir/test/t1.frm;
flush tables;
show tables;
@@ -84,6 +85,7 @@ drop table t1;
--echo # archive_discover
--echo #
create table `a/../`(a int) engine=archive;
+select * from `a/../`; flush tables;
remove_file $mysqld_datadir/test/a@002f@002e@002e@002f.frm;
drop table `a/../`;