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:
parent
1ffb510a77
commit
db5eed17b1
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user