MCPcopy Create free account
hub / github.com/acking-you/static_flow / int32_array

Function int32_array

crates/store/src/lancedb_api.rs:3095–3100  ·  view source on GitHub ↗
(batch: &'a RecordBatch, name: &str)

Source from the content-addressed store, hash-verified

3093}
3094
3095fn int32_array<'a>(batch: &'a RecordBatch, name: &str) -> Result<&'a arrow_array::Int32Array> {
3096 column(batch, name)?
3097 .as_any()
3098 .downcast_ref::<Int32Array>()
3099 .with_context(|| format!("column {name} is not Int32Array"))
3100}
3101
3102fn timestamp_ms_array<'a>(
3103 batch: &'a RecordBatch,

Callers 3

batches_to_article_listFunction · 0.70
batches_to_articlesFunction · 0.70

Calls 2

columnFunction · 0.85
with_contextMethod · 0.45

Tested by

no test coverage detected