motuwe
Results
2
issues of
motuwe

当 result 为 nil 时,会导致 panic 比如 MySQL max_allowed_packet 默认为 64MB,如果数据包长度超过 64MB,则会导致 panic。可复现示例如下 ```go package main import ( "log" "strings" "time" "gorm.io/driver/mysql" "gorm.io/gorm" "gorm.io/sharding" ) type Foo struct { ID...