Skip to content
Closed
Show file tree
Hide file tree
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 @@ -260,6 +260,6 @@ public BufferAllocator getAllocator() {

@Override
public boolean accept(RangeEqualsVisitor visitor) {
return visitor.visit(getUnderlyingVector());
return getUnderlyingVector().accept(visitor);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,6 @@ public boolean visit(ZeroVector left) {
return validate(left);
}

public boolean visit(ValueVector left) {
throw new UnsupportedOperationException();
}

protected boolean compareValueVector(ValueVector left, ValueVector right) {
if (!typeCheckNeeded) {
return true;
Expand Down