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

eq for struct #5423

Draft
wants to merge 8 commits into
base: master
Choose a base branch
from
Draft

eq for struct #5423

wants to merge 8 commits into from

Conversation

jayzhan211
Copy link
Contributor

@jayzhan211 jayzhan211 commented Feb 23, 2024

Which issue does this PR close?

Ref #5411

Rationale for this change

What changes are included in this PR?

Are there any user-facing changes?

Signed-off-by: jayzhan211 <jayzhan211@gmail.com>
@github-actions github-actions bot added the arrow Changes to the arrow crate label Feb 23, 2024
let col_l = l.column(i);
let col_r = r.column(i);
let eq_rows = compare_op(op, col_l, col_r)?;
for (j, item) in res.iter_mut().enumerate().take(len) {
Copy link
Contributor

@tustvold tustvold Feb 24, 2024

Choose a reason for hiding this comment

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

It will be faster to compute the bitwise and of the underlying buffers, than to do this element wise

Something like

let nulls = NullBuffer::union(l.nulls(), r.nulls());
let vals = l.values () & r.values();
BooleanArray::new(vals, nulls)

In combination with Iterator::fold

Copy link
Contributor Author

Choose a reason for hiding this comment

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

clippy told me to use try_fold instead, but it is so difficult to work with try_fold.

Signed-off-by: jayzhan211 <jayzhan211@gmail.com>
Signed-off-by: jayzhan211 <jayzhan211@gmail.com>
Signed-off-by: jayzhan211 <jayzhan211@gmail.com>
}
return Ok(res);
return (0..l.num_columns()).fold(
Ok(BooleanArray::from(vec![true; len])),
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
Ok(BooleanArray::from(vec![true; len])),
Ok(BooleanArray::new(BooleanBuffer::new_set(len), None)),

This will be significantly faster

Signed-off-by: jayzhan211 <jayzhan211@gmail.com>
Comment on lines 215 to 227
return (0..l.num_columns()).fold(
Ok(BooleanArray::new(BooleanBuffer::new_set(len), None)),
|res, i| {
let res = res?;
let col_l = l.column(i);
let col_r = r.column(i);
let eq_rows = compare_op(op, col_l, col_r)?;

let nulls = NullBuffer::union(res.nulls(), eq_rows.nulls());
let vals = res.values() & eq_rows.values();
Ok(BooleanArray::new(vals, nulls))
},
)
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
return (0..l.num_columns()).fold(
Ok(BooleanArray::new(BooleanBuffer::new_set(len), None)),
|res, i| {
let res = res?;
let col_l = l.column(i);
let col_r = r.column(i);
let eq_rows = compare_op(op, col_l, col_r)?;
let nulls = NullBuffer::union(res.nulls(), eq_rows.nulls());
let vals = res.values() & eq_rows.values();
Ok(BooleanArray::new(vals, nulls))
},
)
return (0..l.num_columns()).try_fold(
BooleanArray::new(BooleanBuffer::new_set(len), None),
|res, i| {
let col_l = l.column(i);
let col_r = r.column(i);
let eq_rows = compare_op(op, col_l, col_r)?;
let nulls = NullBuffer::union(res.nulls(), eq_rows.nulls());
let vals = res.values() & eq_rows.values();
Ok(BooleanArray::new(vals, nulls))
},
)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Oh, I did not return with Result Ok(BooleanArray::new(vals, nulls)), but BooleanArray::new(vals, nulls))

Signed-off-by: jayzhan211 <jayzhan211@gmail.com>
@tustvold
Copy link
Contributor

See #5408 (comment) I think we should probably start by adding support to DynComparator. In the case of StructArray there is likely still merit to having a specialized impl as in this PR as it will be significantly faster, but I think we will always need the fallback of DynComparator in order to support ListArray and friends.

Signed-off-by: jayzhan211 <jayzhan211@gmail.com>
Signed-off-by: jayzhan211 <jayzhan211@gmail.com>
@my-vegetable-has-exploded
Copy link
Contributor

may also closes #5199 & #5217 ?

@jayzhan211
Copy link
Contributor Author

may also closes #5199 & #5217 ?

yes, I didn't notice there is existing issue.

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

Successfully merging this pull request may close these issues.

None yet

3 participants