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 74058af commit 836f757Copy full SHA for 836f757
src/iceberg/util/type_util.h
@@ -27,6 +27,7 @@
27
#include <unordered_set>
28
#include <vector>
29
30
+#include "iceberg/iceberg_export.h"
31
#include "iceberg/result.h"
32
#include "iceberg/schema_field.h"
33
#include "iceberg/type_fwd.h"
@@ -129,6 +130,7 @@ class PruneColumnVisitor {
129
130
/// - All field IDs must be unique across the entire schema hierarchy
131
/// If the struct is part of a Schema, these invariants are enforced by
132
/// StructType::InitFieldById which checks for duplicate field IDs.
-std::unordered_map<int32_t, int32_t> indexParents(const StructType& root_struct);
133
+ICEBERG_EXPORT std::unordered_map<int32_t, int32_t> indexParents(
134
+ const StructType& root_struct);
135
136
} // namespace iceberg
0 commit comments