fix: wrong execution
fixed fucntion to use Exec insted of Raw.
This commit is contained in:
parent
470681fd4f
commit
d364078acc
@ -16,7 +16,7 @@ func ExecuteRawStatement(ctx context.Context, db *gorm.DB, query string, args ..
|
|||||||
return nil, errors.New("arguments can not be nil")
|
return nil, errors.New("arguments can not be nil")
|
||||||
}
|
}
|
||||||
|
|
||||||
result, err := db.WithContext(ctx).Raw(query, args...).Rows()
|
result, err := db.WithContext(ctx).Exec(query, args...).Rows()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user