Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 4.3k
GH-34888: [C++][Parquet] Writer supports adding extra kv meta#34889
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
b84556cbed06616f6c41c9b0d0225e5a39cFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -523,10 +523,14 @@ struct PageIndexLocation { | ||||||
| class PARQUET_EXPORT FileMetaDataBuilder { | ||||||
| public: | ||||||
| // API convenience to get a MetaData reader | ||||||
| ARROW_DEPRECATED("Deprecated in 12.0.0. Use overload without KeyValueMetadata instead.") | ||||||
MemberAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Should I change this since it may not be included in the 12.0.0 release? @wjones127 | ||||||
| static std::unique_ptr<FileMetaDataBuilder> Make( | ||||||
| const SchemaDescriptor* schema, std::shared_ptr<WriterProperties> props, | ||||||
| std::shared_ptr<const KeyValueMetadata> key_value_metadata = NULLPTR); | ||||||
| std::shared_ptr<const KeyValueMetadata> key_value_metadata); | ||||||
| // API convenience to get a MetaData builder | ||||||
| static std::unique_ptr<FileMetaDataBuilder> Make( | ||||||
| const SchemaDescriptor* schema, std::shared_ptr<WriterProperties> props); | ||||||
| ~FileMetaDataBuilder(); | ||||||
| @@ -537,7 +541,8 @@ class PARQUET_EXPORT FileMetaDataBuilder { | ||||||
| void SetPageIndexLocation(const PageIndexLocation& location); | ||||||
| // Complete the Thrift structure | ||||||
| std::unique_ptr<FileMetaData> Finish(); | ||||||
| std::unique_ptr<FileMetaData> Finish( | ||||||
| const std::shared_ptr<const KeyValueMetadata>& key_value_metadata = NULLPTR); | ||||||
| // crypto metadata | ||||||
| std::unique_ptr<FileCryptoMetaData> GetCryptoMetaData(); | ||||||
Uh oh!
There was an error while loading. Please reload this page.