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

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

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

import liquibase.change.ColumnConfig;
import liquibase.statement.AbstractSqlStatement;

import java.util.List;

public class CopyRowsStatement extends AbstractSqlStatement {

    private String sourceTable;
    private String targetTable;
    private List copyColumns;


    public CopyRowsStatement(String sourceTable, String targetTable,
            List copyColumns) {
        this.sourceTable = sourceTable;
        this.targetTable = targetTable;
        this.copyColumns = copyColumns;
    }

    public String getSourceTable() {
        return this.sourceTable;
    }

    public String getTargetTable() {
        return this.targetTable;
    }

    public List getCopyColumns() {
        return this.copyColumns;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy