alamb opened a new issue, #6858: URL: https://github.com/apache/arrow-rs/issues/6858
**Describe the bug** CI is failing on main, apparently related to the upgrade from lexical-core 1.0.2 to lexical-core 1.0.3 https://github.com/apache/arrow-rs/actions/runs/12216285082/job/34079214477 ``` ---- writer::tests::test_write_single_batch stdout ---- thread 'writer::tests::test_write_single_batch' panicked at /Users/andrewlamb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lexical-write-integer-1.0.4/src/jeaiii.rs:304:29: range end index 20 out of range for slice of length 19 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace ---- writer::tests::test_write_multi_batches stdout ---- thread 'writer::tests::test_write_multi_batches' panicked at /Users/andrewlamb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lexical-write-integer-1.0.4/src/jeaiii.rs:304:29: range end index 20 out of range for slice of length 19 ---- writer::tests::write_arrays stdout ---- thread 'writer::tests::write_arrays' panicked at /Users/andrewlamb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lexical-write-integer-1.0.4/src/jeaiii.rs:304:29: range end index 20 out of range for slice of length 19 ---- writer::tests::write_basic_rows stdout ---- thread 'writer::tests::write_basic_rows' panicked at /Users/andrewlamb/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lexical-write-integer-1.0.4/src/jeaiii.rs:304:29: range end index 20 out of range for slice of length 19 failures: writer::tests::test_write_multi_batches writer::tests::test_write_single_batch writer::tests::write_arrays writer::tests::write_basic_rows ``` **To Reproduce** ```shell # update to get lexical-core 1.0.3 cargo update cargo test -p arrow-json --lib ``` **Expected behavior** Tests should pass **Additional context** - @jayzhan211 observed this downstream in DataFusion: https://github.com/apache/datafusion/issues/13686 - @jonahgao fixed by pinning the lexical core version: https://github.com/apache/datafusion/pull/13689 - Upstream ticket filed: https://github.com/Alexhuszagh/rust-lexical/issues/191 -- 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]
