Repository: kudu
Updated Branches:
refs/heads/master eb109116b -> a7590d49c
[iwyu] add catalog_manager.{cc,h} files
Removed catalog_manager.{cc,h} files from the IWYU's black list.
It seems at this point the IWYU tool no longer outputs conflicting
suggestions.
Change-Id: I3b65dc90a5e6378286e51fcfdcdefdf499fbd89c
Reviewed-on: http://gerrit.cloudera.org:8080/11430
Reviewed-by: Adar Dembo <[email protected]>
Tested-by: Kudu Jenkins
Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/a7590d49
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/a7590d49
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/a7590d49
Branch: refs/heads/master
Commit: a7590d49c10e29b914daa10b111e13ecd08e2172
Parents: eb10911
Author: Alexey Serbin <[email protected]>
Authored: Tue Sep 11 23:29:31 2018 -0700
Committer: Alexey Serbin <[email protected]>
Committed: Wed Sep 12 17:01:52 2018 +0000
----------------------------------------------------------------------
build-support/iwyu.py | 2 --
src/kudu/master/catalog_manager.cc | 3 +++
src/kudu/master/catalog_manager.h | 4 ----
3 files changed, 3 insertions(+), 6 deletions(-)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/kudu/blob/a7590d49/build-support/iwyu.py
----------------------------------------------------------------------
diff --git a/build-support/iwyu.py b/build-support/iwyu.py
index d665421..6f74c13 100755
--- a/build-support/iwyu.py
+++ b/build-support/iwyu.py
@@ -61,8 +61,6 @@ _MUTED_FILES = set([
"src/kudu/common/encoded_key-test.cc",
"src/kudu/common/schema.h",
"src/kudu/experiments/rwlock-perf.cc",
- "src/kudu/master/catalog_manager.cc",
- "src/kudu/master/catalog_manager.h",
"src/kudu/rpc/reactor.cc",
"src/kudu/rpc/reactor.h",
"src/kudu/security/ca/cert_management.cc",
http://git-wip-us.apache.org/repos/asf/kudu/blob/a7590d49/src/kudu/master/catalog_manager.cc
----------------------------------------------------------------------
diff --git a/src/kudu/master/catalog_manager.cc
b/src/kudu/master/catalog_manager.cc
index 922ee3e..6a90906 100644
--- a/src/kudu/master/catalog_manager.cc
+++ b/src/kudu/master/catalog_manager.cc
@@ -71,6 +71,7 @@
#include "kudu/common/partition.h"
#include "kudu/common/row_operations.h"
#include "kudu/common/schema.h"
+#include "kudu/common/types.h"
#include "kudu/common/wire_protocol.h"
#include "kudu/common/wire_protocol.pb.h"
#include "kudu/consensus/consensus.pb.h"
@@ -80,6 +81,7 @@
#include "kudu/consensus/raft_consensus.h"
#include "kudu/fs/fs_manager.h"
#include "kudu/gutil/atomicops.h"
+#include "kudu/gutil/basictypes.h"
#include "kudu/gutil/bind.h"
#include "kudu/gutil/bind_helpers.h"
#include "kudu/gutil/macros.h"
@@ -101,6 +103,7 @@
#include "kudu/master/ts_descriptor.h"
#include "kudu/master/ts_manager.h"
#include "kudu/rpc/messenger.h"
+#include "kudu/rpc/remote_user.h"
#include "kudu/rpc/rpc_context.h"
#include "kudu/rpc/rpc_controller.h"
#include "kudu/security/cert.h"
http://git-wip-us.apache.org/repos/asf/kudu/blob/a7590d49/src/kudu/master/catalog_manager.h
----------------------------------------------------------------------
diff --git a/src/kudu/master/catalog_manager.h
b/src/kudu/master/catalog_manager.h
index 3f13e38..525a736 100644
--- a/src/kudu/master/catalog_manager.h
+++ b/src/kudu/master/catalog_manager.h
@@ -91,10 +91,6 @@ namespace hms {
class HmsCatalog;
} // namespace hms
-namespace hms {
-class HmsCatalog;
-}
-
namespace master {
class CatalogManagerBgTasks;