Skip to content

Commit

Permalink
feat(duckdb): implement array flatten support
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud authored and kszucs committed Nov 21, 2023
1 parent e6e995c commit 0a0eecc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ibis/backends/duckdb/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,7 @@ def _to_json_collection(t, op):
ops.TimestampDelta: _temporal_delta,
ops.ToJSONMap: _to_json_collection,
ops.ToJSONArray: _to_json_collection,
ops.ArrayFlatten: unary(sa.func.flatten),
}
)

Expand Down

0 comments on commit 0a0eecc

Please sign in to comment.