Skip to content

Commit

Permalink
Test changes to improve stability of results
Browse files Browse the repository at this point in the history
  • Loading branch information
elenst committed Jun 22, 2017
1 parent 953de41 commit bb857f0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mysql-test/suite/storage_engine/tbl_temporary.test
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ if (!$mysql_errname)
SHOW CREATE TABLE t1;

DROP TEMPORARY TABLE t1;
DROP TABLE t1;
}
DROP TABLE t1;

--source cleanup_engine.inc

5 changes: 5 additions & 0 deletions mysql-test/suite/storage_engine/type_binary_indexes.test
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,11 @@ if (!$mysql_errname)

INSERT INTO t1 (b,b20,v16,v128) VALUES ('a','char1','varchar1a','varchar1b'),('a','char2','varchar2a','varchar2b'),('b','char3','varchar1a','varchar1b'),('c','char4','varchar3a','varchar3b'),('d','char5','varchar4a','varchar3b'),('e','char6','varchar2a','varchar3b');
INSERT INTO t1 (b,b20,v16,v128) SELECT b,b20,v16,v128 FROM t1;
--disable_result_log
--disable_query_log
ANALYZE TABLE t1;
--enable_query_log
--enable_result_log

--replace_column 1 # 2 # 3 # 4 # 5 # 7 # 8 # 9 # 10 #
EXPLAIN SELECT HEX(SUBSTRING(v16,0,3)) FROM t1 WHERE v16 LIKE 'varchar%';
Expand Down

0 comments on commit bb857f0

Please sign in to comment.