mirror of
https://github.com/MariaDB/server.git
synced 2026-05-07 23:54:31 +02:00
Post-merge fix: Rdb_io_watchdog doesn't support windows
So disable it there for now.
This commit is contained in:
parent
1388afcd84
commit
61ca3cf524
3 changed files with 26 additions and 3 deletions
|
|
@ -34,6 +34,9 @@
|
|||
|
||||
namespace myrocks {
|
||||
|
||||
// Rdb_io_watchdog does not support Windows ATM.
|
||||
#ifndef _WIN32
|
||||
|
||||
class Rdb_io_watchdog {
|
||||
const int RDB_IO_WRITE_BUFFER_SIZE = 4096;
|
||||
const char *const RDB_IO_DUMMY_FILE_NAME = "myrocks_io_watchdog_write_file";
|
||||
|
|
@ -110,4 +113,5 @@ class Rdb_io_watchdog {
|
|||
Rdb_io_watchdog &operator=(const Rdb_io_watchdog &) = delete;
|
||||
};
|
||||
|
||||
#endif
|
||||
} // namespace myrocks
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue