kalebskeithley commented on issue #36856:
URL: https://github.com/apache/arrow/issues/36856#issuecomment-1658254916
> Hmm... Does this work...?
>
> ```diff
> diff --git a/cpp/src/arrow/util/decimal_internal.h
b/cpp/src/arrow/util/decimal_internal.h
> index 041aac4ef..13fc59d53 100644
> --- a/cpp/src/arrow/util/decimal_internal.h
> +++ b/cpp/src/arrow/util/decimal_internal.h
> @@ -190,10 +190,10 @@ constexpr BasicDecimal128
kDecimal128HalfPowersOfTen[] = {
>
> #if ARROW_LITTLE_ENDIAN
> #define BasicDecimal256FromLE(v1, v2, v3, v4) \
> - BasicDecimal256(std::array<uint64_t, 4>{v1, v2, v3, v4})
> + BasicDecimal256((std::array<uint64_t, 4>{v1, v2, v3, v4}))
> #else
> #define BasicDecimal256FromLE(v1, v2, v3, v4) \
> - BasicDecimal256(std::array<uint64_t, 4>{v4, v3, v2, v1})
> + BasicDecimal256((std::array<uint64_t, 4>{v4, v3, v2, v1}))
> #endif
>
> constexpr BasicDecimal256 kDecimal256PowersOfTen[76 + 1] = {
> ```
Nope. (I think I had tried that, but honestly don't remember.)
Full build log available (for a little while) at
https://kojipkgs.fedoraproject.org//work/tasks/4979/104174979/build.log
--
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]