mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-17 02:51:36 -05:00
Adding SQL Carbon edit comment (#21202)
This commit is contained in:
@@ -14,6 +14,11 @@ export class IdGenerator {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public nextId(): string {
|
public nextId(): string {
|
||||||
|
/**
|
||||||
|
* {{SQL CARBON EDIT}}
|
||||||
|
* Adding suffix at the end of id to avoid the id getting picked up by faulty
|
||||||
|
* string matching logic that only checks for id prefixes to find the match.
|
||||||
|
*/
|
||||||
return this._prefix + (++this._lastId) + '-id';
|
return this._prefix + (++this._lastId) + '-id';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user