New comment by leahneukirchen on void-packages repository https://github.com/void-linux/void-packages/pull/45023#issuecomment-1712534308 Comment: This fixes compilation on 32-bit, feel free to upstream: ``` --- sq-0.42.0/libsq/ast/render/range.go.orig +++ sq-0.42.0/libsq/ast/render/range.go @@ -27,7 +27,7 @@ if rr.Limit == -1 { // MySQL requires a LIMIT if OFFSET is used. Therefore // we make the LIMIT a very large number - limit = fmt.Sprintf("LIMIT %d", math.MaxInt64) + limit = fmt.Sprintf("LIMIT %d", uint64(math.MaxInt64)) } } ```