| 1 | |
package liquibase.statement.core; |
| 2 | |
|
| 3 | |
import liquibase.statement.AbstractSqlStatement; |
| 4 | |
|
| 5 | |
public class ReorganizeTableStatement extends AbstractSqlStatement { |
| 6 | |
private String schemaName; |
| 7 | |
private String tableName; |
| 8 | |
|
| 9 | 37 | public ReorganizeTableStatement(String schemaName, String tableName) { |
| 10 | 37 | this.schemaName = schemaName; |
| 11 | 37 | this.tableName = tableName; |
| 12 | 37 | } |
| 13 | |
|
| 14 | |
public String getSchemaName() { |
| 15 | 0 | return schemaName; |
| 16 | |
} |
| 17 | |
|
| 18 | |
public String getTableName() { |
| 19 | 8 | return tableName; |
| 20 | |
} |
| 21 | |
|
| 22 | |
} |