Hello, what is the reasoning on not supporting createSequence on Azure SQL Database?
I found this code but did not find any clues online:
public boolean supportsSequences() {
try {
if (isAzureDb()) {
return false;
}
if (this.getDatabaseMajorVersion() >= 11) {
return true;
}
} catch (DatabaseException e) {
return false;
}
return false;
}
Thanks, Yateam