Skip to content

Commit

Permalink
Removed semicolon from rollback stmt for oracle (#2564)
Browse files Browse the repository at this point in the history
  • Loading branch information
cemremengu authored and elhigu committed Jun 18, 2018
1 parent ae1245e commit 0a0ce35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transaction.js
Expand Up @@ -98,7 +98,7 @@ export default class Transaction extends EventEmitter {
}

rollback(conn, error) {
return this.query(conn, 'ROLLBACK;', 2, error)
return this.query(conn, 'ROLLBACK', 2, error)
.timeout(5000)
.catch(Promise.TimeoutError, () => {
this._rejecter(error);
Expand Down

0 comments on commit 0a0ce35

Please sign in to comment.