YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/master/master_service_base.cc
Line
Count
Source
1
// Copyright (c) YugaByte, Inc.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
4
// in compliance with the License.  You may obtain a copy of the License at
5
//
6
// http://www.apache.org/licenses/LICENSE-2.0
7
//
8
// Unless required by applicable law or agreed to in writing, software distributed under the License
9
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
10
// or implied.  See the License for the specific language governing permissions and limitations
11
// under the License.
12
//
13
14
#include "yb/master/master_service_base.h"
15
#include "yb/master/master.h"
16
17
namespace yb {
18
namespace master {
19
20
// Available overloaded handlers of different types:
21
22
193k
enterprise::CatalogManager* MasterServiceBase::handler(CatalogManager*) {
23
193k
  return server_->catalog_manager_impl();
24
193k
}
25
26
26
FlushManager* MasterServiceBase::handler(FlushManager*) {
27
26
  return server_->flush_manager();
28
26
}
29
30
120k
PermissionsManager* MasterServiceBase::handler(PermissionsManager*) {
31
120k
  return &server_->permissions_manager();
32
120k
}
33
34
9.22k
EncryptionManager* MasterServiceBase::handler(EncryptionManager*) {
35
9.22k
  return &server_->encryption_manager();
36
9.22k
}
37
38
} // namespace master
39
} // namespace yb