zeroshade commented on code in PR #1593:
URL: https://github.com/apache/arrow-adbc/pull/1593#discussion_r1516606441
##########
go/adbc/driver/snowflake/connection.go:
##########
@@ -408,7 +427,8 @@ func toField(name string, isnullable bool, dataType string,
numPrec, numPrecRadi
}
func toXdbcDataType(dt arrow.DataType) (xdbcType internal.XdbcDataType) {
- xdbcType = internal.XdbcDataType_XDBC_UNKNOWN_TYPE
+ // golangci-lint: ineffectual assignment to xdbcType (ineffassign)
+ // xdbcType = internal.XdbcDataType_XDBC_UNKNOWN_TYPE
Review Comment:
just remove these lines
--
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]