summaryrefslogtreecommitdiff
path: root/src/database
Commit message (Expand)AuthorAgeFilesLines
* database/sql,testing/quick: use reflect.Value.SetZeroDaniel Martí2023-04-041-1/+1
* database/sql: remove a distracting alloc, use atomic.BoolBrad Fitzpatrick2023-03-142-6/+47
* database/sql: add a missing period to end of sentence in Rows.Scan docsBrad Fitzpatrick2022-11-141-1/+1
* database: use bytes.Clonecuiweixie2022-09-281-12/+4
* database: convert DB.{waitDuration,numClosed} to atomic typecuiweixie2022-09-151-10/+9
* database: convert Tx.done to atomic typecuiweixie2022-09-081-7/+6
* database/sql: simplify retry logic when the connection is badJinzhu2022-09-071-96/+64
* database/sql: make TestTxContextWaitNoDiscard test more robustDmitri Goutnik2022-07-111-30/+15
* database/sql/driver: fix typo in driver.gomstmdev2022-06-041-4/+4
* database/sql: fix close rows error ignored in NextJinzhu2022-05-193-1/+39
* all: fix spellingJohn Bampton2022-05-171-1/+1
* all: fix spellingJohn Bampton2022-05-171-1/+1
* database/sql: follow convention for field namingJinzhu2022-05-141-3/+2
* all: fix some lint issuesRyan Leung2022-05-081-4/+2
* 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