-
Notifications
You must be signed in to change notification settings - Fork 480
MINOR: Fix formatting in parquet.thrift file (trailing spaces)
#558
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
alamb
merged 1 commit into
apache:master
from
OmBiradar:parquet.thrift-formatting-error
Mar 19, 2026
Merged
Changes from all commits
Commits
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
using
git blame -wdoes indeed correctly ignore whitespace differences:git blame -w src/main/thrift/parquet.thrift ... 2c4ada8e src/thrift/parquet.thrift (julien 2013-09-17 18:21:15 -0700 267) struct Statistics { 041708da src/main/thrift/parquet.thrift (Ryan Blue 2017-04-17 11:23:41 -0700 268) /** 041708da src/main/thrift/parquet.thrift (Ryan Blue 2017-04-17 11:23:41 -0700 269) * DEPRECATED: min and max value of the column. Use min_value and max_value. 041708da src/main/thrift/parquet.thrift (Ryan Blue 2017-04-17 11:23:41 -0700 270) * 041708da src/main/thrift/parquet.thrift (Ryan Blue 2017-04-17 11:23:41 -0700 271) * Values are encoded using PLAIN encoding, except that variable-length byte 041708da src/main/thrift/parquet.thrift (Ryan Blue 2017-04-17 11:23:41 -0700 272) * arrays do not include a length prefix. 041708da src/main/thrift/parquet.thrift (Ryan Blue 2017-04-17 11:23:41 -0700 273) * bef54389 src/main/thrift/parquet.thrift (Zoltan Ivanfi 2017-10-06 16:38:53 -0700 274) * These fields encode min and max values determined by signed comparison 041708da src/main/thrift/parquet.thrift (Ryan Blue 2017-04-17 11:23:41 -0700 275) * only. New files should use the correct order for a column's logical type 041708da src/main/thrift/parquet.thrift (Ryan Blue 2017-04-17 11:23:41 -0700 276) * and store the values in the min_value and max_value fields. 041708da src/main/thrift/parquet.thrift (Ryan Blue 2017-04-17 11:23:41 -0700 277) * 041708da src/main/thrift/parquet.thrift (Ryan Blue 2017-04-17 11:23:41 -0700 278) * To support older readers, these may be set when the column order is bef54389 src/main/thrift/parquet.thrift (Zoltan Ivanfi 2017-10-06 16:38:53 -0700 279) * signed. 041708da src/main/thrift/parquet.thrift (Ryan Blue 2017-04-17 11:23:41 -0700 280) */ 2c4ada8e src/thrift/parquet.thrift (julien 2013-09-17 18:21:15 -0700 281) 1: optional binary max; 2c4ada8e src/thrift/parquet.thrift (julien 2013-09-17 18:21:15 -0700 282) 2: optional binary min; db687874 src/main/thrift/parquet.thrift (mwish 2024-08-23 15:30:20 +0800 283) /** db687874 src/main/thrift/parquet.thrift (mwish 2024-08-23 15:30:20 +0800 284) * Count of null values in the column.