Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/coerce-arrays-inner-types' into …
Browse files Browse the repository at this point in the history
…coerce-arrays-inner-types
  • Loading branch information
blaginin committed Nov 20, 2024
2 parents 1692229 + a3052be commit 5d39c20
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions datafusion/sqllogictest/test_files/array.slt
Original file line number Diff line number Diff line change
Expand Up @@ -1161,6 +1161,12 @@ select make_array(make_array(1), arrow_cast(make_array(-1), 'LargeList(Int8)'))
----
[[1], [-1]]

query T
select arrow_typeof(make_array(make_array(1), arrow_cast(make_array(-1), 'LargeList(Int8)')));
----
List(Field { name: "item", data_type: LargeList(Field { name: "item", data_type: Int64, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }), nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} })


query ???
select make_array(column1),
make_array(column1, column5),
Expand Down

0 comments on commit 5d39c20

Please sign in to comment.