Skip to content

Commit c09ed1b

Browse files
committed
format
1 parent 0ceabb7 commit c09ed1b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/spatial/operators/spatial_join_physical.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ class typed_view {
4242
ptr = ptr_p;
4343
len = len_p;
4444
}
45+
4546
private:
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

486486
unique_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
}

0 commit comments

Comments
 (0)