All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.statement.SequenceNextValueFunction Maven / Gradle / Ivy

package liquibase.statement;

/**
 * Represents a function for getting the next value from a sequence
 */
public class SequenceNextValueFunction extends DatabaseFunction {

    public SequenceNextValueFunction() {
        this("UNSET");
    }

    public SequenceNextValueFunction(String sequenceName) {
        super(sequenceName);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy