Skip to content

Commit ceb3976

Browse files
author
Varun Gupta
committed
Updating test results in rocksdb test suite after MDEV-11172 is fixed
1 parent 26f5033 commit ceb3976

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

storage/rocksdb/mysql-test/rocksdb/r/issue896.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ KEY `d` (`d`)
99
INSERT INTO t1 VALUES (100, 'aaabbb', UNIX_TIMESTAMP(), 200);
1010
EXPLAIN SELECT COUNT(*) FROM t1 FORCE INDEX(d);
1111
id select_type table type possible_keys key key_len ref rows Extra
12-
1 SIMPLE t1 index NULL d 11 NULL # Using index
12+
1 SIMPLE t1 index NULL d 9 NULL # Using index
1313
# segfault here without the fix
1414
SELECT COUNT(*) FROM t1 FORCE INDEX(d);
1515
COUNT(*)

storage/rocksdb/mysql-test/rocksdb/r/rocksdb.result

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -546,7 +546,7 @@ pk key1 col1
546546
explain
547547
select key1 from t30;
548548
id select_type table type possible_keys key key_len ref rows Extra
549-
1 SIMPLE t30 index NULL key1 20 NULL # Using index
549+
1 SIMPLE t30 index NULL key1 18 NULL # Using index
550550
select key1 from t30;
551551
key1
552552
row1-key
@@ -618,7 +618,7 @@ row3 row3-key row3-data
618618
explain
619619
select * from t30 order by key1 limit 3;
620620
id select_type table type possible_keys key key_len ref rows Extra
621-
1 SIMPLE t30 index NULL key1 20 NULL #
621+
1 SIMPLE t30 index NULL key1 18 NULL #
622622
select * from t30 order by key1 limit 3;
623623
pk key1 col1
624624
row1 row1-key row1-data
@@ -627,7 +627,7 @@ row3 row3-key row3-data
627627
explain
628628
select * from t30 order by key1 desc limit 3;
629629
id select_type table type possible_keys key key_len ref rows Extra
630-
1 SIMPLE t30 index NULL key1 20 NULL #
630+
1 SIMPLE t30 index NULL key1 18 NULL #
631631
select * from t30 order by key1 desc limit 3;
632632
pk key1 col1
633633
row5 row5-key row5-data

storage/rocksdb/mysql-test/rocksdb/r/type_char_indexes.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ t1 1 v16 1 v16 A 500 NULL NULL YES LSMTREE
4545
INSERT INTO t1 (c,c20,v16,v128,pk) VALUES ('a','char1','varchar1a','varchar1b','1'),('a','char2','varchar2a','varchar2b','2'),('b','char3','varchar1a','varchar1b','3'),('c','char4','varchar3a','varchar3b','4');
4646
EXPLAIN SELECT SUBSTRING(v16,0,3) FROM t1 WHERE v16 LIKE 'varchar%';
4747
id select_type table type possible_keys key key_len ref rows Extra
48-
1 SIMPLE t1 index v16 v16 21 NULL # Using where; Using index
48+
1 SIMPLE t1 index v16 v16 19 NULL # Using where; Using index
4949
SELECT SUBSTRING(v16,7,3) FROM t1 WHERE v16 LIKE 'varchar%';
5050
SUBSTRING(v16,7,3)
5151
r1a

0 commit comments

Comments
 (0)