andygrove opened a new issue, #4358:
URL: https://github.com/apache/datafusion-comet/issues/4358
### What is the problem the feature request solves?
### Is your feature request related to a problem or challenge?
DataFusion uses `ColumnarValue` to represent Arrays and Scalars.
```rust
#[derive(Clone, Debug)]
pub enum ColumnarValue {
/// Array of values
Array(ArrayRef),
/// A single value
Scalar(ScalarValue),
}
```
Perhaps we should use this in the UDF signatures. This avoids the need to
pass in row counts (see https://github.com/apache/datafusion-java/pull/57).
### Describe the solution you'd like
_No response_
### Describe alternatives you've considered
_No response_
### Additional context
_No response_
### Describe the potential solution
_No response_
### Additional context
_No response_
--
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]