summaryrefslogtreecommitdiff
path: root/src/database/sql/sql_test.go
Commit message (Expand)AuthorAgeFilesLines
* database/sql: make TestTxContextWaitNoDiscard test more robustDmitri Goutnik2022-07-111-30/+15
* database/sql: fix close rows error ignored in NextJinzhu2022-05-191-0/+33
* all: fix spellingJohn Bampton2022-05-171-1/+1
* database/sql: make WAIT tests more robust, rely on waiter triggerDaniel Theophanes2022-02-161-13/+18
* database/sql: consolidate test polling loopsBryan C. Mills2022-01-131-50/+61
* all: gofmt -w -r 'interface{} -> any' srcRuss Cox2021-12-131-20/+20
* database/sql: prevent closes slices from assigning to free connPavel2021-11-111-12/+49
* database/sql: use errors.Is when checking ErrBadConnDaniel Theophanes2021-11-031-1/+1
* database/sql: Fix idle connection reuseSteven Hartland2021-11-031-15/+72
* 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