Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -671,6 +671,11 @@ public SELF withByteStreamSplitEncoding(boolean enableByteStreamSplit) {
return self();
}

public SELF withByteStreamSplitEncoding(String columnPath, boolean enableByteStreamSplit) {
encodingPropsBuilder.withByteStreamSplitEncoding(columnPath, enableByteStreamSplit);
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for adding this! Could you please check if there is any test case covering it? If not, it would be good to add one to make sure it takes effect.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added the corresponding test. Thanks for your reminder

return self();
}

/**
* Enable or disable dictionary encoding of the specified column for the constructed writer.
*
Expand Down