Skip to content

refactor: switch BooleanBufferBuilder to NullBufferBuilder in binary_map#14341

Merged
comphead merged 3 commits intoapache:mainfrom
Chen-Yuan-Lai:use_NullBufferBuilder_in_binary_map
Jan 29, 2025
Merged

refactor: switch BooleanBufferBuilder to NullBufferBuilder in binary_map#14341
comphead merged 3 commits intoapache:mainfrom
Chen-Yuan-Lai:use_NullBufferBuilder_in_binary_map

Conversation

@Chen-Yuan-Lai
Copy link
Copy Markdown
Contributor

Which issue does this PR close?

Closes #14115 .

Rationale for this change

As mentioned in #14115 , several examples in DataFusion codebase still using BooleanBufferBuilder rather than NullBufferBuilder, they should be replaced with NullBufferBuilder for optimization.

What changes are included in this PR?

Are these changes tested?

Are there any user-facing changes?

@github-actions github-actions bot added the physical-expr Changes to the physical-expr crates label Jan 28, 2025
null_builder.append_n_non_nulls(null_index);
null_builder.append_null();
null_builder.append_n_non_nulls(num_values - null_index - 1);
null_builder.finish().unwrap()
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.

it seems the unwrap is safe because upstream returns Some(xxx).

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

if it is @Chen-Yuan-Lai please add the comment that we know .unwrap is safe here

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.

Thanks @xudong963 and @comphead , I have added the comment

@comphead comphead merged commit d18a1d3 into apache:main Jan 29, 2025
@Chen-Yuan-Lai Chen-Yuan-Lai deleted the use_NullBufferBuilder_in_binary_map branch February 5, 2025 07:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

physical-expr Changes to the physical-expr crates

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Use NullBufferBuilder instead of BooleanBufferBuilder for creating Null masks

4 participants