alamb opened a new pull request, #2121:
URL: https://github.com/apache/arrow-rs/pull/2121

   Fix build on master
   
   I merged https://github.com/apache/arrow-rs/pull/2094 which had a logical 
conflict which results in a build failure on master such as 
https://github.com/apache/arrow-rs/runs/7455984487?check_suite_focus=true
   
   
   ```
      Compiling arrow-integration-testing v18.0.0 
(/__w/arrow-rs/arrow-rs/integration-testing)
   error[E0308]: `match` arms have incompatible types
      --> integration-testing/src/lib.rs:645:26
       |
   628 | /                 match is_valid {
   629 | |                     1 => {
   630 | |                         let str = value.as_str().unwrap();
   631 | |                         let integer = 
BigInt::parse_bytes(str.as_bytes(), 10).unwrap();
   ...   |
   643 | |                         b.append_value(&decimal)
       | |                         ------------------------ this is found to be 
of type `std::result::Result<(), ArrowError>`
   644 | |                     }
   645 | |                     _ => b.append_null(),
       | |                          ^^^^^^^^^^^^^^^ expected enum 
`std::result::Result`, found `()`
   646 | |                 }?;
       | |_________________- `match` arms have incompatible types
       |
       = note:   expected enum `std::result::Result<(), ArrowError>`
               found unit type `()`
   ```


-- 
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]

Reply via email to