We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d19c78 commit b85a9adCopy full SHA for b85a9ad
crates/iceberg/src/arrow/schema.rs
@@ -221,7 +221,7 @@ pub fn arrow_type_to_type(ty: &DataType) -> Result<Type> {
221
222
const ARROW_FIELD_DOC_KEY: &str = "doc";
223
224
-fn get_field_id(field: &Field) -> Result<i32> {
+pub(super) fn get_field_id(field: &Field) -> Result<i32> {
225
if let Some(value) = field.metadata().get(PARQUET_FIELD_ID_META_KEY) {
226
return value.parse::<i32>().map_err(|e| {
227
Error::new(
0 commit comments