File tree 5 files changed +10
-2
lines changed
5 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ mod builder_add_stream_column;
16
16
mod builder_aggregate;
17
17
mod builder_append_table;
18
18
mod builder_async_function;
19
+ mod builder_broadcast;
19
20
mod builder_column_mutation;
20
21
mod builder_commit;
21
22
mod builder_compact;
@@ -40,7 +41,6 @@ mod builder_recluster;
40
41
mod builder_recursive_cte;
41
42
mod builder_replace_into;
42
43
mod builder_row_fetch;
43
- mod builder_broadcast;
44
44
mod builder_scalar;
45
45
mod builder_scan;
46
46
mod builder_sort;
Original file line number Diff line number Diff line change 13
13
// limitations under the License.
14
14
15
15
pub mod aggregator;
16
+ #[ allow( dead_code) ]
16
17
mod broadcast;
17
18
mod hash_join;
18
19
pub ( crate ) mod range_join;
Original file line number Diff line number Diff line change @@ -100,7 +100,6 @@ async fn join_build_state(
100
100
& join. build_projections ,
101
101
join_state. clone ( ) ,
102
102
1 ,
103
- None ,
104
103
) ?;
105
104
Ok ( build_state)
106
105
}
Original file line number Diff line number Diff line change @@ -1037,6 +1037,10 @@ impl TableContext for CtxDelegation {
1037
1037
async fn get_warehouse_cluster ( & self ) -> Result < Arc < Cluster > > {
1038
1038
todo ! ( )
1039
1039
}
1040
+
1041
+ fn get_next_broadcast_id ( & self ) -> u32 {
1042
+ self . ctx . get_next_broadcast_id ( )
1043
+ }
1040
1044
}
1041
1045
1042
1046
#[ tokio:: test( flavor = "multi_thread" ) ]
Original file line number Diff line number Diff line change @@ -396,6 +396,10 @@ impl TableContext for CtxDelegation {
396
396
todo ! ( )
397
397
}
398
398
399
+ fn get_next_broadcast_id ( & self ) -> u32 {
400
+ self . ctx . get_next_broadcast_id ( )
401
+ }
402
+
399
403
fn txn_mgr ( & self ) -> TxnManagerRef {
400
404
self . ctx . txn_mgr ( )
401
405
}
You can’t perform that action at this time.
0 commit comments