Skip to content

Commit 17d7cc7

Browse files
committed
MDEV-12277: rocksdb.rocksdb fails with Sort Aborted error in server stderr
Add a suppression
1 parent c5a2055 commit 17d7cc7

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1172,6 +1172,7 @@ DROP TABLE t1;
11721172
#
11731173
# MDEV-4298: RocksDB: Assertion `thd->is_error() || kill_errno' fails in ha_rows filesort
11741174
#
1175+
call mtr.add_suppression("Sort aborted");
11751176
CREATE TABLE t1 (pk INT PRIMARY KEY, i INT, KEY(i)) ENGINE=RocksDB;
11761177
INSERT INTO t1 VALUES (1,1),(2,2);
11771178
BEGIN;

storage/rocksdb/mysql-test/rocksdb/t/rocksdb.test

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -986,6 +986,7 @@ DROP TABLE t1;
986986
--echo #
987987
--echo # MDEV-4298: RocksDB: Assertion `thd->is_error() || kill_errno' fails in ha_rows filesort
988988
--echo #
989+
call mtr.add_suppression("Sort aborted");
989990
CREATE TABLE t1 (pk INT PRIMARY KEY, i INT, KEY(i)) ENGINE=RocksDB;
990991
INSERT INTO t1 VALUES (1,1),(2,2);
991992
BEGIN;

0 commit comments

Comments
 (0)