Browse Source

Merge pull request #160 from go-sql-driver/typo

Typo
Julien Schmidt 12 years ago
parent
commit
c3c542b2b2
2 changed files with 2 additions and 1 deletions
  1. 1 0
      AUTHORS
  2. 1 1
      CHANGELOG.md

+ 1 - 0
AUTHORS

@@ -13,6 +13,7 @@
 
 Arne Hormann <arnehormann at gmail.com>
 Carlos Nieto <jose.carlos at menteslibres.net>
+DisposaBoy <disposaboy at dby.me>
 Hanno Braun <mail at hannobraun.com>
 James Harr <james.harr at gmail.com>
 Julien Schmidt <go-sql-driver at julienschmidt.com>

+ 1 - 1
CHANGELOG.md

@@ -5,7 +5,7 @@ Changes:
   - Go-MySQL-Driver now requires Go 1.1
   - Connections now use the collation `utf8_general_ci` by default. Adding `&charset=UTF8` to the DSN should not be necessary anymore
   - Made closing rows and connections error tolerant. This allows for example deferring rows.Close() without checking for errors
-  - `byte(nil)` is now treated as a NULL value. Before, it was treated like an empty string / `[]byte("")`
+  - `[]byte(nil)` is now treated as a NULL value. Before, it was treated like an empty string / `[]byte("")`
   - DSN parameter values must now be url.QueryEscape'ed. This allows text values to contain special characters, such as '&'.
   - Use the IO buffer also for writing. This results in zero allocations (by the driver) for most queries
   - Optimized the buffer for reading