Correct pragma once problem with Bazel on Windows (#6321)

Summary:
This is a simple edit to have two #include file paths be consistent within range_del_aggregator.{h,cc} with everywhere else.

The impact of this inconsistency is that it actual breaks a Bazel based build on the Windows platform. The same pragma once failure occurs with both Windows Visual C++ 2019 and clang for Windows 9.0. Bazel's "sandboxing" of the builds causes both compilers to not properly recognize "rocksdb/types.h" and "include/rocksdb/types.h" to be the same file (also comparator.h). My guess is that the backslash versus forward slash mixing within path names is the underlying issue.

But, everything builds fine once the include paths in these two source files are consistent with the rest of the repository.
Pull Request resolved: https://github.com/facebook/rocksdb/pull/6321

Differential Revision: D19506585

Pulled By: ltamasi

fbshipit-source-id: 294c346607edc433ab99eaabc9c880ee7426817a
main
matthewvon 5 years ago committed by Facebook Github Bot
parent d305f13e21
commit e6e8b9e871
  1. 4
      db/range_del_aggregator.cc
  2. 4
      db/range_del_aggregator.h
  3. 2
      utilities/persistent_cache/block_cache_tier_file_buffer.h
  4. 2
      utilities/persistent_cache/hash_table.h

@ -11,8 +11,8 @@
#include "db/range_del_aggregator.h" #include "db/range_del_aggregator.h"
#include "db/range_tombstone_fragmenter.h" #include "db/range_tombstone_fragmenter.h"
#include "db/version_edit.h" #include "db/version_edit.h"
#include "include/rocksdb/comparator.h" #include "rocksdb/comparator.h"
#include "include/rocksdb/types.h" #include "rocksdb/types.h"
#include "table/internal_iterator.h" #include "table/internal_iterator.h"
#include "table/scoped_arena_iterator.h" #include "table/scoped_arena_iterator.h"
#include "table/table_builder.h" #include "table/table_builder.h"

@ -19,8 +19,8 @@
#include "db/range_del_aggregator.h" #include "db/range_del_aggregator.h"
#include "db/range_tombstone_fragmenter.h" #include "db/range_tombstone_fragmenter.h"
#include "db/version_edit.h" #include "db/version_edit.h"
#include "include/rocksdb/comparator.h" #include "rocksdb/comparator.h"
#include "include/rocksdb/types.h" #include "rocksdb/types.h"
#include "table/internal_iterator.h" #include "table/internal_iterator.h"
#include "table/scoped_arena_iterator.h" #include "table/scoped_arena_iterator.h"
#include "table/table_builder.h" #include "table/table_builder.h"

@ -8,7 +8,7 @@
#include <memory> #include <memory>
#include <string> #include <string>
#include "include/rocksdb/comparator.h" #include "rocksdb/comparator.h"
#include "memory/arena.h" #include "memory/arena.h"
#include "util/mutexlock.h" #include "util/mutexlock.h"

@ -15,7 +15,7 @@
#include <sys/mman.h> #include <sys/mman.h>
#endif #endif
#include "include/rocksdb/env.h" #include "rocksdb/env.h"
#include "util/mutexlock.h" #include "util/mutexlock.h"
namespace rocksdb { namespace rocksdb {

Loading…
Cancel
Save