[Commits] 4203c19: Make rocksdb.issue255 test stable
revision-id: 4203c19d5a51cde1d56061b11e99300a1ac10155 parent(s): 6fa7330636bee379161edc6dbd5162138cdd4318 committer: Sergei Petrunia branch nick: mysql-5.6-rocksdb-spetrunia timestamp: 2018-05-23 16:15:37 +0300 message: Make rocksdb.issue255 test stable Fix an obvious typo: replace_column should apply to SHOW TABLE STATUS, not to SELECT * FROM t1. --- mysql-test/suite/rocksdb/r/issue255.result | 2 +- mysql-test/suite/rocksdb/t/issue255.test | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mysql-test/suite/rocksdb/r/issue255.result b/mysql-test/suite/rocksdb/r/issue255.result index 797f339..9c6d9af 100644 --- a/mysql-test/suite/rocksdb/r/issue255.result +++ b/mysql-test/suite/rocksdb/r/issue255.result @@ -46,7 +46,7 @@ pk 127 SHOW TABLE STATUS LIKE 't1'; Name Engine Version Row_format Rows Avg_row_length Data_length Max_data_length Index_length Data_free Auto_increment Create_time Update_time Check_time Collation Checksum Create_options Comment -t1 ROCKSDB 10 Fixed 2 15 30 0 0 0 127 NULL NULL NULL latin1_swedish_ci NULL +t1 ROCKSDB # Fixed 2 # # # # # 127 NULL NULL NULL latin1_swedish_ci NULL INSERT INTO t1 VALUES (); ERROR 23000: Duplicate entry '127' for key 'PRIMARY' SELECT * FROM t1; diff --git a/mysql-test/suite/rocksdb/t/issue255.test b/mysql-test/suite/rocksdb/t/issue255.test index d75f1e3..588b28f 100644 --- a/mysql-test/suite/rocksdb/t/issue255.test +++ b/mysql-test/suite/rocksdb/t/issue255.test @@ -32,8 +32,8 @@ INSERT INTO t1 VALUES (5); SHOW TABLE STATUS LIKE 't1'; INSERT INTO t1 VALUES (1000); ---replace_column 3 # 6 # 7 # 8 # 9 # 10 # SELECT * FROM t1; +--replace_column 3 # 6 # 7 # 8 # 9 # 10 # SHOW TABLE STATUS LIKE 't1'; --error ER_DUP_ENTRY
participants (1)
-
psergey@askmonty.org