-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[native] Add support for Iceberg connector in presto_protocol
Add Java classes from the Iceberg connector in presto_protocol.yml file. Specialize IcebergColumnHandle to support 'operator<()'.
- Loading branch information
1 parent
6588bab
commit 2df519d
Showing
11 changed files
with
12,681 additions
and
11,474 deletions.
There are no files selected for viewing
20,097 changes: 10,507 additions & 9,590 deletions
20,097
presto-native-execution/presto_cpp/presto_protocol/presto_protocol.cpp
Large diffs are not rendered by default.
Oops, something went wrong.
3,934 changes: 2,053 additions & 1,881 deletions
3,934
presto-native-execution/presto_cpp/presto_protocol/presto_protocol.h
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
presto-native-execution/presto_cpp/presto_protocol/special/IcebergColumnHandle.hpp.inc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* Licensed 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. | ||
*/ | ||
|
||
// IcebergColumnHandle is special since it needs an implementation of | ||
// operator<(). | ||
|
||
namespace facebook::presto::protocol { | ||
|
||
struct IcebergColumnHandle : public ColumnHandle { | ||
ColumnIdentity columnIdentity = {}; | ||
Type type = {}; | ||
std::shared_ptr<String> comment = {}; | ||
ColumnType columnType = {}; | ||
List<Subfield> requiredSubfields = {}; | ||
|
||
IcebergColumnHandle() noexcept; | ||
|
||
bool operator<(const ColumnHandle& o) const override { | ||
return columnIdentity.name < | ||
dynamic_cast<const IcebergColumnHandle&>(o).columnIdentity.name; | ||
} | ||
}; | ||
|
||
void to_json(json& j, const IcebergColumnHandle& p); | ||
void from_json(const json& j, IcebergColumnHandle& p); | ||
|
||
} // namespace facebook::presto::protocol |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters