summaryrefslogtreecommitdiff
path: root/src/database/sql/sql_test.go
Commit message (Expand)AuthorAgeFilesLines
* database/sql: fix deadlock test in prepare statementDaniel Theophanes2021-06-211-1/+1
* database/sql: do not rely on timeout for deadlock testDaniel Theophanes2021-06-191-1/+2
* database/sql: add NullInt16 and NullByteAriel Mashraki2021-05-041-0/+24
* all: fix spellingsNaman Gera2021-04-101-2/+2
* database/sql: close driver.Connector if it implements io.CloserIvan Trubach2021-02-251-1/+10
* database: remove race in TestTxContextWaitJosh Bleecher Snyder2021-02-241-8/+7
* database/sql, runtime: correct *.Fatal inside goroutines in testsEmmanuel T Odeke2020-10-311-5/+15
* database/sql: fix TestTxStmtDeadlock testTzu-Chiao Yeh2020-10-291-4/+2
* database/sql: fix tx stmt deadlock when rollbackTzu-Chiao Yeh2020-10-281-0/+30
* database/sql: make Rows.Scan properly wrap underlying errorsTim Möhlmann2020-08-141-0/+35
* database/sql: de-flake TestTxCannotCommitAfterRollbackDaniel Theophanes2020-04-221-1/+5
* database/sql: on Tx rollback, retain connection if driver can reset sessionDaniel Theophanes2020-04-201-0/+30
* database/sql: prevent Tx statement from committing after rollbackDaniel Theophanes2020-04-201-0/+69
* database/sql: check conn expiry when returning to pool, not when handing it outDaniel Theophanes2020-04-201-0/+89
* database/sql: add test for Conn.Validator interfaceDaniel Theophanes2020-03-291-0/+31
* database/sql: add method Err on sql.RowTim Möhlmann2020-03-191-0/+18
* database/sql: add SetConnMaxIdleTimeDaniel Theophanes2020-02-211-0/+55
* all: fix invalid invocations of Fatalf in goroutinesEmmanuel T Odeke2020-01-031-1/+5
* all: fix typosAinar Garipov2019-09-081-1/+1
* database/sql: add support for decimal interfaceDaniel Theophanes2019-06-131-6/+6
* database/sql: add Conn.Raw to expose the driver Conn safelyDaniel Theophanes2019-06-131-0/+48
* database/sql: add NullInt32Daniel Theophanes2019-04-261-0/+13
* database/sql: check if src is nil before converting to stringDaniel Theophanes2019-04-261-1/+1
* database/sql: add NullTimeDaniel Theophanes2019-04-051-0/+15
* database/sql: add support for returning cursors to clientDaniel Theophanes2018-11-081-0/+46
* all: fix a bunch of misspellingsIgor Zhilianin2018-10-081-1/+1
* all: fix a bunch of misspellingsIgor Zhilianin2018-10-061-1/+1
* database/sql: correctly report MaxIdleClosed statDaniel Theophanes2018-10-021-0/+52
* database/sql: return context errors from Rows.ScanEric Rykwalder2018-04-111-2/+2
* all: fix misspellingsShawn Smith2018-02-201-1/+1
* database/sql: include SQL column name in Scan() error messageHaraldNordgren2018-02-131-1/+52
* database/sql: buffers provided to Rows.Next should not be modified by driversDaniel Theophanes2018-01-251-37/+3
* database/sql: allow OpenConnector in a driver.Driver interfaceDaniel Theophanes2017-11-161-0/+13
* database/sql: ensure all driver interfaces are called under single lockDaniel Theophanes2017-10-251-0/+6
* database/sql: add driver.ResetSessioner and add pool supportDaniel Theophanes2017-10-241-16/+47
* Revert "database/sql: add driver.ResetSessioner and add pool support"Russ Cox2017-10-241-45/+15
* database/sql: add driver.ResetSessioner and add pool supportDaniel Theophanes2017-10-241-15/+45
* database/sql: allow drivers to only implement Context variantsDaniel Theophanes2017-10-241-0/+121
* Revert "database/sql: prevent race in driver by locking dc in Next"Daniel Theophanes2017-10-171-7/+1
* database/sql: prevent race in driver by locking dc in NextDaniel Theophanes2017-10-131-1/+7
* database/sql: fix unreachable code in ColumnTypes testJulien Schmidt2017-10-041-6/+6
* database/sql: add OpenDB to directly create a *DB without a DSN.James Lawrence2017-09-231-6/+13
* all: fix easy-to-miss typosAgniva De Sarker2017-08-231-1/+1
* database/sql: fail on unsupported options when context is un-cancellableMatt Dee2017-08-091-0/+14
* database/sql: ensure a Stmt from a Conn executes on the same driver.ConnDaniel Theophanes2017-06-131-1/+37
* database/sql: correct level of write to same var for race detectorDaniel Theophanes2017-06-121-8/+4
* database/sql: prevent race on Rows close with Tx RollbackDaniel Theophanes2017-06-121-11/+64
* Revert "database/sql: Use Tx.ctx in Tx non-context methods"Daniel Theophanes2017-06-121-29/+0
* database/sql: Use Tx.ctx in Tx non-context methodsBulat Gaifullin2017-06-071-0/+29
* database/sql: ensure Rows is closed when Tx closesDaniel Theophanes2017-06-051-0/+26