1
0
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:
ninjashixuan 2024-12-17 21:45:38 +08:00 committed by GitHub
parent e7fdf82dd8
commit 67a9db9e3e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)