vegarsti commented on code in PR #8069: URL: https://github.com/apache/arrow-rs/pull/8069#discussion_r2265126444
########## parquet/src/arrow/arrow_writer/levels.rs: ########## @@ -222,6 +222,10 @@ impl LevelInfoBuilder { _ => unreachable!(), }) } + DataType::RunEndEncoded(_, v) if is_leaf(v.data_type()) => { + let levels = ArrayLevels::new(parent_ctx, is_nullable, array.clone()); + Ok(Self::Primitive(levels)) + } Review Comment: Exactly same as Dictionary above: https://github.com/apache/arrow-rs/blob/04f217b6708eed2804c3b0a669a65ea111c2c5f1/parquet/src/arrow/arrow_writer/levels.rs#L157-L160 -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org