-
Notifications
You must be signed in to change notification settings - Fork 825
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
change concat_batches
parameter to non owned reference
#3480
Conversation
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.
Thank you @askoa
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.
Thank you @askoa
Benchmark runs are scheduled for baseline = b39a20a and contender = d325ad2. d325ad2 is a master commit associated with this PR. Results will be available as each benchmark for each run completes. |
Which issue does this PR close?
Closes #3456
Are there any user-facing changes?
The users will be able to call
concat_batches
function by passing non owned references toRecordBatch
No breaking changes. Rust magically converts
&[T]
toimpl IntoIterator <Item=&RecordBatch>
while callingconcat_batches
function. So existing code callingconcat_batches
need no change.