YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/yql/pggate/pg_type.cc
Line
Count
Source (jump to first uncovered line)
1
//--------------------------------------------------------------------------------------------------
2
// Copyright (c) YugaByte, Inc.
3
//
4
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5
// in compliance with the License.  You may obtain a copy of the License at
6
//
7
// http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software distributed under the License
10
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11
// or implied.  See the License for the specific language governing permissions and limitations
12
// under the License.
13
//--------------------------------------------------------------------------------------------------
14
15
#include "yb/yql/pggate/pg_type.h"
16
17
namespace yb {
18
namespace pggate {
19
20
0
PgTypeInfo::PgTypeInfo(const YBCPgTypeEntity *YBCDataTypeTable, int count) {
21
  // Setup type mapping.
22
0
  for (int idx = 0; idx < count; idx++) {
23
0
    const YBCPgTypeEntity *type_entity = &YBCDataTypeTable[idx];
24
0
    type_map_[type_entity->type_oid] = type_entity;
25
0
  }
26
0
}
27
28
0
const YBCPgTypeEntity* PgTypeInfo::GetTypeEntity(int32_t type_oid) {
29
0
  const auto iter = type_map_.find(type_oid);
30
0
  if (iter != type_map_.end()) {
31
0
    return iter->second;
32
0
  }
33
0
  return nullptr;
34
0
}
35
36
}  // namespace pggate
37
}  // namespace yb