blob: ef9020eba48c9194c6db6ca859a4fd98f107beb5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef ORC_SCHEMA_EVOLUTION_HH
#define ORC_SCHEMA_EVOLUTION_HH
#include "orc/Type.hh"
#include <unordered_map>
#include <unordered_set>
namespace orc {
/**
* Utility class to compare read type and file type to match their columns
* and check type conversion.
*/
class SchemaEvolution {
public:
SchemaEvolution(const std::shared_ptr<Type>& readType, const Type* fileType);
// get read type by column id from file type. or return the file type if
// read type is not provided (i.e. no schema evolution requested).
const Type* getReadType(const Type& fileType) const;
// check if we need to convert file type to read type for primitive type.
bool needConvert(const Type& fileType) const;
// check if the PPD conversion is safe
bool isSafePPDConversion(uint64_t columnId) const;
// return selected read type
const Type* getReadType() const {
return readType.get();
}
private:
void buildConversion(const Type* readType, const Type* fileType);
void buildSafePPDConversionMap(const Type* readType, const Type* fileType);
private:
const std::shared_ptr<Type> readType;
std::unordered_map<uint64_t, const Type*> readTypeMap;
std::unordered_set<uint64_t> safePPDConversionMap;
};
} // namespace orc
#endif // ORC_SCHEMA_EVOLUTION_HH
|