Skip to content

Commit e8aa784

Browse files
committed
revert temp debug change to error messages
1 parent 6457c36 commit e8aa784

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

rust/parquet/src/reader/schema.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ impl ParquetTypeConverter {
182182
PhysicalType::DOUBLE => Ok(DataType::Float64),
183183
PhysicalType::BYTE_ARRAY => self.to_byte_array(),
184184
other => Err(ArrowError(format!(
185-
"Unable to convert parquet type d {}",
185+
"Unable to convert parquet type {}",
186186
other
187187
))),
188188
}
@@ -198,7 +198,7 @@ impl ParquetTypeConverter {
198198
LogicalType::INT_16 => Ok(DataType::Int16),
199199
LogicalType::INT_32 => Ok(DataType::Int32),
200200
other => Err(ArrowError(format!(
201-
"Unable to convert parquet logical type a {}",
201+
"Unable to convert parquet logical type {}",
202202
other
203203
))),
204204
}
@@ -210,7 +210,7 @@ impl ParquetTypeConverter {
210210
LogicalType::INT_64 => Ok(DataType::Int64),
211211
LogicalType::UINT_64 => Ok(DataType::UInt64),
212212
other => Err(ArrowError(format!(
213-
"Unable to convert parquet logical type b {}",
213+
"Unable to convert parquet logical type {}",
214214
other
215215
))),
216216
}
@@ -221,7 +221,7 @@ impl ParquetTypeConverter {
221221
LogicalType::NONE => Ok(DataType::Utf8),
222222
LogicalType::UTF8 => Ok(DataType::Utf8),
223223
other => Err(ArrowError(format!(
224-
"Unable to convert parquet logical type c {}",
224+
"Unable to convert parquet logical type {}",
225225
other
226226
))),
227227
}

0 commit comments

Comments
 (0)