mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 03:05:05 +08:00
perf(contrib/drivers/pgsql): improve conversion performace for slice string (#4046)
This commit is contained in:
parent
e7fdf82dd8
commit
67a9db9e3e
@ -128,7 +128,7 @@ func (d *Driver) ConvertValueForLocal(ctx context.Context, fieldType string, fie
|
||||
if err := result.Scan(fieldValue); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return result, nil
|
||||
return []string(result), nil
|
||||
|
||||
default:
|
||||
return d.Core.ConvertValueForLocal(ctx, fieldType, fieldValue)
|
||||
|
Loading…
x
Reference in New Issue
Block a user