fix bug that empty query in transaction (#801)

master
Kevin Wan 3 years ago committed by GitHub
parent 9ccb997ed8
commit 5b22823018
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -30,7 +30,8 @@ func (t txSession) Prepare(q string) (StmtSession, error) {
}
return statement{
stmt: stmt,
query: q,
stmt: stmt,
}, nil
}

Loading…
Cancel
Save