aboutsummaryrefslogtreecommitdiff
path: root/src/database/sql/sql_test.go
AgeCommit message (Expand)Author
2017-09-23database/sql: add OpenDB to directly create a *DB without a DSN.James Lawrence
2017-08-23all: fix easy-to-miss typosAgniva De Sarker
2017-08-09database/sql: fail on unsupported options when context is un-cancellableMatt Dee
2017-06-13database/sql: ensure a Stmt from a Conn executes on the same driver.ConnDaniel Theophanes
2017-06-12database/sql: correct level of write to same var for race detectorDaniel Theophanes
2017-06-12database/sql: prevent race on Rows close with Tx RollbackDaniel Theophanes
2017-06-12Revert "database/sql: Use Tx.ctx in Tx non-context methods"Daniel Theophanes
2017-06-07database/sql: Use Tx.ctx in Tx non-context methodsBulat Gaifullin
2017-06-05database/sql: ensure Rows is closed when Tx closesDaniel Theophanes
2017-05-22database/sql: allow Stmt Query and Exec methods to open a new connDaniel Theophanes
2017-05-18database/sql: allow drivers to support custom arg typesDaniel Theophanes
2017-04-28database/sql: ensure releaseConn is defined before a possible closeDaniel Theophanes
2017-04-24database/sql: allow using a single connection from the databaseDaniel Theophanes
2017-04-12database/sql: correctly guard the query Row preventing early releaseDaniel Theophanes
2017-03-31database/sql: support scanning into user defined string typesDaniel Theophanes
2017-03-08database/sql: fix spelling mistake in testsKevin Burke
2017-03-08database/sql: proper prepared statement support in transactionsSarah Adams
2017-02-13database/sql: convert test timeouts to explicit waits with checksDaniel Theophanes
2017-02-09database/sql: replace the expr of timeunit * N with N * timeunit in testMikio Hara
2017-02-09database/sql: fix nits in testMikio Hara
2017-02-09database/sql: do not exhaust connection pool on conn request timeoutDaniel Theophanes
2017-02-08database/sql: record the context error in Rows if canceledDaniel Theophanes
2017-02-01database/sql: fix spelling mistakeKevin Burke
2017-01-26database/sql: fix race when canceling queries immediatelyDaniel Theophanes
2017-01-25database/sql: let tests wait for db pool to come to expected stateDaniel Theophanes
2017-01-02database/sql: fix typo and wordingKevin Burke
2017-01-02database/sql: prevent Tx.rollback from racing Tx.closeDaniel Theophanes
2016-12-14database/sql: do not store Tx options in ContextDaniel Theophanes
2016-12-01database/sql: ensure Commit and Rollback return ErrTxDoneDaniel Theophanes
2016-12-01database/sql: document expectations for named parametersDaniel Theophanes
2016-11-30database/sql: deflake query cancel testsDaniel Theophanes
2016-11-30database/sql: rename NamedParam to NamedArg and Param to NamedDaniel Theophanes
2016-11-29database/sql: do not bypass the driver locks with Context methodsDaniel Theophanes
2016-11-22database/sql: fix TestPendingConnsAfterErrDaniel Theophanes
2016-11-17database/sql: ensure all driver Stmt are closed onceDaniel Theophanes
2016-11-15all: don't call t.Fatal from a goroutineIan Lance Taylor
2016-10-31database/sql: add Pinger interface to driver ConnINADA Naoki
2016-10-24database/sql: fix possible context leak in testAlexander Döring
2016-10-21database/sql: update the conversion errors to be clearerDaniel Theophanes
2016-10-18database/sql: support returning query database typesDaniel Theophanes
2016-10-17database/sql: add option to use named parameter in query argumentsDaniel Theophanes
2016-10-15database/sql: add support for multiple result setsDaniel Theophanes
2016-09-29database/sql: close Rows when context is cancelledDaniel Theophanes
2016-09-27database/sql: add context methodsDaniel Theophanes
2016-08-29database/sql: don't hang if the driver Exec method panicsIan Lance Taylor
2016-06-28database/sql: deflake TestPendingConnsAfterErr and fix races, panicsBrad Fitzpatrick
2016-03-02all: single space after period.Brad Fitzpatrick
2016-02-24all: fix typos and spellingMartin Möhrmann
2016-01-08database/sql: guard against panics in driver.Stmt implementationRuss Cox
2015-12-02database/sql: Add DB.SetConnMaxLifetimeINADA Naoki