Skip to content

Commit 33fc33b

Browse files
authored
add support custom type Nullfloat64 (go-xorm#1450)
1 parent 57a49c6 commit 33fc33b

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

session_convert.go

+10
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ func (session *Session) byte2Time(col *core.Column, data []byte) (outTime time.T
8484
return session.str2Time(col, string(data))
8585
}
8686

87+
var (
88+
nullFloatType = reflect.TypeOf(sql.NullFloat64{})
89+
)
90+
8791
// convert a db data([]byte) to a field value
8892
func (session *Session) bytes2Value(col *core.Column, fieldValue *reflect.Value, data []byte) error {
8993
if structConvert, ok := fieldValue.Addr().Interface().(core.Conversion); ok {
@@ -583,6 +587,12 @@ func (session *Session) value2Interface(col *core.Column, fieldValue reflect.Val
583587
t := fieldValue.Convert(core.TimeType).Interface().(time.Time)
584588
tf := session.engine.formatColTime(col, t)
585589
return tf, nil
590+
} else if fieldType.ConvertibleTo(nullFloatType) {
591+
t := fieldValue.Convert(nullFloatType).Interface().(sql.NullFloat64)
592+
if !t.Valid {
593+
return nil, nil
594+
}
595+
return t.Float64, nil
586596
}
587597

588598
if !col.SQLType.IsJson() {

session_test.go

+22
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
package xorm
66

77
import (
8+
"database/sql"
89
"testing"
910

1011
"github.com/stretchr/testify/assert"
@@ -21,3 +22,24 @@ func TestClose(t *testing.T) {
2122
sess2.Close()
2223
assert.True(t, sess2.IsClosed())
2324
}
25+
26+
func TestNullFloatStruct(t *testing.T) {
27+
type MyNullFloat64 sql.NullFloat64
28+
29+
type MyNullFloatStruct struct {
30+
Uuid string
31+
Amount MyNullFloat64
32+
}
33+
34+
assert.NoError(t, prepareEngine())
35+
assert.NoError(t, testEngine.Sync2(new(MyNullFloatStruct)))
36+
37+
_, err := testEngine.Insert(&MyNullFloatStruct{
38+
Uuid: "111111",
39+
Amount: MyNullFloat64(sql.NullFloat64{
40+
Float64: 0.1111,
41+
Valid: true,
42+
}),
43+
})
44+
assert.NoError(t, err)
45+
}

0 commit comments

Comments
 (0)