Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/coverageReport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
${{ runner.os }}-m2-

- name: Run tests with coverage
run: mvn -pl jdbc-core clean test -Dgroups='!Jvm17PlusAndArrowToNioReflectionDisabled' jacoco:report
run: mvn -pl jdbc-core clean test -Dgroups='!Jvm17PlusAndArrowToNioReflectionDisabled' jacoco:report -Ddependency-check.skip=true

- name: Check for coverage override
id: override
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Add the following dependency to your `pom.xml`:
<dependency>
<groupId>com.databricks</groupId>
<artifactId>databricks-jdbc</artifactId>
<version>3.3.1</version>
<version>3.3.2-SNAPSHOT</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions assembly-thin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.databricks</groupId>
<artifactId>databricks-jdbc-parent</artifactId>
<version>3.3.1</version>
<version>3.3.2-SNAPSHOT</version>
</parent>

<artifactId>databricks-jdbc-thin</artifactId>
Expand Down Expand Up @@ -51,7 +51,7 @@
<dependency>
<groupId>com.databricks</groupId>
<artifactId>databricks-jdbc-core</artifactId>
<version>3.3.1</version>
<version>3.3.2-SNAPSHOT</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions assembly-uber/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.databricks</groupId>
<artifactId>databricks-jdbc-parent</artifactId>
<version>3.3.1</version>
<version>3.3.2-SNAPSHOT</version>
</parent>

<artifactId>databricks-jdbc</artifactId>
Expand Down Expand Up @@ -51,7 +51,7 @@
<dependency>
<groupId>com.databricks</groupId>
<artifactId>databricks-jdbc-core</artifactId>
<version>3.3.1</version>
<version>3.3.2-SNAPSHOT</version>
</dependency>
</dependencies>

Expand Down
2 changes: 1 addition & 1 deletion jdbc-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.databricks</groupId>
<artifactId>databricks-jdbc-parent</artifactId>
<version>3.3.1</version>
<version>3.3.2-SNAPSHOT</version>
</parent>

<artifactId>databricks-jdbc-core</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>com.databricks</groupId>
<artifactId>databricks-jdbc-parent</artifactId>
<!-- This value may be modified by a release script to reflect the current version of the driver. -->
<version>3.3.1</version>
<version>3.3.2-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Databricks JDBC Parent</name>
<description>Parent POM for Databricks JDBC Driver.</description>
Expand Down Expand Up @@ -63,7 +63,7 @@
<build-helper-maven-plugin.version>3.6.1</build-helper-maven-plugin.version>

<!-- Dependency Versions -->
<databricks-jdbc-version>3.3.1</databricks-jdbc-version>
<databricks-jdbc-version>3.3.2-SNAPSHOT</databricks-jdbc-version>
<arrow.version>18.3.0</arrow.version>
<commons-lang3.version>3.18.0</commons-lang3.version>
<commons-configuration.version>2.10.1</commons-configuration.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class DatabricksDatabaseMetaData implements DatabaseMetaData {
public static final String PRODUCT_NAME = "SparkSQL";
public static final int DATABASE_MAJOR_VERSION = 3;
public static final int DATABASE_MINOR_VERSION = 3;
public static final int DATABASE_PATCH_VERSION = 1;
public static final int DATABASE_PATCH_VERSION = 2;
public static final Integer MAX_NAME_LENGTH = 128;
public static final String NUMERIC_FUNCTIONS =
"ABS,ACOS,ASIN,ATAN,ATAN2,CEILING,COS,COT,DEGREES,EXP,FLOOR,LOG,LOG10,MOD,PI,POWER,RADIANS,RAND,ROUND,SIGN,SIN,SQRT,TAN,TRUNCATE";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
public class DriverUtil {

private static final JdbcLogger LOGGER = JdbcLoggerFactory.getLogger(DriverUtil.class);
private static final String DRIVER_VERSION = "3.3.1";
private static final String DRIVER_VERSION = "3.3.2-SNAPSHOT";
private static final String DRIVER_NAME = "oss-jdbc";
private static final String JDBC_VERSION = "4.3";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ public void testNullsAreSortedAtEnd() throws SQLException {
@Test
public void testGetDatabaseProductVersion() throws SQLException {
String result = metaData.getDatabaseProductVersion();
assertEquals("3.3.1", result);
assertEquals("3.3.2", result);
}

@Test
Expand All @@ -840,7 +840,7 @@ public void testGetDriverName() throws SQLException {
@Test
public void testGetDriverVersion() throws SQLException {
String result = metaData.getDriverVersion();
assertEquals("3.3.1", result);
assertEquals("3.3.2-SNAPSHOT", result);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class DatabricksDriverFeatureFlagsContextTest {
@Mock private ObjectMapper objectMapperMock;
private static final String FEATURE_FLAG_NAME = "featureFlagName";
private static final String FEATURE_FLAGS_ENDPOINT =
"https://test-host/api/2.0/connector-service/feature-flags/OSS_JDBC/3.3.1";
"https://test-host/api/2.0/connector-service/feature-flags/OSS_JDBC/3.3.2-SNAPSHOT";

private DatabricksDriverFeatureFlagsContext context;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ public class DriverUtilTest {
public void testGetDriverVersion() {
String version = DriverUtil.getDriverVersion();
assertNotNull(version);
assertEquals("3.3.1", version);
assertEquals("3.3.2-SNAPSHOT", version);
}

@Test
public void testGetDriverVersionWithoutOSSSuffix() {
String version = DriverUtil.getDriverVersionWithoutOSSSuffix();
assertNotNull(version);
assertEquals("3.3.1", version);
assertEquals("3.3.2-SNAPSHOT", version);
}

@Test
Expand Down
4 changes: 2 additions & 2 deletions test-assembly-thin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.databricks</groupId>
<artifactId>databricks-jdbc-parent</artifactId>
<version>3.3.1</version>
<version>3.3.2-SNAPSHOT</version>
</parent>

<artifactId>test-databricks-jdbc-thin</artifactId>
Expand All @@ -24,7 +24,7 @@
<dependency>
<groupId>com.databricks</groupId>
<artifactId>databricks-jdbc-thin</artifactId>
<version>3.3.1</version>
<version>3.3.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down
4 changes: 2 additions & 2 deletions test-assembly-uber/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>com.databricks</groupId>
<artifactId>databricks-jdbc-parent</artifactId>
<version>3.3.1</version>
<version>3.3.2-SNAPSHOT</version>
</parent>

<artifactId>test-databricks-jdbc-uber</artifactId>
Expand All @@ -24,7 +24,7 @@
<dependency>
<groupId>com.databricks</groupId>
<artifactId>databricks-jdbc</artifactId>
<version>3.3.1</version>
<version>3.3.2-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
Expand Down