jayzhan211 commented on issue #11923:
URL: https://github.com/apache/datafusion/issues/11923#issuecomment-2284262048
I remember there was a discussion about replace
ColumnarValue::Array(ArrayRef) with Recordbatch, which contains `Schema`
```rust
#[derive(Clone, Debug, PartialEq)]
pub struct RecordBatch {
schema: SchemaRef,
columns: Vec<Arc<dyn Array>>,
/// The number of rows in this RecordBatch
///
/// This is stored separately from the columns to handle the case of no
columns
row_count: usize,
}
```
Maybe Recordbatch is what we need for `invoke` 🤔
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]