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.
DAT-18731 - Resolving the /null problem when not finding the createTa…
…ble.aql file And also solving the problem of not cleaning the files generated after finishing the tests.
- Loading branch information
1 parent
fc78810
commit 570d84b
Showing
4 changed files
with
10 additions
and
3 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
3 changes: 2 additions & 1 deletion
3
src/test/java/liquibase/ext/databricks/AdvancedExtensionHarnessTestSuite.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,9 +1,10 @@ | ||
package liquibase.ext.databricks; | ||
|
||
import liquibase.harness.AdvancedHarnessSuite; | ||
import liquibase.harness.generateChangelog.GenerateChangelogTest; | ||
import liquibase.harness.snapshot.SnapshotObjectTests; | ||
import org.junit.platform.suite.api.SelectClasses; | ||
|
||
@SelectClasses({SnapshotObjectTests.class}) | ||
@SelectClasses({SnapshotObjectTests.class, GenerateChangelogTest.class}) | ||
public class AdvancedExtensionHarnessTestSuite extends AdvancedHarnessSuite { | ||
} |
1 change: 0 additions & 1 deletion
1
...esources/liquibase/harness/generateChangelog/expectedChangeLog/databricks/createTable.sql
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...test/resources/liquibase/harness/generateChangelog/expectedSql/databricks/createTable.sql
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE TABLE test_table_xml (test_column INT) USING delta TBLPROPERTIES('delta.feature.allowColumnDefaults' = 'supported', 'delta.columnMapping.mode' = 'name', 'delta.enableDeletionVectors' = true); |