summaryrefslogtreecommitdiff
path: root/mysql-test/suite/storage_engine/type_set.inc
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/storage_engine/type_set.inc')
-rw-r--r--mysql-test/suite/storage_engine/type_set.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/suite/storage_engine/type_set.inc b/mysql-test/suite/storage_engine/type_set.inc
index b4844b00ec7..bc927cf8014 100644
--- a/mysql-test/suite/storage_engine/type_set.inc
+++ b/mysql-test/suite/storage_engine/type_set.inc
@@ -25,19 +25,19 @@ if (!$mysql_errname)
--replace_column 3 # 4 # 5 #
SHOW COLUMNS IN t1;
- INSERT INTO t1 VALUES
+ INSERT INTO t1 (a,b,c) VALUES
('','test2,test3','01,34,44,,23'),
('',5,2),
(',','test4,test2','');
--sorted_result
- SELECT * FROM t1;
+ SELECT a,b,c FROM t1;
# Out of range values
# (should produce warnings)
- INSERT INTO t1 VALUES (0,'test6',-1);
+ INSERT INTO t1 (a,b,c) VALUES (0,'test6',-1);
--sorted_result
- SELECT * FROM t1;
+ SELECT a,b,c FROM t1;
# Non-unique values in set
# (should produce a warning)
@@ -62,7 +62,7 @@ if (!$mysql_errname)
# Simple comparison
--sorted_result
- SELECT * FROM t1 WHERE FIND_IN_SET('test2',b)>0 OR a != '';
+ SELECT a,b,c,e FROM t1 WHERE FIND_IN_SET('test2',b)>0 OR a != '';
DROP TABLE t1;
}