Skip to content
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

refactor: switch BooleanBufferBuilder to NullBufferBuilder in correlation function #14181

Merged

Conversation

Chen-Yuan-Lai
Copy link
Contributor

…tion function

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?

Copy link
Contributor

@alamb alamb left a comment

Choose a reason for hiding this comment

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

Thanks (again) @Chen-Yuan-Lai

values.into(),
Some(nulls.finish().into()),
)))
Ok(Arc::new(Float64Array::new(values.into(), nulls.finish())))
Copy link
Contributor

Choose a reason for hiding this comment

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

❤️ -- it is great. Again this will avoid creating a NullBuffer if the input had no nulls

@alamb alamb merged commit 5340521 into apache:main Jan 19, 2025
27 checks passed
@alamb
Copy link
Contributor

alamb commented Jan 19, 2025

Thanks again @Chen-Yuan-Lai

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Use NullBufferBuilder instead of BooleanBufferBuilder for creating Null masks
2 participants