generated from liquibase/liquibase-extension-example
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactoring * updated pom, added 1 test * put liquibase-core back * checking liquibase-core dependency * added surefire * added jsonAssert, removed IT test from default execution * chore: convert groovy tests to java + add slf4j api * fix: correct test file name * ignored new version of advanced test for now --------- Co-authored-by: filipe <[email protected]>
- Loading branch information
1 parent
0c6e3a5
commit 7b9923c
Showing
57 changed files
with
302 additions
and
1,259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 4 additions & 34 deletions
38
...ibase/ext/databricks/change/addCheckConstraint/AddCheckConstraintStatementDatabricks.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,15 @@ | ||
package liquibase.ext.databricks.change.addCheckConstraint; | ||
|
||
import liquibase.statement.AbstractSqlStatement; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Setter | ||
@Getter | ||
public class AddCheckConstraintStatementDatabricks extends AbstractSqlStatement { | ||
private String catalogName; | ||
private String schemaName; | ||
private String tableName; | ||
private String constraintName; | ||
private String constraintBody; | ||
|
||
|
||
public String getCatalogName() { | ||
return this.catalogName; | ||
} | ||
|
||
public void setCatalogName(String catalogName) {this.catalogName = catalogName;} | ||
|
||
|
||
public String getSchemaName() { | ||
return this.schemaName; | ||
} | ||
|
||
public void setSchemaName(String schemaName) {this.schemaName = schemaName;} | ||
|
||
public String getTableName() { | ||
return this.tableName; | ||
} | ||
|
||
public void setTableName(String tableName) {this.tableName = tableName;} | ||
|
||
public String getConstraintName() { | ||
return this.constraintName; | ||
} | ||
|
||
public void setConstraintName(String constraintName) {this.constraintName = constraintName;} | ||
|
||
public String getConstraintBody() { | ||
return this.constraintBody; | ||
} | ||
|
||
public void setConstraintBody(String constraintBody) { | ||
this.constraintBody = constraintBody; | ||
} | ||
} |
Oops, something went wrong.