Skip to content

Commit

Permalink
MDEV-16262: rocksdb.issue255 test sometimes fails in buildbot
Browse files Browse the repository at this point in the history
Fix an obvious typo: replace_column should be applied to SHOW TABLE STATUS,
not to SELECT * FROM t1.
  • Loading branch information
spetrunia committed May 23, 2018
1 parent 6e63db2 commit fdb8d01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion storage/rocksdb/mysql-test/rocksdb/r/issue255.result
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion storage/rocksdb/mysql-test/rocksdb/t/issue255.test
Expand Up @@ -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
Expand Down

0 comments on commit fdb8d01

Please sign in to comment.