forked from mirror/go-sqlcipher
fix typo in doc comment (#770)
This commit is contained in:
parent
b4f5cc77d1
commit
53cff3fceb
|
@ -913,7 +913,7 @@ func (c *SQLiteConn) begin(ctx context.Context) (driver.Tx, error) {
|
||||||
// - rwc
|
// - rwc
|
||||||
// - memory
|
// - memory
|
||||||
//
|
//
|
||||||
// shared
|
// cache
|
||||||
// SQLite Shared-Cache Mode
|
// SQLite Shared-Cache Mode
|
||||||
// https://www.sqlite.org/sharedcache.html
|
// https://www.sqlite.org/sharedcache.html
|
||||||
// Values:
|
// Values:
|
||||||
|
@ -1910,7 +1910,7 @@ func (s *SQLiteStmt) exec(ctx context.Context, args []namedValue) (driver.Result
|
||||||
resultCh <- result{r, err}
|
resultCh <- result{r, err}
|
||||||
}()
|
}()
|
||||||
select {
|
select {
|
||||||
case rv := <- resultCh:
|
case rv := <-resultCh:
|
||||||
return rv.r, rv.err
|
return rv.r, rv.err
|
||||||
case <-ctx.Done():
|
case <-ctx.Done():
|
||||||
select {
|
select {
|
||||||
|
@ -2011,7 +2011,7 @@ func (rc *SQLiteRows) Next(dest []driver.Value) error {
|
||||||
resultCh <- rc.nextSyncLocked(dest)
|
resultCh <- rc.nextSyncLocked(dest)
|
||||||
}()
|
}()
|
||||||
select {
|
select {
|
||||||
case err := <- resultCh:
|
case err := <-resultCh:
|
||||||
return err
|
return err
|
||||||
case <-rc.ctx.Done():
|
case <-rc.ctx.Done():
|
||||||
select {
|
select {
|
||||||
|
|
Loading…
Reference in New Issue