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
In https://github.com/go-gorp/gorp/blob/main/dialect_snowflake_test.go, there is a test case for checking the SQL type of []uint8{1}, except bytea is not a supported type by Snowflake: https://docs.snowflake.com/en/sql-reference/intro-summary-data-types.
[]uint8{1}
bytea
If updated to binary instead of bytea, this test will pass.
binary
The text was updated successfully, but these errors were encountered:
Pending PR: #452
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
In https://github.com/go-gorp/gorp/blob/main/dialect_snowflake_test.go, there is a test case for checking the SQL type of
[]uint8{1}
, exceptbytea
is not a supported type by Snowflake: https://docs.snowflake.com/en/sql-reference/intro-summary-data-types.If updated to
binary
instead ofbytea
, this test will pass.The text was updated successfully, but these errors were encountered: