Skip to content

Commit

Permalink
MDEV-20227: rocksdb.rocksdb_concurrent_delete fails on windows
Browse files Browse the repository at this point in the history
A combination of:
* lots of include'd test files where each has "--source
  include/have_rocksdb.inc"
* for each such occurrence, MTR adds testsuite's arguments into server
  arguments
* which hits some limit on the length of argv array on Windows, causing
  the server to get garbage data in the last argument.

Work around this by commenting out one of the totally redundant
"source include/have_rocksdb.inc" lines.
  • Loading branch information
spetrunia committed Aug 4, 2019
1 parent 09a8569 commit 988ff90
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
--source include/have_rocksdb.inc
# MariaDB: including the below too many times causes really long argv list
# in win_main()'s argument which blows up some limit on Windows.
# Comment it out:
#--source include/have_rocksdb.inc
--source include/have_debug_sync.inc

--source include/count_sessions.inc
Expand Down

0 comments on commit 988ff90

Please sign in to comment.