You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because in SQL Server, the range of values for the tinyint type is from 0 to 255, which exactly matches the range of uint8, so when field.Size < 16 and field.DataType == schema.Uint, should sqlType be tinyint? Like this:
sqlserver/sqlserver.go
Lines 188 to 202 in ef8f762
Because in SQL Server, the range of values for the
tinyint
type is from0
to255
, which exactly matches the range ofuint8
, so whenfield.Size < 16
andfield.DataType == schema.Uint
, shouldsqlType
betinyint
? Like this:The text was updated successfully, but these errors were encountered: