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

fix: invalid cache key using pointer address of variable for soft time fields (#3448)

This commit is contained in:
x 2024-04-02 20:10:16 +08:00 committed by GitHub
parent 1ffb510a77
commit db5eed17b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,6 +9,7 @@ package gdb
import (
"context"
"fmt"
"strings"
"github.com/gogf/gf/v2/container/garray"
"github.com/gogf/gf/v2/errors/gcode"
@ -189,7 +190,7 @@ func (m *softTimeMaintainer) getSoftFieldNameAndType(
schema string, table string, checkFiledNames []string,
) (fieldName string, fieldType LocalType) {
var (
cacheKey = fmt.Sprintf(`getSoftFieldNameAndType:%s#%s#%p`, schema, table, checkFiledNames)
cacheKey = fmt.Sprintf(`getSoftFieldNameAndType:%s#%s#%s`, schema, table, strings.Join(checkFiledNames, "_"))
cacheDuration = gcache.DurationNoExpire
cacheFunc = func(ctx context.Context) (value interface{}, err error) {
// Ignore the error from TableFields.