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.30.0
Show newest version
package liquibase.statement.core;

import liquibase.change.ColumnConfig;
import liquibase.statement.SqlStatement;

import java.util.List;

public class CopyRowsStatement implements SqlStatement {

	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 - 2025 Weber Informatics LLC | Privacy Policy