Merge 24679618ad442e36f0b5104d1dc2cb68d5f91007 into 8e7ab46c1b865386bbb8f5322d64880ee5ce6f40

This commit is contained in:
Sławomir Wojtasiak 2025-05-25 02:19:49 +05:30 committed by GitHub
commit 862624b1b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 16 additions and 4 deletions

View File

@ -86,6 +86,10 @@ func Create(config *Config) func(db *gorm.DB) {
)
if db.AddError(err) == nil {
defer func() {
// Make sure it's processed and errors are taken into account.
if !rows.Next() {
db.AddError(rows.Err())
}
db.AddError(rows.Close())
}()
gorm.Scan(rows, db, mode)

View File

@ -166,6 +166,10 @@ func Delete(config *Config) func(db *gorm.DB) {
if rows, err := db.Statement.ConnPool.QueryContext(db.Statement.Context, db.Statement.SQL.String(), db.Statement.Vars...); db.AddError(err) == nil {
gorm.Scan(rows, db, mode)
// Make sure it's processed and errors are taken into account.
if !rows.Next() {
db.AddError(rows.Err())
}
db.AddError(rows.Close())
}
}

View File

@ -22,6 +22,10 @@ func Query(db *gorm.DB) {
return
}
defer func() {
// Make sure it's processed and errors are taken into account.
if !rows.Next() {
db.AddError(rows.Err())
}
db.AddError(rows.Close())
}()
gorm.Scan(rows, db, 0)

View File

@ -91,6 +91,10 @@ func Update(config *Config) func(db *gorm.DB) {
db.Statement.Dest = db.Statement.ReflectValue.Addr().Interface()
gorm.Scan(rows, db, mode)
db.Statement.Dest = dest
// Make sure it's processed and errors are taken into account.
if !rows.Next() {
db.AddError(rows.Err())
}
db.AddError(rows.Close())
}
} else {

View File

@ -350,10 +350,6 @@ func Scan(rows Rows, db *DB, mode ScanMode) {
}
}
if err := rows.Err(); err != nil && err != db.Error {
db.AddError(err)
}
if db.RowsAffected == 0 && db.Statement.RaiseErrorOnNotFound && db.Error == nil {
db.AddError(ErrRecordNotFound)
}