Skip to content

Commit 728310e

Browse files
committed
fmt
1 parent 931c583 commit 728310e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/iceberg/inheritable_metadata.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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_;

0 commit comments

Comments
 (0)