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

liquibase.statement.SequenceNextValueFunction Maven / Gradle / Ivy

There is a newer version: 4.28.0
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy