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

liquibase.statement.core.RawCompoundStatement Maven / Gradle / Ivy

There is a newer version: 4.30.0
Show newest version
package liquibase.statement.core;

import liquibase.statement.CompoundStatement;

public class RawCompoundStatement extends RawSqlStatement implements CompoundStatement {

    public RawCompoundStatement(String sql) {
        super(sql);
    }

    public RawCompoundStatement(String sql, String endDelimiter) {
        super(sql, endDelimiter);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy