summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb_i_s
diff options
context:
space:
mode:
authorAlexander Barkov <bar@mariadb.com>2019-06-26 06:46:55 +0400
committerAlexander Barkov <bar@mariadb.com>2019-06-26 06:46:55 +0400
commit6f3612fa4d126ce614a415edf88feae013820d93 (patch)
tree31d17f139dcdac46e9b3c2345f0a20adb139ddc3 /mysql-test/suite/innodb_i_s
parent677133f1b3d45dcf72484a2cc9577ad09d8a78fd (diff)
downloadmariadb-git-6f3612fa4d126ce614a415edf88feae013820d93.tar.gz
MDEV-19861 Add intfastructure to have ENUM columns in INFORMATION_SCHEMA
Diffstat (limited to 'mysql-test/suite/innodb_i_s')
-rw-r--r--mysql-test/suite/innodb_i_s/innodb_buffer_page.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/innodb_i_s/innodb_buffer_page.result b/mysql-test/suite/innodb_i_s/innodb_buffer_page.result
index 52de51be179..3190c7866cf 100644
--- a/mysql-test/suite/innodb_i_s/innodb_buffer_page.result
+++ b/mysql-test/suite/innodb_i_s/innodb_buffer_page.result
@@ -18,7 +18,7 @@ INNODB_BUFFER_PAGE CREATE TEMPORARY TABLE `INNODB_BUFFER_PAGE` (
`DATA_SIZE` bigint(21) unsigned NOT NULL DEFAULT 0,
`COMPRESSED_SIZE` bigint(21) unsigned NOT NULL DEFAULT 0,
`PAGE_STATE` varchar(64) DEFAULT NULL,
- `IO_FIX` varchar(64) DEFAULT NULL,
+ `IO_FIX` enum('IO_NONE','IO_READ','IO_WRITE','IO_PIN') DEFAULT NULL,
`IS_OLD` varchar(3) DEFAULT NULL,
`FREE_PAGE_CLOCK` bigint(21) unsigned NOT NULL DEFAULT 0
) ENGINE=MEMORY DEFAULT CHARSET=utf8