Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
akhilravuri1 committed May 19, 2020
2 parents 864a1fc + 6ccefb1 commit 9b81fc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion column.go
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ func (c *BaseColumn) Value(buf []byte) (driver.Value, error) {
return r, nil
case api.SQL_C_TYPE_TIME:
t := (*api.SQL_TIME_STRUCT)(p)
r := time.Date(0, 0, 0,
r := time.Date(1, 1, 1,
int(t.Hour),
int(t.Minute),
int(t.Second),
Expand Down

0 comments on commit 9b81fc7

Please sign in to comment.