We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f785c1 commit 74b63c7Copy full SHA for 74b63c7
db/query.go
@@ -16,8 +16,13 @@ import (
16
// function for the current connection.
17
// Useful for getting the timestamp of a
18
// SQL transaction for use in Go code.
19
-func Now(ctx context.Context) (time.Time, error) {
20
- return Conn(ctx).Now()
+// Returns time.Now() in case of an error.
+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
26
}
27
28
// Exec executes a query with optional args.
0 commit comments