-
Notifications
You must be signed in to change notification settings - Fork 40
feat(catalog): add LoadTableSchema interface #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,81 @@ | ||
| /* | ||
| * Copyright 2025-present Alibaba Inc. | ||
| * | ||
| * 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. | ||
| */ | ||
|
|
||
| #pragma once | ||
|
|
||
| #include <map> | ||
| #include <memory> | ||
| #include <string> | ||
| #include <vector> | ||
|
|
||
| #include "arrow/api.h" | ||
| #include "arrow/c/bridge.h" | ||
| #include "paimon/result.h" | ||
| #include "paimon/visibility.h" | ||
|
|
||
| struct ArrowSchema; | ||
|
|
||
| namespace paimon { | ||
|
|
||
| /// This interface provides access to TableSchema-related information. | ||
| class PAIMON_EXPORT Schema { | ||
| public: | ||
| virtual ~Schema() = default; | ||
|
|
||
| /// Get the Arrow C schema representation of this table schema. | ||
| /// @return A result containing an ArrowSchema, or an error status if conversion fails. | ||
| virtual Result<std::unique_ptr<::ArrowSchema>> GetArrowSchema() const = 0; | ||
|
|
||
| /// Get the names of all fields in the table schema. | ||
| /// @return A vector of field names. | ||
| virtual std::vector<std::string> FieldNames() const = 0; | ||
|
|
||
| /// Get the unique identifier of this table schema. | ||
| /// @return The schema ID | ||
| virtual int64_t Id() const = 0; | ||
|
|
||
| /// Get the list of primary key field names. | ||
| /// @return A reference to the vector of primary key names; empty if no primary keys are | ||
| /// defined. | ||
| virtual const std::vector<std::string>& PrimaryKeys() const = 0; | ||
|
|
||
| /// Get the list of partition key field names. | ||
| /// @return A reference to the vector of partition key names; empty if the table is not | ||
| /// partitioned. | ||
| virtual const std::vector<std::string>& PartitionKeys() const = 0; | ||
|
|
||
| /// Get the list of bucket key field names used for bucketing. | ||
| /// @return A reference to the vector of bucket key names. | ||
| virtual const std::vector<std::string>& BucketKeys() const = 0; | ||
|
|
||
| /// Get the number of buckets configured for this table. | ||
| /// @return The number of buckets. | ||
| virtual int32_t NumBuckets() const = 0; | ||
|
|
||
| /// Get the highest field ID assigned in this schema. | ||
| /// @return The maximum field ID. | ||
| virtual int32_t HighestFieldId() const = 0; | ||
|
|
||
| /// Get the table-level options associated with this schema. | ||
| /// @return A reference to the map of option key-value pairs (e.g., file format, filesystem). | ||
| virtual const std::map<std::string, std::string>& Options() const = 0; | ||
|
|
||
| /// Get an optional comment describing the table. | ||
| /// @return The table comment if set, or std::nullopt otherwise. | ||
| virtual std::optional<std::string> Comment() const = 0; | ||
| }; | ||
|
|
||
| } // namespace paimon |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,67 @@ | ||
| /* | ||
| * Copyright 2025-present Alibaba Inc. | ||
| * | ||
| * 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. | ||
| */ | ||
|
|
||
| #pragma once | ||
|
|
||
| #include <map> | ||
| #include <memory> | ||
| #include <string> | ||
| #include <vector> | ||
|
|
||
| #include "paimon/core/schema/table_schema.h" | ||
|
|
||
| namespace paimon { | ||
|
|
||
| class SchemaImpl : public Schema { | ||
| public: | ||
| explicit SchemaImpl(const std::shared_ptr<TableSchema>& table_schema) | ||
dalingmeng marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| : table_schema_(table_schema) {} | ||
| Result<std::unique_ptr<::ArrowSchema>> GetArrowSchema() const override { | ||
| return table_schema_->GetArrowSchema(); | ||
| } | ||
| std::vector<std::string> FieldNames() const override { | ||
| return table_schema_->FieldNames(); | ||
| } | ||
| int64_t Id() const override { | ||
| return table_schema_->Id(); | ||
| } | ||
| const std::vector<std::string>& PrimaryKeys() const override { | ||
| return table_schema_->PrimaryKeys(); | ||
| } | ||
| const std::vector<std::string>& PartitionKeys() const override { | ||
| return table_schema_->PartitionKeys(); | ||
| } | ||
| const std::vector<std::string>& BucketKeys() const override { | ||
| return table_schema_->BucketKeys(); | ||
| } | ||
| int32_t NumBuckets() const override { | ||
| return table_schema_->NumBuckets(); | ||
| } | ||
| int32_t HighestFieldId() const override { | ||
| return table_schema_->HighestFieldId(); | ||
| } | ||
| const std::map<std::string, std::string>& Options() const override { | ||
| return table_schema_->Options(); | ||
| } | ||
| std::optional<std::string> Comment() const override { | ||
| return table_schema_->Comment(); | ||
| } | ||
|
|
||
| private: | ||
| std::shared_ptr<TableSchema> table_schema_; | ||
| }; | ||
|
|
||
| } // namespace paimon | ||
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.