diff options
author | mattn <mattn.jp@gmail.com> | 2019-02-11 11:20:17 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-11 11:20:17 +0900 |
commit | 58039ab376ca63abd958125bf89855c6bff09cc1 (patch) | |
tree | 529e4efe0121f9d581ffe39d1ff06016ab4e103e /sqlite3.go | |
parent | Merge pull request #679 from pocke/an-a (diff) | |
parent | Print type of result (diff) | |
download | golite-58039ab376ca63abd958125bf89855c6bff09cc1.tar.gz golite-58039ab376ca63abd958125bf89855c6bff09cc1.tar.xz |
Merge pull request #692 from mattn/fix-688
Fix 688
Diffstat (limited to 'sqlite3.go')
-rw-r--r-- | sqlite3.go | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2062,9 +2062,8 @@ func (rc *SQLiteRows) Next(dest []driver.Value) error { } dest[i] = t default: - dest[i] = []byte(s) + dest[i] = s } - } } return nil |