summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb_i_s/innodb_cmp_reset.result
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.com>2019-06-19 10:49:49 +0400
committerAlexander Barkov <bar@mariadb.com>2019-06-20 11:40:33 +0400
commit9561b0b47ec771a348844108867fc4c99b62d595 (patch)
treecdba81c3c7856dffbd59de6b6ff2e1b35c76a924 /mysql-test/suite/innodb_i_s/innodb_cmp_reset.result
parent49e5323dbd8a0ab074abdaeb16fe42aa47f4e6b6 (diff)
downloadmariadb-git-9561b0b47ec771a348844108867fc4c99b62d595.tar.gz
MDEV-19810 Reuse new I_S table definition helper classes for InnoDB
Diffstat (limited to 'mysql-test/suite/innodb_i_s/innodb_cmp_reset.result')
-rw-r--r--mysql-test/suite/innodb_i_s/innodb_cmp_reset.result10
1 files changed, 10 insertions, 0 deletions
diff --git a/mysql-test/suite/innodb_i_s/innodb_cmp_reset.result b/mysql-test/suite/innodb_i_s/innodb_cmp_reset.result
new file mode 100644
index 00000000000..3d247f2cbc1
--- /dev/null
+++ b/mysql-test/suite/innodb_i_s/innodb_cmp_reset.result
@@ -0,0 +1,10 @@
+SHOW CREATE TABLE INFORMATION_SCHEMA.INNODB_CMP_RESET;
+Table Create Table
+INNODB_CMP_RESET CREATE TEMPORARY TABLE `INNODB_CMP_RESET` (
+ `page_size` int(5) NOT NULL DEFAULT 0,
+ `compress_ops` int(11) NOT NULL DEFAULT 0,
+ `compress_ops_ok` int(11) NOT NULL DEFAULT 0,
+ `compress_time` int(11) NOT NULL DEFAULT 0,
+ `uncompress_ops` int(11) NOT NULL DEFAULT 0,
+ `uncompress_time` int(11) NOT NULL DEFAULT 0
+) ENGINE=MEMORY DEFAULT CHARSET=utf8