You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Does iceberg require that parquet files have field ids?
138
-
/// Our iceberg writer currently doesn't write them.
139
-
//throw Exception(ErrorCodes::ICEBERG_SPECIFICATION_VIOLATION, "Missing field_id for column {}", element.name);
140
-
return element.name;
141
-
}
136
+
throwException(ErrorCodes::ICEBERG_SPECIFICATION_VIOLATION, "Missing field_id for column {}", element.name);
142
137
auto it = map.find(element.field_id);
143
138
if (it == map.end())
144
139
throwException(ErrorCodes::ICEBERG_SPECIFICATION_VIOLATION, "Parquet file has column {} with field_id {} that is not in datalake metadata", element.name, element.field_id);
0 commit comments