We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I try to compile for GOARCH=386, I get the compile errors below. For now I'll just use amd64 instead. Is it possible to also support 386?
GOARCH=386
amd64
386
# github.com/blastrain/vitess-sqlparser/tidbparser/dependency/mysql vendor/github.com/blastrain/vitess-sqlparser/tidbparser/dependency/mysql/const.go:503:2: constant 2147483648 overflows SQLMode vendor/github.com/blastrain/vitess-sqlparser/tidbparser/dependency/mysql/const.go:504:2: constant 4294967296 overflows SQLMode vendor/github.com/blastrain/vitess-sqlparser/tidbparser/dependency/mysql/util.go:44:19: constant 4294967295 overflows int vendor/github.com/blastrain/vitess-sqlparser/tidbparser/dependency/mysql/util.go:45:19: constant 4294967295 overflows int
The text was updated successfully, but these errors were encountered:
Fixing this probably requires changing int to int64 in a couple of places?
int
int64
Sorry, something went wrong.
No branches or pull requests
When I try to compile for
GOARCH=386
, I get the compile errors below. For now I'll just useamd64
instead. Is it possible to also support386
?The text was updated successfully, but these errors were encountered: