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
throwException(ErrorCodes::ICEBERG_SPECIFICATION_VIOLATION, "Missing field_id for column {}", element.name);
136
+
{
137
+
/// 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
+
}
137
142
auto it = map.find(element.field_id);
138
143
if (it == map.end())
139
144
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