Skip to content

Commit 74b63c7

Browse files
committed
db.Now() returns time.Now() in case of an error
1 parent 2f785c1 commit 74b63c7

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

db/query.go

+7-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,13 @@ import (
1616
// function for the current connection.
1717
// Useful for getting the timestamp of a
1818
// SQL transaction for use in Go code.
19-
func Now(ctx context.Context) (time.Time, error) {
20-
return Conn(ctx).Now()
19+
// Returns time.Now() in case of an error.
20+
func Now(ctx context.Context) time.Time {
21+
now, err := Conn(ctx).Now()
22+
if err != nil {
23+
return time.Now()
24+
}
25+
return now
2126
}
2227

2328
// Exec executes a query with optional args.

0 commit comments

Comments
 (0)