YugabyteDB (2.13.1.0-b60, 21121d69985fbf76aa6958d8f04a9bfa936293b5)

Coverage Report

Created: 2022-03-22 16:43

/Users/deen/code/yugabyte-db/src/yb/client/error.cc
Line
Count
Source (jump to first uncovered line)
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/client/error.h"
15
16
namespace yb {
17
namespace client {
18
19
////////////////////////////////////////////////////////////
20
// Error
21
////////////////////////////////////////////////////////////
22
23
YBError::YBError(YBOperationPtr failed_op, const Status& status)
24
995k
    : failed_op_(std::move(failed_op)), status_(status) {}
25
26
995k
YBError::~YBError() {}
27
28
4.87M
const Status& YBError::status() const {
29
4.87M
  return status_;
30
4.87M
}
31
32
0
const YBOperation& YBError::failed_op() const {
33
0
  return *failed_op_;
34
0
}
35
36
52.2k
YBOperation& YBError::failed_op() {
37
52.2k
  return *failed_op_;
38
52.2k
}
39
40
0
bool YBError::was_possibly_successful() const {
41
  // TODO: implement me - right now be conservative.
42
0
  return true;
43
0
}
44
45
} // namespace client
46
} // namespace yb