mirror of
https://gitee.com/johng/gf.git
synced 2024-12-03 12:47:50 +08:00
44 lines
968 B
Go
44 lines
968 B
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package clickhouse
|
|
|
|
import (
|
|
"github.com/shopspring/decimal"
|
|
"testing"
|
|
|
|
"github.com/gogf/gf/v2/container/gvar"
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
"github.com/gogf/gf/v2/test/gtest"
|
|
"github.com/gogf/gf/v2/util/gconv"
|
|
)
|
|
|
|
func Test_Issue2584(t *testing.T) {
|
|
type TDecimal struct {
|
|
F1 *decimal.Decimal `json:"f1"`
|
|
}
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
|
var (
|
|
p1 = TDecimal{}
|
|
data1 = g.Map{"f1": gvar.New(1111.111)}
|
|
err = gconv.Scan(data1, &p1)
|
|
)
|
|
t.AssertNil(err)
|
|
t.Assert(p1.F1, 1111.111)
|
|
})
|
|
|
|
gtest.C(t, func(t *gtest.T) {
|
|
var (
|
|
p2 = TDecimal{}
|
|
data2 = g.Map{"f1": gvar.New("2222.222")}
|
|
err = gconv.Scan(data2, &p2)
|
|
)
|
|
t.AssertNil(err)
|
|
t.Assert(p2.F1, 2222.222)
|
|
})
|
|
}
|