@@ -819,32 +819,20 @@ explain SELECT int_col, bigint_col, int_col+bigint_col AS sum_col FROM table1;
819819----
820820physical_plan
82182101)┌───────────────────────────┐
822- 02)│ ProjectionExec │
822+ 02)│ RepartitionExec │
82382303)│ -------------------- │
824- 04)│ bigint_col: │
825- 05)│ bigint_col │
824+ 04)│ partition_count(in->out): │
825+ 05)│ 1 -> 4 │
82682606)│ │
827- 07)│ int_col: int_col │
828- 08)│ │
829- 09)│ sum_col: │
830- 10)│ CAST(int_col AS Int64) + │
831- 11)│ bigint_col │
832- 12)└─────────────┬─────────────┘
833- 13)┌─────────────┴─────────────┐
834- 14)│ RepartitionExec │
835- 15)│ -------------------- │
836- 16)│ partition_count(in->out): │
837- 17)│ 1 -> 4 │
838- 18)│ │
839- 19)│ partitioning_scheme: │
840- 20)│ RoundRobinBatch(4) │
841- 21)└─────────────┬─────────────┘
842- 22)┌─────────────┴─────────────┐
843- 23)│ DataSourceExec │
844- 24)│ -------------------- │
845- 25)│ files: 1 │
846- 26)│ format: csv │
847- 27)└───────────────────────────┘
827+ 07)│ partitioning_scheme: │
828+ 08)│ RoundRobinBatch(4) │
829+ 09)└─────────────┬─────────────┘
830+ 10)┌─────────────┴─────────────┐
831+ 11)│ DataSourceExec │
832+ 12)│ -------------------- │
833+ 13)│ files: 1 │
834+ 14)│ format: csv │
835+ 15)└───────────────────────────┘
848836
849837query TT
850838explain select
@@ -965,31 +953,20 @@ explain SELECT int_col, bigint_col, int_col+bigint_col AS sum_col FROM table4;
965953----
966954physical_plan
96795501)┌───────────────────────────┐
968- 02)│ ProjectionExec │
956+ 02)│ RepartitionExec │
96995703)│ -------------------- │
970- 04)│ bigint_col: │
971- 05)│ bigint_col │
958+ 04)│ partition_count(in->out): │
959+ 05)│ 1 -> 4 │
97296006)│ │
973- 07)│ int_col: int_col │
974- 08)│ │
975- 09)│ sum_col: │
976- 10)│ int_col + bigint_col │
977- 11)└─────────────┬─────────────┘
978- 12)┌─────────────┴─────────────┐
979- 13)│ RepartitionExec │
980- 14)│ -------------------- │
981- 15)│ partition_count(in->out): │
982- 16)│ 1 -> 4 │
983- 17)│ │
984- 18)│ partitioning_scheme: │
985- 19)│ RoundRobinBatch(4) │
986- 20)└─────────────┬─────────────┘
987- 21)┌─────────────┴─────────────┐
988- 22)│ DataSourceExec │
989- 23)│ -------------------- │
990- 24)│ files: 1 │
991- 25)│ format: json │
992- 26)└───────────────────────────┘
961+ 07)│ partitioning_scheme: │
962+ 08)│ RoundRobinBatch(4) │
963+ 09)└─────────────┬─────────────┘
964+ 10)┌─────────────┴─────────────┐
965+ 11)│ DataSourceExec │
966+ 12)│ -------------------- │
967+ 13)│ files: 1 │
968+ 14)│ format: json │
969+ 15)└───────────────────────────┘
993970
994971
995972# Query with projection on arrow
@@ -998,32 +975,20 @@ explain SELECT int_col, bigint_col, int_col+bigint_col AS sum_col FROM table5;
998975----
999976physical_plan
100097701)┌───────────────────────────┐
1001- 02)│ ProjectionExec │
978+ 02)│ RepartitionExec │
100297903)│ -------------------- │
1003- 04)│ bigint_col: │
1004- 05)│ bigint_col │
980+ 04)│ partition_count(in->out): │
981+ 05)│ 1 -> 4 │
100598206)│ │
1006- 07)│ int_col: int_col │
1007- 08)│ │
1008- 09)│ sum_col: │
1009- 10)│ CAST(int_col AS Int64) + │
1010- 11)│ bigint_col │
1011- 12)└─────────────┬─────────────┘
1012- 13)┌─────────────┴─────────────┐
1013- 14)│ RepartitionExec │
1014- 15)│ -------------------- │
1015- 16)│ partition_count(in->out): │
1016- 17)│ 1 -> 4 │
1017- 18)│ │
1018- 19)│ partitioning_scheme: │
1019- 20)│ RoundRobinBatch(4) │
1020- 21)└─────────────┬─────────────┘
1021- 22)┌─────────────┴─────────────┐
1022- 23)│ DataSourceExec │
1023- 24)│ -------------------- │
1024- 25)│ files: 1 │
1025- 26)│ format: arrow │
1026- 27)└───────────────────────────┘
983+ 07)│ partitioning_scheme: │
984+ 08)│ RoundRobinBatch(4) │
985+ 09)└─────────────┬─────────────┘
986+ 10)┌─────────────┴─────────────┐
987+ 11)│ DataSourceExec │
988+ 12)│ -------------------- │
989+ 13)│ files: 1 │
990+ 14)│ format: arrow │
991+ 15)└───────────────────────────┘
1027992
1028993# Query with PartialSortExec.
1029994query TT
0 commit comments