YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/client/in_flight_op.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/client/in_flight_op.h"
15
16
#include <string>
17
18
#include "yb/client/meta_cache.h"
19
#include "yb/client/yb_op.h"
20
21
namespace yb {
22
namespace client {
23
namespace internal {
24
25
InFlightOp::InFlightOp(std::shared_ptr<YBOperation> yb_op_, size_t seq_no)
26
11.0M
    : yb_op(std::move(yb_op_)), sequence_number(seq_no) {
27
11.0M
}
28
29
5
std::string InFlightOp::ToString() const {
30
5
  return YB_STRUCT_TO_STRING(yb_op, tablet, sequence_number);
31
5
}
32
33
} // namespace internal
34
} // namespace client
35
} // namespace yb