Skip to content

Commit 0aa39ff

Browse files
dsmontoyajulienschmidt
authored andcommitted
Added support for custom string types in ConvertValue. (go-sql-driver#623)
* Added support for custom string types. * Add author name * Added license header * Added a newline to force a commit. * Remove newline.
1 parent 404c02a commit 0aa39ff

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Asta Xie <xiemengjun at gmail.com>
1818
Bulat Gaifullin <gaifullinbf at gmail.com>
1919
Carlos Nieto <jose.carlos at menteslibres.net>
2020
Chris Moos <chris at tech9computers.com>
21+
Daniel Montoya <dsmontoyam at gmail.com>
2122
Daniel Nichter <nil at codenode.com>
2223
Daniël van Eeden <git at myname.nl>
2324
Dave Protasowski <dprotaso at gmail.com>

statement.go

+2
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,8 @@ func (c converter) ConvertValue(v interface{}) (driver.Value, error) {
157157
return int64(u64), nil
158158
case reflect.Float32, reflect.Float64:
159159
return rv.Float(), nil
160+
case reflect.String:
161+
return rv.String(), nil
160162
}
161163
return nil, fmt.Errorf("unsupported type %T, a %s", v, rv.Kind())
162164
}

statement_test.go

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// Go MySQL Driver - A MySQL-Driver for Go's database/sql package
2+
//
3+
// Copyright 2017 The Go-MySQL-Driver Authors. All rights reserved.
4+
//
5+
// This Source Code Form is subject to the terms of the Mozilla Public
6+
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
7+
// You can obtain one at http://mozilla.org/MPL/2.0/.
8+
9+
package mysql
10+
11+
import "testing"
12+
13+
type customString string
14+
15+
func TestConvertValueCustomTypes(t *testing.T) {
16+
var cstr customString = "string"
17+
c := converter{}
18+
if _, err := c.ConvertValue(cstr); err != nil {
19+
t.Errorf("custom string type should be valid")
20+
}
21+
}

0 commit comments

Comments
 (0)