Skip to content

Commit

Permalink
DAT-18731 - Resolving the /null problem when not finding the createTa…
Browse files Browse the repository at this point in the history
…ble.aql file

And also solving the problem of not cleaning the files generated after finishing the tests.
  • Loading branch information
CharlesQueiroz committed Dec 19, 2024
1 parent fc78810 commit 570d84b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<sonar.qualitygate.wait>true</sonar.qualitygate.wait>
<sonar.sources>src/main/java</sonar.sources>
<sonar.tests>src/test</sonar.tests>
<liquibase-test-harness.version>1.0.10</liquibase-test-harness.version>
<liquibase-test-harness.version>1.1.0-SNAPSHOT</liquibase-test-harness.version>
<junit.version>5.11.4</junit.version>
<junit-platform.version>1.11.4</junit-platform.version>
<mockito.version>5.14.2</mockito.version>
Expand Down Expand Up @@ -137,6 +137,12 @@
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-suite-api</artifactId>
<version>1.11.3</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down
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 {
}

This file was deleted.

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);

0 comments on commit 570d84b

Please sign in to comment.