pub fn array_join<T>(arr: &[T]) -> impl Iterator<Item = T>where T: Clone,
arrayJoin — flattens a Vec<T> into an iterator. In SQL this fans a single row into N rows; callers iterate this inside their scan loop.
arrayJoin
Vec<T>