MCPcopy Create free account
hub / github.com/apache/datafusion / as_union_array

Function as_union_array

datafusion/common/src/cast.rs:206–208  ·  view source on GitHub ↗

Downcast Array to NullArray

(array: &dyn Array)

Source from the content-addressed store, hash-verified

204
205// Downcast Array to NullArray
206pub fn as_union_array(array: &dyn Array) -> Result<&UnionArray> {
207 Ok(downcast_value!(array, UnionArray))
208}
209
210// Downcast Array to Time32SecondArray
211pub fn as_time32_second_array(array: &dyn Array) -> Result<&Time32SecondArray> {

Callers 3

invoke_with_argsMethod · 0.85
try_from_arrayMethod · 0.85
eq_arrayMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…