Skip to content

Commit

Permalink
Check for tombstones in wrapping storage adapters (apache#16791)
Browse files Browse the repository at this point in the history
  • Loading branch information
rohangarg authored Jul 25, 2024
1 parent 14954c7 commit b5f117b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,10 @@ public Metadata getMetadata()
{
return baseStorageAdapter.getMetadata();
}

@Override
public boolean isFromTombstone()
{
return baseStorageAdapter.isFromTombstone();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,12 @@ public Metadata getMetadata()
return baseAdapter.getMetadata();
}

@Override
public boolean isFromTombstone()
{
return baseAdapter.isFromTombstone();
}

public VirtualColumn getUnnestColumn()
{
return unnestColumn;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,12 @@ public boolean canVectorize(@Nullable Filter filter, VirtualColumns virtualColum
return clauses.isEmpty() && baseAdapter.canVectorize(baseFilterAnd(filter), virtualColumns, descending);
}

@Override
public boolean isFromTombstone()
{
return baseAdapter.isFromTombstone();
}

@Nullable
@Override
public VectorCursor makeVectorCursor(
Expand Down

0 comments on commit b5f117b

Please sign in to comment.