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

fix(database/gdb): recognize field type tinyint(1) to golang type bool (#3921)

This commit is contained in:
John Guo 2024-11-13 23:09:01 +08:00 committed by GitHub
parent 8c6db247b2
commit 6baf4338b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -259,6 +259,10 @@ func (c *Core) CheckLocalTypeForField(ctx context.Context, fieldType string, fie
if gstr.ContainsI(fieldType, "unsigned") {
return LocalTypeUint, nil
}
// field length is 1 means boolean.
if typePattern == "1" {
return LocalTypeBool, nil
}
return LocalTypeInt, nil
case