Skip to content
Snippets Groups Projects
Verified Commit 86144a95 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

WIP: String IDs

parent c5396f1d
No related branches found
No related tags found
2 merge requests!105Release 0.11.0,!78External IDs
Pipeline #41291 failed
......@@ -34,7 +34,11 @@ public class EntityIdRegistry {
private void initCurrentMaxId() {
this.currentMaxId =
transaction.execute(new RetrieveCurrentMaxId(), transaction.getAccess()).getCurrentMaxId();
Math.max(
101,
transaction
.execute(new RetrieveCurrentMaxId(), transaction.getAccess())
.getCurrentMaxId());
}
public Integer generate() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment