File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -44,16 +44,16 @@ Status BaseInheritableMetadata::Apply(ManifestEntry& entry) {
4444 // In v1 tables, the data sequence number is not persisted and can be safely defaulted
4545 // to 0.
4646 // In v2 tables, the data sequence number should be inherited iff the entry status
47- // is ADDED
47+ // is ADDED.
4848 if (!entry.sequence_number .has_value () &&
4949 (sequence_number_ == 0 || entry.status == ManifestStatus::kAdded )) {
5050 entry.sequence_number = sequence_number_;
5151 }
5252
5353 // In v1 tables, the file sequence number is not persisted and can be safely defaulted
5454 // to 0.
55- // In v2 tables, the file sequence number should be inherited iff the entry status
56- // is ADDED
55+ // In v2 tables, the file sequence number should be inherited iff the entry status
56+ // is ADDED.
5757 if (!entry.file_sequence_number .has_value () &&
5858 (sequence_number_ == 0 || entry.status == ManifestStatus::kAdded )) {
5959 entry.file_sequence_number = sequence_number_;
You can’t perform that action at this time.
0 commit comments