You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Arrow integration tests assume that c_char = i8. While this is true on most platforms, there are many where it is not true (such as arm linux and risc-v linux). This causes a compilation failure in arrow-integration-testing
To Reproduce
Compile on a target where c_char = u8 (e.g. aarch64-unknown-linux-gnu)
Expected behavior
It should compile fine
Additional context
I'll file a PR to fix this.
The text was updated successfully, but these errors were encountered:
Describe the bug
Arrow integration tests assume that
c_char
=i8
. While this is true on most platforms, there are many where it is not true (such as arm linux and risc-v linux). This causes a compilation failure in arrow-integration-testingTo Reproduce
Compile on a target where
c_char
=u8
(e.g.aarch64-unknown-linux-gnu
)Expected behavior
It should compile fine
Additional context
I'll file a PR to fix this.
The text was updated successfully, but these errors were encountered: