<feed xmlns='http://www.w3.org/2005/Atom'>
<title>go/src/pkg/exp/sql/sql_test.go, branch main</title>
<subtitle>Fork of Go programming language with my patches.</subtitle>
<id>http://git.kilabit.info/go/atom?h=main</id>
<link rel='self' href='http://git.kilabit.info/go/atom?h=main'/>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/'/>
<updated>2012-01-20T00:04:26Z</updated>
<entry>
<title>database/sql: move from exp/sql</title>
<updated>2012-01-20T00:04:26Z</updated>
<author>
<name>Brad Fitzpatrick</name>
<email>bradfitz@golang.org</email>
</author>
<published>2012-01-20T00:04:26Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=7fc4c07172b7b6feb2da345511ad439fedaf876b'/>
<id>urn:sha1:7fc4c07172b7b6feb2da345511ad439fedaf876b</id>
<content type='text'>
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5536076
</content>
</entry>
<entry>
<title>exp/sql: rename NullableString to NullString and allow its use as a parameter</title>
<updated>2012-01-19T17:27:45Z</updated>
<author>
<name>Brad Fitzpatrick</name>
<email>bradfitz@golang.org</email>
</author>
<published>2012-01-19T17:27:45Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=bc0139b4b3d642b7ffbb55d7fbc88b4dcb1db4ec'/>
<id>urn:sha1:bc0139b4b3d642b7ffbb55d7fbc88b4dcb1db4ec</id>
<content type='text'>
Prep for Issue 2699

R=rsc
CC=golang-dev
https://golang.org/cl/5536045
</content>
</entry>
<entry>
<title>exp/sql: copy when scanning into []byte by default</title>
<updated>2012-01-17T18:44:35Z</updated>
<author>
<name>Brad Fitzpatrick</name>
<email>bradfitz@golang.org</email>
</author>
<published>2012-01-17T18:44:35Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=ebc8013edfc009b1190c656e738b15fe9729cc89'/>
<id>urn:sha1:ebc8013edfc009b1190c656e738b15fe9729cc89</id>
<content type='text'>
Fixes #2698

R=rsc
CC=golang-dev
https://golang.org/cl/5539060
</content>
</entry>
<entry>
<title>exp/sql: add time.Time support</title>
<updated>2012-01-13T23:45:05Z</updated>
<author>
<name>Brad Fitzpatrick</name>
<email>bradfitz@golang.org</email>
</author>
<published>2012-01-13T23:45:05Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=bf734d62d8210b3030757522c3e9ff581457daa4'/>
<id>urn:sha1:bf734d62d8210b3030757522c3e9ff581457daa4</id>
<content type='text'>
Fixes #2694

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5541057
</content>
</entry>
<entry>
<title>exp/sql: fix statement leak</title>
<updated>2012-01-13T23:25:07Z</updated>
<author>
<name>Brad Fitzpatrick</name>
<email>bradfitz@golang.org</email>
</author>
<published>2012-01-13T23:25:07Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=1c441e259f66bc2594cb8b0a95bf6cc0847e2bd8'/>
<id>urn:sha1:1c441e259f66bc2594cb8b0a95bf6cc0847e2bd8</id>
<content type='text'>
Also verified in external test suite that this fixes MySQL
resource exhaustion problems, and also exposed a double-free
bug in the gosqlite3 driver (where gosqlite3 either got lucky
before, or was working around this bug)

R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5544057
</content>
</entry>
<entry>
<title>sql: fix potential corruption in QueryRow.Scan into a *[]byte</title>
<updated>2012-01-12T19:23:33Z</updated>
<author>
<name>Brad Fitzpatrick</name>
<email>bradfitz@golang.org</email>
</author>
<published>2012-01-12T19:23:33Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=701f70abf6ac76fbd28c640ec49609090882f05a'/>
<id>urn:sha1:701f70abf6ac76fbd28c640ec49609090882f05a</id>
<content type='text'>
Fixes #2622

R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/5533077
</content>
</entry>
<entry>
<title>exp/sql: close Rows on EOF</title>
<updated>2012-01-10T20:51:27Z</updated>
<author>
<name>Brad Fitzpatrick</name>
<email>bradfitz@golang.org</email>
</author>
<published>2012-01-10T20:51:27Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=4435c8bf2a7d4fcc33fd15903487958590a157f9'/>
<id>urn:sha1:4435c8bf2a7d4fcc33fd15903487958590a157f9</id>
<content type='text'>
Fixes #2624

R=rsc
CC=golang-dev
https://golang.org/cl/5530068
</content>
</entry>
<entry>
<title>sql: add Rows.Columns</title>
<updated>2011-12-15T18:14:57Z</updated>
<author>
<name>Brad Fitzpatrick</name>
<email>bradfitz@golang.org</email>
</author>
<published>2011-12-15T18:14:57Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=ea51dd23b4029649427d3bcb681879808923805b'/>
<id>urn:sha1:ea51dd23b4029649427d3bcb681879808923805b</id>
<content type='text'>
Also, fix package name in error messages.

Fixes #2453

R=rsc
CC=golang-dev
https://golang.org/cl/5483088
</content>
</entry>
<entry>
<title>sql: fix missing mutex unlock in an error case</title>
<updated>2011-12-12T21:56:56Z</updated>
<author>
<name>Brad Fitzpatrick</name>
<email>bradfitz@golang.org</email>
</author>
<published>2011-12-12T21:56:56Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=06a9bc683518552991820581cb8a4cf5e6978d47'/>
<id>urn:sha1:06a9bc683518552991820581cb8a4cf5e6978d47</id>
<content type='text'>
Fixes #2542

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5483054
</content>
</entry>
<entry>
<title>sql: add Tx.Stmt to use an existing prepared stmt in a transaction</title>
<updated>2011-11-28T16:00:32Z</updated>
<author>
<name>Brad Fitzpatrick</name>
<email>bradfitz@golang.org</email>
</author>
<published>2011-11-28T16:00:32Z</published>
<link rel='alternate' type='text/html' href='http://git.kilabit.info/go/commit/?id=e77099daa2167cb394d133bd525fa5dc1c0771a8'/>
<id>urn:sha1:e77099daa2167cb394d133bd525fa5dc1c0771a8</id>
<content type='text'>
R=rsc
CC=golang-dev
https://golang.org/cl/5433059
</content>
</entry>
</feed>
