Semyon Danilov created IGNITE-18882:
---------------------------------------
Summary: Fix tombstone is stored if it is the first entry of
version chain
Key: IGNITE-18882
URL: https://issues.apache.org/jira/browse/IGNITE-18882
Project: Ignite
Issue Type: Bug
Reporter: Semyon Danilov
This test in AbstractMvPartitionStorageGcTest should pass
{code:java}
void testTombstoneFirst() {
addAndCommit(null);
addAndCommit(TABLE_ROW);
addAndCommit(TABLE_ROW2);
BinaryRowAndRowId row = pollForVacuum(HybridTimestamp.MAX_VALUE);
assertRowMatches(row.binaryRow(), TABLE_ROW);
}
{code}
At this moment, storages will store the tombstone if it is the first committed
value which disrupts the GC flow
--
This message was sent by Atlassian Jira
(v8.20.10#820010)