Skip to content

Commit

Permalink
Revert "Unsure: think only currently populated needed
Browse files Browse the repository at this point in the history
This reverts commit f9dcc30.
  • Loading branch information
Sunjeet committed Jul 6, 2023
1 parent f9dcc30 commit 4b9e7fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ private void populateAllCurrentRecordKeysIntoIndex(HollowObjectTypeReadState typ
final int maxLength = Math.max(previousOrdinals.length(), populatedOrdinals.length());

for (int i = 0; i < maxLength; i++) {
if (populatedOrdinals.get(i))
if (populatedOrdinals.get(i) || previousOrdinals.get(i))
writeKeyObject(typeState, i, false);
}
}
Expand Down

0 comments on commit 4b9e7fc

Please sign in to comment.