Adding SQL Carbon edit comment (#21202)

This commit is contained in:
Aasim Khan
2022-11-10 15:46:05 -08:00
committed by GitHub
parent 7ca4e2bcae
commit c8a80a5270

View File

@@ -14,6 +14,11 @@ export class IdGenerator {
}
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';
}
}