Skip to content

Commit

Permalink
Merge pull request apache#797 from nathantchan/master
Browse files Browse the repository at this point in the history
Add support for tinyint
  • Loading branch information
Zariel authored Sep 27, 2016
2 parents bfab746 + be93e65 commit ffae441
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ func goType(t TypeInfo) reflect.Type {
return reflect.TypeOf(*new(int))
case TypeSmallInt:
return reflect.TypeOf(*new(int16))
case TypeTinyInt:
return reflect.TypeOf(*new(int8))
case TypeDecimal:
return reflect.TypeOf(*new(*inf.Dec))
case TypeUUID, TypeTimeUUID:
Expand Down

0 comments on commit ffae441

Please sign in to comment.