tustvold commented on code in PR #5875: URL: https://github.com/apache/arrow-rs/pull/5875#discussion_r1640368376
########## parquet/src/arrow/arrow_writer/mod.rs: ########## @@ -107,6 +107,20 @@ mod levels; /// } /// ``` /// +/// ## Type Support +/// +/// The writer supports writing all Arrow [`DataType`]s that have a direct mapping to +/// Parquet types including [`StructArray`] and [`ListArray`]. +/// +/// The following are not supported: +/// +/// * [`IntervalMonthDayNanoArray`]: Parquet does not [support nanosecond intervals]. +/// Review Comment: Date64 is also not supported IIRC -- 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]
