We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbc3ceb commit 4804ccdCopy full SHA for 4804ccd
1 file changed
src/iceberg/util/type_util.h
@@ -37,8 +37,7 @@ namespace iceberg {
37
/// - All field IDs must be unique across the entire schema hierarchy
38
/// If the struct is part of a Schema, these invariants are enforced by
39
/// StructType::InitFieldById which checks for duplicate field IDs.
40
-ICEBERG_EXPORT static std::unordered_map<int32_t, int32_t> indexParents(
41
- const StructType& root_struct) {
+static std::unordered_map<int32_t, int32_t> indexParents(const StructType& root_struct) {
42
std::unordered_map<int32_t, int32_t> id_to_parent;
43
std::stack<int32_t> parent_id_stack;
44
0 commit comments