diff --git a/update.go b/update.go index 33864e9..654f8b8 100644 --- a/update.go +++ b/update.go @@ -2,6 +2,7 @@ package dbr import ( "bytes" + "context" "database/sql" "fmt" "time" @@ -206,3 +207,7 @@ func (b *UpdateBuilder) Exec() (sql.Result, error) { return result, nil } + +func (b *UpdateBuilder) ExecContext(ctx context.Context) (sql.Result, error) { + return nil, nil +}