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

Function as_large_binary_array

datafusion/common/src/cast.rs:308–310  ·  view source on GitHub ↗

Downcast Array to LargeBinaryArray

(array: &dyn Array)

Source from the content-addressed store, hash-verified

306
307// Downcast Array to LargeBinaryArray
308pub fn as_large_binary_array(array: &dyn Array) -> Result<&LargeBinaryArray> {
309 Ok(downcast_value!(array, LargeBinaryArray))
310}
311
312// Downcast Array to FixedSizeListArray
313pub fn as_fixed_size_list_array(array: &dyn Array) -> Result<&FixedSizeListArray> {

Callers 5

spark_crc32Function · 0.85
spark_sha1Function · 0.85
compute_hexFunction · 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…