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 5841811 commit 83db414Copy full SHA for 83db414
src/iceberg/manifest_list.h
@@ -160,7 +160,7 @@ struct ICEBERG_EXPORT ManifestFile {
160
int64_t first_row_id;
161
162
/// \brief Checks if this manifest file contains entries with ADDED status.
163
- bool has_added_files() const { return added_files_count.value_or(-1) > 0; }
+ 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; }
0 commit comments