Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,10 @@ private static STRtree buildRTree(LongArrayList addresses, List<ObjectArrayList<
for (int position = 0; position < addresses.size(); position++) {
long pageAddress = addresses.getLong(position);
int blockIndex = decodeSliceIndex(pageAddress);
Block chennelBlock = channels.get(geometryChannel).get(blockIndex);
VariableWidthBlock block = (VariableWidthBlock) chennelBlock.getUnderlyingValueBlock();
Block channelBlock = channels.get(geometryChannel).get(blockIndex);
VariableWidthBlock block = (VariableWidthBlock) channelBlock.getUnderlyingValueBlock();
int blockPosition = decodePosition(pageAddress);
int valueBlockPosition = chennelBlock.getUnderlyingValuePosition(blockPosition);
int valueBlockPosition = channelBlock.getUnderlyingValuePosition(blockPosition);

// TODO Consider pushing is-null and is-empty checks into a filter below the join
if (block.isNull(valueBlockPosition)) {
Expand Down
Loading