You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I upgrade go-gorm to the latest tag (v1.25.12), i can't launch my project. I has previewed the changelog and i found an issue https://github.com/go-gorm/gorm/pull/7142/files ,which fixs a problem of memory leaks.But it had removed a field "PreparedSQL" from struct "PreparedStmtDB".
Unfortunately, gorm dbresolver is using this field currently (dbresolver.go at line 147), it seems initialed only and not referred by other function, we can remove it too.
It's confused to me, i can't upgrade gorm to the latest until the breaking change has been fixed. Could u help me, thanks a lot.
The text was updated successfully, but these errors were encountered:
GORM Playground Link
go-gorm/gorm#7142
Description
current dbresolver tag: v1.5.2
When I upgrade go-gorm to the latest tag (v1.25.12), i can't launch my project. I has previewed the changelog and i found an issue https://github.com/go-gorm/gorm/pull/7142/files ,which fixs a problem of memory leaks.But it had removed a field "PreparedSQL" from struct "PreparedStmtDB".
Unfortunately, gorm dbresolver is using this field currently (dbresolver.go at line 147), it seems initialed only and not referred by other function, we can remove it too.
It's confused to me, i can't upgrade gorm to the latest until the breaking change has been fixed. Could u help me, thanks a lot.
The text was updated successfully, but these errors were encountered: