pub fn array_join<T: Clone>(arr: &[T]) -> impl Iterator<Item = T> + '_
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>