File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ class typed_view {
4242 ptr = ptr_p;
4343 len = len_p;
4444 }
45+
4546private:
4647 T *ptr = nullptr ;
4748 size_t len = 0 ;
@@ -80,7 +81,7 @@ class FlatRTree {
8081
8182 layer_bounds.push_back (nodes);
8283
83- if (item_count_p == 0 ) {
84+ if (item_count_p == 0 ) {
8485 return ;
8586 }
8687
@@ -90,7 +91,6 @@ class FlatRTree {
9091 layer_bounds.push_back (nodes);
9192 } while (count > 1 );
9293
93-
9494 box_array_mem = alloc.Allocate (sizeof (Box) * nodes);
9595 idx_array_mem = alloc.Allocate (sizeof (uint32_t ) * nodes);
9696 row_array_mem = alloc.Allocate (sizeof (data_ptr_t ) * item_count);
@@ -484,7 +484,7 @@ class SpatialJoinLocalState final : public LocalSinkState {
484484};
485485
486486unique_ptr<LocalSinkState> PhysicalSpatialJoin::GetLocalSinkState (ExecutionContext &context) const {
487- // auto &gstate = sink_state->Cast<SpatialJoinGlobalState>();
487+ // auto &gstate = sink_state->Cast<SpatialJoinGlobalState>();
488488 auto lstate = make_uniq<SpatialJoinLocalState>(*this , context.client , layout);
489489 return std::move (lstate);
490490}
You can’t perform that action at this time.
0 commit comments