[Commits] f01ae12: MDEV-16262: rocksdb.issue255 test sometimes fails in buildbot
revision-id: f01ae125a3247289714fe433171b7bd7e65327bf parent(s): 31584c8bb8204b27626fae0127eff4889b8f4383 committer: Sergei Petrunia branch nick: 10.2-r11 timestamp: 2018-05-23 15:24:45 +0300 message: MDEV-16262: rocksdb.issue255 test sometimes fails in buildbot Fix an obvious typo: replace_column should be applied to SHOW TABLE STATUS, not to SELECT * FROM t1. --- storage/rocksdb/mysql-test/rocksdb/r/issue255.result | 2 +- storage/rocksdb/mysql-test/rocksdb/t/issue255.test | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/storage/rocksdb/mysql-test/rocksdb/r/issue255.result b/storage/rocksdb/mysql-test/rocksdb/r/issue255.result index 797f339..9c6d9af 100644 --- a/storage/rocksdb/mysql-test/rocksdb/r/issue255.result +++ b/storage/rocksdb/mysql-test/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/storage/rocksdb/mysql-test/rocksdb/t/issue255.test b/storage/rocksdb/mysql-test/rocksdb/t/issue255.test index d75f1e3..588b28f 100644 --- a/storage/rocksdb/mysql-test/rocksdb/t/issue255.test +++ b/storage/rocksdb/mysql-test/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