alamb commented on PR #8940: URL: https://github.com/apache/arrow-rs/pull/8940#issuecomment-3638144209
I just pushed a fix for the test failures https://github.com/apache/arrow-rs/actions/runs/19977045867/job/57295616147 ``` failures: ---- shred_variant::tests::test_variant_schema_builder_empty_path stdout ---- thread 'shred_variant::tests::test_variant_schema_builder_empty_path' (3091) panicked at parquet-variant-compute/src/shred_variant.rs:1675:9: assertion `left == right` failed left: Struct([Field { name: "", data_type: Int64, nullable: true }]) right: Int64 stack backtrace: 0: __rustc::rust_begin_unwind ``` The issue was that `VariantPath::from("")` was resulting in `VariantPath::new(vec![""])` rather than `VariantPath::new(vec![]))`. I pushed a fix in https://github.com/apache/arrow-rs/pull/8940/commits/10819906e61bc723642e30cdb37a64081a89f96f -- 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]
