Fix compilation on 32-bit platform

fixes #295
pull/306/head
Jack Christensen 2017-08-03 14:17:28 -05:00
parent 511b90478f
commit d49a78dd73
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ func convertSimpleArgument(ci *pgtype.ConnInfo, arg interface{}) (interface{}, e
}
return int64(arg), nil
case uint:
if arg > math.MaxInt64 {
if uint64(arg) > math.MaxInt64 {
return nil, errors.Errorf("arg too big for int64: %v", arg)
}
return int64(arg), nil