ClSlaid commented on code in PR #9755:
URL: https://github.com/apache/arrow-rs/pull/9755#discussion_r3345761751
##########
arrow-select/src/coalesce.rs:
##########
@@ -145,6 +149,19 @@ pub struct BatchCoalescer {
completed: VecDeque<RecordBatch>,
/// Biggest coalesce batch size. See
[`Self::with_biggest_coalesce_batch_size`]
biggest_coalesce_batch_size: Option<usize>,
+ /// Inline view columns eligible for the fused filter path.
+ inline_view_columns: Option<InlineViewColumns>,
+}
+
+/// Inline Utf8View/BinaryView columns in a schema.
+///
+/// These columns can copy filtered views directly into the coalescer without
Review Comment:
Oh no, it does work. Iterating over column types in `RecordBatch`es do cost
about 5%-6% time.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]