1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

Merge e4dd277b960c2a5e5045008790c1d9c74c62ffc7 into fee38b4531224b929c095ef643a68a92bbad3d4b

This commit is contained in:
ivothgle 2025-03-29 22:27:13 +00:00 committed by GitHub
commit 096d1a729b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -20,6 +20,11 @@ import (
"github.com/gogf/gf/v2/util/gconv"
)
const (
LocalTypeIntSlice gdb.LocalType = "pq.Int32Array"
LocalTypeInt64Slice gdb.LocalType = "pq.Int64Array"
)
// ConvertValueForField converts value to database acceptable value.
func (d *Driver) ConvertValueForField(ctx context.Context, fieldType string, fieldValue interface{}) (interface{}, error) {
if g.IsNil(fieldValue) {
@ -68,11 +73,11 @@ func (d *Driver) CheckLocalTypeForField(ctx context.Context, fieldType string, f
case
"_int2",
"_int4":
return gdb.LocalTypeIntSlice, nil
return LocalTypeIntSlice, nil
case
"_int8":
return gdb.LocalTypeInt64Slice, nil
return LocalTypeInt64Slice, nil
case
"_varchar", "_text":