]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/rocksdb/examples/compact_files_example.cc
import quincy beta 17.1.0
[ceph.git] / ceph / src / rocksdb / examples / compact_files_example.cc
index a0a9fa90aae3ad2425550073876eafbffad9c801..01e7d94d5072f6a87b458d0adea3dc587ee358be 100644 (file)
 #include "rocksdb/options.h"
 
 using namespace ROCKSDB_NAMESPACE;
+
+#if defined(OS_WIN)
+std::string kDBPath = "C:\\Windows\\TEMP\\rocksdb_compact_files_example";
+#else
 std::string kDBPath = "/tmp/rocksdb_compact_files_example";
+#endif
+
 struct CompactionTask;
 
 // This is an example interface of external-compaction algorithm.