summaryrefslogtreecommitdiff
path: root/src/database/sql/sql_test.go
Commit message (Expand)AuthorAgeFilesLines
* 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
* database/sql: allow Stmt Query and Exec methods to open a new connDaniel Theophanes2017-05-221-1/+40
* database/sql: allow drivers to support custom arg typesDaniel Theophanes2017-05-181-0/+125
* database/sql: ensure releaseConn is defined before a possible closeDaniel Theophanes2017-04-281-0/+40
* database/sql: allow using a single connection from the databaseDaniel Theophanes2017-04-241-0/+88
* database/sql: correctly guard the query Row preventing early releaseDaniel Theophanes2017-04-121-1/+0
* database/sql: support scanning into user defined string typesDaniel Theophanes2017-03-311-0/+18
* database/sql: fix spelling mistake in testsKevin Burke2017-03-081-1/+1
* database/sql: proper prepared statement support in transactionsSarah Adams2017-03-081-0/+190
* database/sql: convert test timeouts to explicit waits with checksDaniel Theophanes2017-02-131-20/+37
* database/sql: replace the expr of timeunit * N with N * timeunit in testMikio Hara2017-02-091-7/+7
* database/sql: fix nits in testMikio Hara2017-02-091-3/+5
* database/sql: do not exhaust connection pool on conn request timeoutDaniel Theophanes2017-02-091-0/+57
* database/sql: record the context error in Rows if canceledDaniel Theophanes2017-02-081-3/+7
* database/sql: fix spelling mistakeKevin Burke2017-02-011-1/+1
* database/sql: fix race when canceling queries immediatelyDaniel Theophanes2017-01-261-8/+83
* database/sql: let tests wait for db pool to come to expected stateDaniel Theophanes2017-01-251-16/+16
* database/sql: fix typo and wordingKevin Burke2017-01-021-6/+6
* database/sql: prevent Tx.rollback from racing Tx.closeDaniel Theophanes2017-01-021-0/+48
* database/sql: do not store Tx options in ContextDaniel Theophanes2016-12-141-1/+1
* database/sql: ensure Commit and Rollback return ErrTxDoneDaniel Theophanes2016-12-011-0/+31
* database/sql: document expectations for named parametersDaniel Theophanes2016-12-011-2/+2
* database/sql: deflake query cancel testsDaniel Theophanes2016-11-301-4/+15
* database/sql: rename NamedParam to NamedArg and Param to NamedDaniel Theophanes2016-11-301-3/+3
* database/sql: do not bypass the driver locks with Context methodsDaniel Theophanes2016-11-291-4/+76
* database/sql: fix TestPendingConnsAfterErrDaniel Theophanes2016-11-221-9/+31
* database/sql: ensure all driver Stmt are closed onceDaniel Theophanes2016-11-171-1/+1
* all: don't call t.Fatal from a goroutineIan Lance Taylor2016-11-151-1/+2
* database/sql: add Pinger interface to driver ConnINADA Naoki2016-10-311-0/+44
* database/sql: fix possible context leak in testAlexander Döring2016-10-241-0/+1
* database/sql: update the conversion errors to be clearerDaniel Theophanes2016-10-211-2/+2
* database/sql: support returning query database typesDaniel Theophanes2016-10-181-0/+50
* database/sql: add option to use named parameter in query argumentsDaniel Theophanes2016-10-171-0/+47
* database/sql: add support for multiple result setsDaniel Theophanes2016-10-151-0/+76
* database/sql: close Rows when context is cancelledDaniel Theophanes2016-09-291-0/+58
* database/sql: add context methodsDaniel Theophanes2016-09-271-3/+6
* database/sql: don't hang if the driver Exec method panicsIan Lance Taylor2016-08-291-0/+47
* database/sql: deflake TestPendingConnsAfterErr and fix races, panicsBrad Fitzpatrick2016-06-281-2/+4
* all: single space after period.Brad Fitzpatrick2016-03-021-1/+1
* all: fix typos and spellingMartin Möhrmann2016-02-241-1/+1
* database/sql: guard against panics in driver.Stmt implementationRuss Cox2016-01-081-0/+40
* database/sql: Add DB.SetConnMaxLifetimeINADA Naoki2015-12-021-30/+101
* database/sql: avoid deadlock waiting for connectionsChris Hines2015-10-161-0/+61
* database/sql: fix case where Stmt.Close discards errorIan Gudger2015-10-021-0/+38
* database/sql: close bad connections in commit or rollback:Chris Hines2015-09-031-0/+71