mirror of https://github.com/go-gorm/gorm.git
DryRun for RowQuery, Exec, close #3106
This commit is contained in:
parent
90a40361ed
commit
89ea62077d
|
@ -5,7 +5,7 @@ import (
|
|||
)
|
||||
|
||||
func RawExec(db *gorm.DB) {
|
||||
if db.Error == nil {
|
||||
if db.Error == nil && !db.DryRun {
|
||||
result, err := db.Statement.ConnPool.ExecContext(db.Statement.Context, db.Statement.SQL.String(), db.Statement.Vars...)
|
||||
if err != nil {
|
||||
db.AddError(err)
|
||||
|
|
|
@ -10,6 +10,7 @@ func RowQuery(db *gorm.DB) {
|
|||
BuildQuerySQL(db)
|
||||
}
|
||||
|
||||
if !db.DryRun {
|
||||
if _, ok := db.Get("rows"); ok {
|
||||
db.Statement.Dest, db.Error = db.Statement.ConnPool.QueryContext(db.Statement.Context, db.Statement.SQL.String(), db.Statement.Vars...)
|
||||
} else {
|
||||
|
@ -17,3 +18,4 @@ func RowQuery(db *gorm.DB) {
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue