You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Andy Grove (Jira)" <ji...@apache.org> on 2020/10/05 21:48:00 UTC

[jira] [Created] (ARROW-10181) [Rust] Arrow tests fail to compile on Raspberry Pi (ARM)

Andy Grove created ARROW-10181:
----------------------------------

             Summary: [Rust] Arrow tests fail to compile on Raspberry Pi (ARM)
                 Key: ARROW-10181
                 URL: https://issues.apache.org/jira/browse/ARROW-10181
             Project: Apache Arrow
          Issue Type: Bug
          Components: Rust
            Reporter: Andy Grove
             Fix For: 2.0.0


 
{code:java}
error: literal out of range for `usize`
   --> arrow/src/util/bit_util.rs:421:25
    |
421 |         assert_eq!(ceil(10000000000, 10), 1000000000);
    |                         ^^^^^^^^^^^
    |
    = note: `#[deny(overflowing_literals)]` on by default
    = note: the literal `10000000000` does not fit into the type `usize` whose range is `0..=4294967295`error: literal out of range for `usize`
   --> arrow/src/util/bit_util.rs:422:29
    |
422 |         assert_eq!(ceil(10, 10000000000), 1);
    |                             ^^^^^^^^^^^
    |
    = note: the literal `10000000000` does not fit into the type `usize` whose range is `0..=4294967295`error: literal out of range for `usize`
   --> arrow/src/util/bit_util.rs:423:25
    |
423 |         assert_eq!(ceil(10000000000, 1000000000), 10);
    |                         ^^^^^^^^^^^
    |
    = note: the literal `10000000000` does not fit into the type `usize` whose range is `0..=4294967295`
 {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)