liquibase.ext.databricks.change.vacuumTable.VacuumTableStatement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-databricks Show documentation
Show all versions of liquibase-databricks Show documentation
Liquibase Extension for Databricks.
The newest version!
package liquibase.ext.databricks.change.vacuumTable;
import liquibase.statement.AbstractSqlStatement;
import lombok.Getter;
import lombok.Setter;
@Setter
@Getter
public class VacuumTableStatement extends AbstractSqlStatement {
private String catalogName;
private String schemaName;
private String tableName;
private Integer retentionHours;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy