We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83db414 commit b3b6550Copy full SHA for b3b6550
src/iceberg/manifest_list.h
@@ -163,7 +163,7 @@ struct ICEBERG_EXPORT ManifestFile {
163
bool has_added_files() const { return added_files_count.value_or(1) > 0; }
164
165
/// \brief Checks if this manifest file contains entries with EXISTING status.
166
- bool has_existing_files() const { return existing_files_count.value_or(-1) > 0; }
+ bool has_existing_files() const { return existing_files_count.value_or(1) > 0; }
167
168
/// \brief Checks if this manifest file contains entries with DELETED status
169
bool has_deleted_files() const { return deleted_files_count.value_or(-1) > 0; }
0 commit comments