Skip to content

Commit

Permalink
Fixed hive join issue
Browse files Browse the repository at this point in the history
  • Loading branch information
RaphiMC committed Oct 29, 2024
1 parent c7ecaa5 commit 30408f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public BedrockItemType(final int blockingId, final Int2ObjectMap<IntSortedSet> b
@Override
public BedrockItem read(ByteBuf buffer) {
final int id = BedrockTypes.VAR_INT.read(buffer);
if (id == 0) {
if (id == 0 || id == -1) {
return BedrockItem.empty();
}

Expand Down

0 comments on commit 30408f7

Please sign in to comment.