mirror of https://github.com/VinGarcia/ksql.git
Improve Update() to pass context to Exec
parent
733284997f
commit
c1f645216c
|
@ -247,7 +247,7 @@ func (c Client) Update(
|
|||
return err
|
||||
}
|
||||
|
||||
_, err = c.db.DB().Exec(query, params...)
|
||||
_, err = c.db.DB().ExecContext(ctx, query, params...)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue