Skip to content

Commit

Permalink
MDEV-12277: rocksdb.rocksdb fails with Sort Aborted error in server s…
Browse files Browse the repository at this point in the history
…tderr

Add a suppression
  • Loading branch information
spetrunia committed Mar 16, 2017
1 parent c5a2055 commit 17d7cc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions storage/rocksdb/mysql-test/rocksdb/r/rocksdb.result
Original file line number Diff line number Diff line change
Expand Up @@ -1172,6 +1172,7 @@ DROP TABLE t1;
#
# MDEV-4298: RocksDB: Assertion `thd->is_error() || kill_errno' fails in ha_rows filesort
#
call mtr.add_suppression("Sort aborted");
CREATE TABLE t1 (pk INT PRIMARY KEY, i INT, KEY(i)) ENGINE=RocksDB;
INSERT INTO t1 VALUES (1,1),(2,2);
BEGIN;
Expand Down
1 change: 1 addition & 0 deletions storage/rocksdb/mysql-test/rocksdb/t/rocksdb.test
Original file line number Diff line number Diff line change
Expand Up @@ -986,6 +986,7 @@ DROP TABLE t1;
--echo #
--echo # MDEV-4298: RocksDB: Assertion `thd->is_error() || kill_errno' fails in ha_rows filesort
--echo #
call mtr.add_suppression("Sort aborted");
CREATE TABLE t1 (pk INT PRIMARY KEY, i INT, KEY(i)) ENGINE=RocksDB;
INSERT INTO t1 VALUES (1,1),(2,2);
BEGIN;
Expand Down

0 comments on commit 17d7cc7

Please sign in to comment.