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

liquibase.ext.databricks.change.alterTableProperties.AlterTablePropertiesStatementDatabricks Maven / Gradle / Ivy

package liquibase.ext.databricks.change.alterTableProperties;

import liquibase.ext.databricks.change.AbstractAlterPropertiesStatementDatabricks;
import lombok.Getter;
import lombok.Setter;

@Setter
@Getter
public class AlterTablePropertiesStatementDatabricks extends AbstractAlterPropertiesStatementDatabricks {

    private String tableName;

    public AlterTablePropertiesStatementDatabricks(String catalogName, String schemaName, String tableName) {
        super(catalogName, schemaName);
        this.tableName = tableName;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy