@@ -45,8 +45,6 @@ pub struct UnresolvedShuffleExecNode {
45
45
pub stage_id : u32 ,
46
46
#[ prost( message, optional, tag = "2" ) ]
47
47
pub schema : :: core:: option:: Option < :: datafusion_proto:: protobuf:: Schema > ,
48
- #[ prost( uint32, tag = "3" ) ]
49
- pub input_partition_count : u32 ,
50
48
#[ prost( uint32, tag = "4" ) ]
51
49
pub output_partition_count : u32 ,
52
50
}
@@ -57,6 +55,9 @@ pub struct ShuffleReaderExecNode {
57
55
pub partition : :: prost:: alloc:: vec:: Vec < ShuffleReaderPartition > ,
58
56
#[ prost( message, optional, tag = "2" ) ]
59
57
pub schema : :: core:: option:: Option < :: datafusion_proto:: protobuf:: Schema > ,
58
+ /// The stage to read from
59
+ #[ prost( uint32, tag = "3" ) ]
60
+ pub stage_id : u32 ,
60
61
}
61
62
#[ allow( clippy:: derive_partial_eq_without_eq) ]
62
63
#[ derive( Clone , PartialEq , :: prost:: Message ) ]
@@ -132,10 +133,6 @@ pub mod execution_graph_stage {
132
133
pub struct UnResolvedStage {
133
134
#[ prost( uint32, tag = "1" ) ]
134
135
pub stage_id : u32 ,
135
- #[ prost( message, optional, tag = "2" ) ]
136
- pub output_partitioning : :: core:: option:: Option <
137
- :: datafusion_proto:: protobuf:: PhysicalHashRepartition ,
138
- > ,
139
136
#[ prost( uint32, repeated, tag = "3" ) ]
140
137
pub output_links : :: prost:: alloc:: vec:: Vec < u32 > ,
141
138
#[ prost( message, repeated, tag = "4" ) ]
@@ -156,10 +153,6 @@ pub struct ResolvedStage {
156
153
pub stage_id : u32 ,
157
154
#[ prost( uint32, tag = "2" ) ]
158
155
pub partitions : u32 ,
159
- #[ prost( message, optional, tag = "3" ) ]
160
- pub output_partitioning : :: core:: option:: Option <
161
- :: datafusion_proto:: protobuf:: PhysicalHashRepartition ,
162
- > ,
163
156
#[ prost( uint32, repeated, tag = "4" ) ]
164
157
pub output_links : :: prost:: alloc:: vec:: Vec < u32 > ,
165
158
#[ prost( message, repeated, tag = "5" ) ]
@@ -180,10 +173,6 @@ pub struct SuccessfulStage {
180
173
pub stage_id : u32 ,
181
174
#[ prost( uint32, tag = "2" ) ]
182
175
pub partitions : u32 ,
183
- #[ prost( message, optional, tag = "3" ) ]
184
- pub output_partitioning : :: core:: option:: Option <
185
- :: datafusion_proto:: protobuf:: PhysicalHashRepartition ,
186
- > ,
187
176
#[ prost( uint32, repeated, tag = "4" ) ]
188
177
pub output_links : :: prost:: alloc:: vec:: Vec < u32 > ,
189
178
#[ prost( message, repeated, tag = "5" ) ]
@@ -204,10 +193,6 @@ pub struct FailedStage {
204
193
pub stage_id : u32 ,
205
194
#[ prost( uint32, tag = "2" ) ]
206
195
pub partitions : u32 ,
207
- #[ prost( message, optional, tag = "3" ) ]
208
- pub output_partitioning : :: core:: option:: Option <
209
- :: datafusion_proto:: protobuf:: PhysicalHashRepartition ,
210
- > ,
211
196
#[ prost( uint32, repeated, tag = "4" ) ]
212
197
pub output_links : :: prost:: alloc:: vec:: Vec < u32 > ,
213
198
#[ prost( bytes = "vec" , tag = "5" ) ]
0 commit comments