YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/yql/cql/ql/ptree/column_desc.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/yql/cql/ql/ptree/column_desc.h"
15
16
#include "yb/common/ql_name.h"
17
18
namespace yb {
19
namespace ql {
20
21
14.2M
std::string ColumnDesc::name() const {
22
  // Demangle "name_" if it was previous mangled (IndexTable has mangled column names).
23
14.2M
  if (has_mangled_name_) {
24
294
    return YcqlName::DemangleName(name_);
25
294
  }
26
14.2M
  return name_;
27
14.2M
}
28
29
1.01k
std::string ColumnDesc::MangledName() const {
30
  // Mangle "name_" if it was not previous mangled.
31
  // When we load INDEX, the column name is already mangled (Except for older INDEX).
32
1.01k
  if (has_mangled_name_) {
33
0
    return name_;
34
0
  }
35
1.01k
  return YcqlName::MangleColumnName(name_);
36
1.01k
}
37
38
}  // namespace ql
39
}  // namespace yb