| Age | Commit message (Collapse) | Author |
|
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5536076
|
|
Prep for Issue 2699
R=rsc
CC=golang-dev
https://golang.org/cl/5536045
|
|
Fixes #2698
R=rsc
CC=golang-dev
https://golang.org/cl/5539060
|
|
The strconv package has removed Atob, AtoF{64,32} and Ftoa.
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5540057
|
|
Fixes #2694
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5541057
|
|
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
|
|
Fixes #2622
R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/5533077
|
|
Fixes #2624
R=rsc
CC=golang-dev
https://golang.org/cl/5530068
|
|
Also, fix package name in error messages.
Fixes #2453
R=rsc
CC=golang-dev
https://golang.org/cl/5483088
|
|
Fixes #2548.
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5484062
|
|
Fixes #2542
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5483054
|
|
R=bradfitz
CC=golang-dev
https://golang.org/cl/5451112
|
|
All but 3 cases (in gcimporter.go and hixie.go)
are automatic conversions using gofix.
No attempt is made to use the new Append functions
even though there are definitely opportunities.
R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/5447069
|
|
R=rsc
CC=golang-dev
https://golang.org/cl/5433059
|
|
IIRC, package sql used to be called db. There was one occurrence
of the old name in a comment.
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5431075
|
|
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5415055
|
|
Some database driver can't get number of parameters.
For example:
http://support.microsoft.com/kb/240205/en-us
So, added way to ignore checking number of parameters with return -1.
R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/5376091
|
|
This was used in the sql package + tests, but never
documented.
R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/5372107
|
|
R=rsc
CC=golang-dev
https://golang.org/cl/5372099
|
|
There are three classes of methods/functions called Error:
a) The Error method in the just introduced error interface
b) Error methods that create or report errors (http.Error, etc)
c) Error methods that return errors previously associated with
the receiver (Tokenizer.Error, rows.Error, etc).
This CL introduces the convention that methods in case (c)
should be named Err.
The reasoning for the change is:
- The change differentiates the two kinds of APIs based on
names rather than just on signature, unloading Error a bit
- Err is closer to the err variable name that is so commonly
used with the intent of verifying an error
- Err is shorter and thus more convenient to be used often
on error verifications, such as in iterators following the
convention of the sql package.
R=bradfitz, rsc
CC=golang-dev
https://golang.org/cl/5327064
|
|
Fixes #2328 (float, bool)
R=rsc, r
CC=golang-dev
https://golang.org/cl/5294067
|
|
R=golang-dev, iant
CC=golang-dev
https://golang.org/cl/5322051
|
|
R=golang-dev, adg
CC=golang-dev
https://golang.org/cl/5327052
|
|
R=golang-dev, nigeltao
CC=golang-dev
https://golang.org/cl/5266041
|
|
R=gustavo, rsc, borman, dave, kevlar, nigeltao, dvyukov, kardianos, fw, r, r, david.crawshaw
CC=golang-dev
https://golang.org/cl/4973055
|