liquibase.ext.cosmosdb.changelog.GetNextChangeSetSequenceValueStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-cosmosdb Show documentation
Show all versions of liquibase-cosmosdb Show documentation
Liquibase extension for Cosmos DB via Core (SQL) API
package liquibase.ext.cosmosdb.changelog;
import liquibase.ext.cosmosdb.statement.CountDocumentsInContainerStatement;
public class GetNextChangeSetSequenceValueStatement extends CountDocumentsInContainerStatement {
public static final String COMMAND_NAME = "nextChangeSetSequence";
public GetNextChangeSetSequenceValueStatement(final String containerId) {
super(containerId);
}
@Override
public String getCommandName() {
return COMMAND_NAME;
}
}