vegarsti commented on code in PR #8069:
URL: https://github.com/apache/arrow-rs/pull/8069#discussion_r2576146754
##########
parquet/src/arrow/arrow_writer/mod.rs:
##########
@@ -1297,6 +1343,12 @@ fn write_leaf(writer: &mut ColumnWriter<'_>, levels:
&ArrayLevels) -> Result<usi
write_primitive(typed, array.values(), levels)
}
},
+ ArrowDataType::RunEndEncoded(_run_ends, _values) => {
+ Err(ParquetError::NYI(
+ "Int64ColumnWriter: Attempting to write an Arrow REE
type that is not yet implemented"
Review Comment:
Agreed!
##########
parquet/src/arrow/arrow_writer/mod.rs:
##########
@@ -1371,6 +1423,12 @@ fn write_leaf(writer: &mut ColumnWriter<'_>, levels:
&ArrayLevels) -> Result<usi
let array = column.as_primitive::<Float16Type>();
get_float_16_array_slice(array, indices)
}
+ ArrowDataType::RunEndEncoded(_run_ends, _values) => {
+ return Err(ParquetError::NYI(
+ "FixedLenByteArrayColumnWriter: Attempting to write an
Arrow REE type that is not yet implemented"
Review Comment:
Agreed!
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]