diff options
Diffstat (limited to 'mysql-test/suite/storage_engine/alter_tablespace.result')
-rw-r--r-- | mysql-test/suite/storage_engine/alter_tablespace.result | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mysql-test/suite/storage_engine/alter_tablespace.result b/mysql-test/suite/storage_engine/alter_tablespace.result new file mode 100644 index 00000000..ff3da9f6 --- /dev/null +++ b/mysql-test/suite/storage_engine/alter_tablespace.result @@ -0,0 +1,21 @@ +DROP TABLE IF EXISTS t1, t2; +CREATE TABLE t1 (a <INT_COLUMN>) ENGINE=<STORAGE_ENGINE> <CUSTOM_TABLE_OPTIONS>; +ALTER TABLE t1 DISCARD TABLESPACE; +DROP TABLE t1; +CREATE TABLE t1 (a <INT_COLUMN>) ENGINE=<STORAGE_ENGINE> <CUSTOM_TABLE_OPTIONS>; +INSERT INTO t1 (a) VALUES (1),(2); +SELECT a FROM t1; +a +1 +2 +ALTER TABLE t1 DISCARD TABLESPACE; +SELECT a FROM t1; +ERROR HY000: Tablespace has been discarded for table `t1` +ALTER TABLE t1 IMPORT TABLESPACE; +Warnings: +Warning 1810 IO Read error: (2, No such file or directory) Error opening './test/t1.cfg', will attempt to import without schema verification +SELECT a FROM t1; +a +1 +2 +DROP TABLE t1; |