summaryrefslogtreecommitdiff
path: root/mysql-test/main/type_enum.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/main/type_enum.test')
-rw-r--r--mysql-test/main/type_enum.test4
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/main/type_enum.test b/mysql-test/main/type_enum.test
index 5c461922166..5f13b8c26cd 100644
--- a/mysql-test/main/type_enum.test
+++ b/mysql-test/main/type_enum.test
@@ -110,7 +110,9 @@ insert into t1 values ('Y');
alter table t1 add b set ('Y','N') CHARACTER SET utf8 COLLATE utf8_bin;
alter table t1 add c enum ('Y','N') CHARACTER SET utf8 COLLATE utf8_bin;
--enable_metadata
+--disable_view_protocol
select * from t1;
+--enable_view_protocol
--disable_metadata
drop table t1;
@@ -234,7 +236,9 @@ CREATE TABLE t1 (
) ENGINE=MyISAM;
INSERT INTO t1 VALUES (1),(2);
--enable_metadata
+--disable_view_protocol
SELECT AVG(f1) FROM t1;
+--enable_view_protocol
--disable_metadata
drop table t1;