Skip to content

Commit

Permalink
rocksdb - fix failing tests on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
vaintroub committed Apr 2, 2017
1 parent 9501c7d commit 96c48a0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ while ($i > 0)
my $thr = $ENV{'ROCKSDB_THREAD'};
my $num = $ENV{'ROCKSDB_ROWS_PER_THREAD'};
open(my $fh, '>>', $fn) || die "perl open($fn): $!";
binmode $fh;
for (my $ii = 0; $ii < $num; $ii++)
{
print $fh "\\N\t$thr\n"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
--source include/have_rocksdb.inc
--source include/have_partition.inc
--source include/not_windows.inc # Data directory option not availablr

#
# Create tables with partitions and try to generate an error while creating
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
--source include/have_rocksdb.inc
--source include/not_windows.inc # decorated database names is too long, exceeded OS limits

#
# SHOW TABLE STATUS statement
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
--source include/have_rocksdb.inc

--source include/have_partition.inc
--source include/not_windows.inc

#
# Check that when either DATA DIRECTORY or INDEX DIRECTORY are specified
# then MyRocks returns an appropriate error. We don't support this
Expand Down
1 change: 1 addition & 0 deletions storage/rocksdb/mysql-test/rocksdb/t/write_sync.test
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
--source include/have_rocksdb.inc
--source include/not_windows.inc # MDEV-12427

SET GLOBAL rocksdb_write_disable_wal=false;
SET GLOBAL rocksdb_write_ignore_missing_column_families=true;
Expand Down

0 comments on commit 96c48a0

Please sign in to comment.