summaryrefslogtreecommitdiff
path: root/src/database
Commit message (Expand)AuthorAgeFilesLines
* all: gofmt main repoRuss Cox2022-04-114-80/+85
* all: remove trailing blank doc comment linesRuss Cox2022-04-012-2/+0
* all: fix various doc comment formatting nitsRuss Cox2022-04-011-1/+1
* database/sql: make WAIT tests more robust, rely on waiter triggerDaniel Theophanes2022-02-162-13/+21
* database/sql: consolidate test polling loopsBryan C. Mills2022-01-131-50/+61
* all: gofmt -w -r 'interface{} -> any' srcRuss Cox2021-12-138-124/+124
* database/sql: prevent closes slices from assigning to free connPavel2021-11-112-13/+50
* database/sql: fix tx.Prepare documentationMostafa Solati2021-11-031-2/+2
* database/sql: use errors.Is when checking ErrBadConnDaniel Theophanes2021-11-034-37/+64
* database/sql: Fix idle connection reuseSteven Hartland2021-11-032-43/+130
* all: use reflect.{Pointer,PointerTo}Cuong Manh Le2021-10-262-5/+5
* all: remove some unused codeAlexander Melentyev2021-09-141-3/+0
* database/sql: improve the documentation of Conn.Rawkorzhao2021-09-041-2/+2
* 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-043-1/+85
* all: fix spellingsNaman Gera2021-04-102-3/+3
* database/sql: remove unnecessary types in composite literalsElias5062021-03-251-3/+3
* docs: clarify when APIs use context.Background.Matt T. Proud2021-03-111-0/+42
* database/sql: close driver.Connector if it implements io.CloserIvan Trubach2021-02-254-1/+28
* database: remove race in TestTxContextWaitJosh Bleecher Snyder2021-02-241-8/+7
* database/sql: fix typo in commentHein Khant Zaw2020-12-101-1/+1
* 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-282-7/+37
* database/sql: fix comment on DB.stop()Ayzat Sadykov2020-10-271-1/+1
* database/sql: shortestIdleTimeLocked correct min comparisonShinnosuke Sawada2020-08-291-0/+7
* database/sql: make Rows.Scan properly wrap underlying errorsTim Möhlmann2020-08-142-1/+39
* database/sql/driver: use correct method name "Connect" in DriverContext docsBrad Erickson2020-05-301-1/+1
* database/sql: form a complete sentence in code commentKevin Burke2020-05-081-2/+3
* database/sql: document Connect and Close may need a timeoutDaniel Theophanes2020-04-281-1/+9
* database/sql: fix incorrect function name in example_testVivian Liang2020-04-281-1/+1
* database/sql/driver: enhance driver package documentationDaniel Theophanes2020-04-271-0/+29
* database/sql: de-flake TestTxCannotCommitAfterRollbackDaniel Theophanes2020-04-222-1/+12
* database/sql: count connections expired in foreground with MaxLifetimeClosedColin2020-04-221-2/+8
* database/sql: on Tx rollback, retain connection if driver can reset sessionDaniel Theophanes2020-04-202-7/+50
* database/sql: prevent Tx statement from committing after rollbackDaniel Theophanes2020-04-203-12/+136
* database/sql: check conn expiry when returning to pool, not when handing it outDaniel Theophanes2020-04-202-1/+101
* database/sql: add test for Conn.Validator interfaceDaniel Theophanes2020-03-294-8/+39
* database/sql: add method Err on sql.RowTim Möhlmann2020-03-192-0/+26
* database/sql: fix variable name in exampleHarmen2020-03-181-1/+1
* database/sql: process all Session Resets synchronouslyDaniel Theophanes2020-03-173-78/+63
* database/sql: add SetConnMaxIdleTimeDaniel Theophanes2020-02-212-31/+149
* all: fix invalid invocations of Fatalf in goroutinesEmmanuel T Odeke2020-01-031-1/+5
* database/sql: remove forced log import from testDmitri Shuralyov2019-10-211-3/+0
* database/sql: preallocate list slice in Drivers()Julien Schmidt2019-09-301-1/+1
* all: fix typosAinar Garipov2019-09-084-5/+5
* std: remove unused bits of code all over the placeDaniel Martí2019-09-021-2/+0
* database/sql: add support for decimal interfaceDaniel Theophanes2019-06-135-7/+183
* database/sql: add Conn.Raw to expose the driver Conn safelyDaniel Theophanes2019-06-132-0/+83