Skip to content

Commit a3e37bf

Browse files
committed
fix slt
1 parent 659c1b0 commit a3e37bf

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

datafusion/sqllogictest/test_files/explain_tree.slt

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1017,8 +1017,37 @@ physical_plan
10171017

10181018

10191019
# Query with projection on arrow
1020-
query error DataFusion error: Error during planning: Cannot coerce arithmetic expression Int64 \+ Utf8View to valid types
1020+
query TT
10211021
explain SELECT int_col, bigint_col, int_col+bigint_col AS sum_col FROM table5;
1022+
----
1023+
physical_plan
1024+
01)┌───────────────────────────┐
1025+
02)│ ProjectionExec │
1026+
03)│ -------------------- │
1027+
04)│ bigint_col: │
1028+
05)│ bigint_col │
1029+
06)│ │
1030+
07)│ int_col: int_col │
1031+
08)│ │
1032+
09)│ sum_col: │
1033+
10)│ CAST(int_col AS Int64) + │
1034+
11)│ bigint_col │
1035+
12)└─────────────┬─────────────┘
1036+
13)┌─────────────┴─────────────┐
1037+
14)│ RepartitionExec │
1038+
15)│ -------------------- │
1039+
16)│ partition_count(in->out): │
1040+
17)│ 1 -> 4 │
1041+
18)│ │
1042+
19)│ partitioning_scheme: │
1043+
20)│ RoundRobinBatch(4) │
1044+
21)└─────────────┬─────────────┘
1045+
22)┌─────────────┴─────────────┐
1046+
23)│ DataSourceExec │
1047+
24)│ -------------------- │
1048+
25)│ files: 1 │
1049+
26)│ format: arrow │
1050+
27)└───────────────────────────┘
10221051

10231052
# Query with PartialSortExec.
10241053
query TT

0 commit comments

Comments
 (0)