不要怂,就是干,撸起袖子干!

Commit 5c3b4e3b by Karthic Madanagopal Committed by Sushant

fix(mssql/transaction): name is too long when using more than 9 savepoints (#8717)

1 parent af7fd1df
Showing with 1 additions and 1 deletions
......@@ -40,7 +40,7 @@ class Transaction {
if (this.parent) {
this.id = this.parent.id;
this.parent.savepoints.push(this);
this.name = this.id + '-savepoint-' + this.parent.savepoints.length;
this.name = this.id + '-sp-' + this.parent.savepoints.length;
} else {
this.id = this.name = generateTransactionId();
}
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!