File tree Expand file tree Collapse file tree
main/java/com/databricks/jdbc/common/util
test/java/com/databricks/jdbc Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >com.databricks</groupId >
99 <artifactId >databricks-jdbc-parent</artifactId >
10- <version >3.3.2 </version >
10+ <version >3.3.3-rc1 </version >
1111 </parent >
1212
1313 <artifactId >databricks-jdbc-thin</artifactId >
5151 <dependency >
5252 <groupId >com.databricks</groupId >
5353 <artifactId >databricks-jdbc-core</artifactId >
54- <version >3.3.2 </version >
54+ <version >3.3.3-rc1 </version >
5555 </dependency >
5656 </dependencies >
5757
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >com.databricks</groupId >
99 <artifactId >databricks-jdbc-parent</artifactId >
10- <version >3.3.2 </version >
10+ <version >3.3.3-rc1 </version >
1111 </parent >
1212
1313 <artifactId >databricks-jdbc</artifactId >
5151 <dependency >
5252 <groupId >com.databricks</groupId >
5353 <artifactId >databricks-jdbc-core</artifactId >
54- <version >3.3.2 </version >
54+ <version >3.3.3-rc1 </version >
5555 </dependency >
5656 </dependencies >
5757
Original file line number Diff line number Diff line change 66 <parent >
77 <groupId >com.databricks</groupId >
88 <artifactId >databricks-jdbc-parent</artifactId >
9- <version >3.3.2 </version >
9+ <version >3.3.3-rc1 </version >
1010 </parent >
1111
1212 <artifactId >databricks-jdbc-core</artifactId >
Original file line number Diff line number Diff line change 55 <groupId >com.databricks</groupId >
66 <artifactId >databricks-jdbc-parent</artifactId >
77 <!-- This value may be modified by a release script to reflect the current version of the driver. -->
8- <version >3.3.2 </version >
8+ <version >3.3.3-rc1 </version >
99 <packaging >pom</packaging >
1010 <name >Databricks JDBC Parent</name >
1111 <description >Parent POM for Databricks JDBC Driver.</description >
6363 <build-helper-maven-plugin .version>3.6.1</build-helper-maven-plugin .version>
6464
6565 <!-- Dependency Versions -->
66- <databricks-jdbc-version >3.3.2 </databricks-jdbc-version >
66+ <databricks-jdbc-version >3.3.3-rc1 </databricks-jdbc-version >
6767 <arrow .version>18.3.0</arrow .version>
6868 <commons-lang3 .version>3.18.0</commons-lang3 .version>
6969 <commons-configuration .version>2.10.1</commons-configuration .version>
Original file line number Diff line number Diff line change 2020public class DriverUtil {
2121
2222 private static final JdbcLogger LOGGER = JdbcLoggerFactory .getLogger (DriverUtil .class );
23- private static final String DRIVER_VERSION = "3.3.2 " ;
23+ private static final String DRIVER_VERSION = "3.3.3-rc1 " ;
2424 private static final String DRIVER_NAME = "oss-jdbc" ;
2525 private static final String JDBC_VERSION = "4.3" ;
2626
Original file line number Diff line number Diff line change @@ -828,7 +828,7 @@ public void testNullsAreSortedAtEnd() throws SQLException {
828828 @ Test
829829 public void testGetDatabaseProductVersion () throws SQLException {
830830 String result = metaData .getDatabaseProductVersion ();
831- assertEquals ("3.3.2 " , result );
831+ assertEquals ("3.3.3-rc1 " , result );
832832 }
833833
834834 @ Test
@@ -840,7 +840,7 @@ public void testGetDriverName() throws SQLException {
840840 @ Test
841841 public void testGetDriverVersion () throws SQLException {
842842 String result = metaData .getDriverVersion ();
843- assertEquals ("3.3.2 " , result );
843+ assertEquals ("3.3.3-rc1 " , result );
844844 }
845845
846846 @ Test
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ class DatabricksDriverFeatureFlagsContextTest {
3737 @ Mock private ObjectMapper objectMapperMock ;
3838 private static final String FEATURE_FLAG_NAME = "featureFlagName" ;
3939 private static final String FEATURE_FLAGS_ENDPOINT =
40- "https://test-host/api/2.0/connector-service/feature-flags/OSS_JDBC/3.3.2 " ;
40+ "https://test-host/api/2.0/connector-service/feature-flags/OSS_JDBC/3.3.3-rc1 " ;
4141
4242 private DatabricksDriverFeatureFlagsContext context ;
4343
Original file line number Diff line number Diff line change @@ -14,14 +14,14 @@ public class DriverUtilTest {
1414 public void testGetDriverVersion () {
1515 String version = DriverUtil .getDriverVersion ();
1616 assertNotNull (version );
17- assertEquals ("3.3.2 " , version );
17+ assertEquals ("3.3.3-rc1 " , version );
1818 }
1919
2020 @ Test
2121 public void testGetDriverVersionWithoutOSSSuffix () {
2222 String version = DriverUtil .getDriverVersionWithoutOSSSuffix ();
2323 assertNotNull (version );
24- assertEquals ("3.3.2 " , version );
24+ assertEquals ("3.3.3-rc1 " , version );
2525 }
2626
2727 @ Test
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >com.databricks</groupId >
99 <artifactId >databricks-jdbc-parent</artifactId >
10- <version >3.3.2 </version >
10+ <version >3.3.3-rc1 </version >
1111 </parent >
1212
1313 <artifactId >test-databricks-jdbc-thin</artifactId >
2424 <dependency >
2525 <groupId >com.databricks</groupId >
2626 <artifactId >databricks-jdbc-thin</artifactId >
27- <version >3.3.2 </version >
27+ <version >3.3.3-rc1 </version >
2828 </dependency >
2929 <dependency >
3030 <groupId >org.junit.jupiter</groupId >
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >com.databricks</groupId >
99 <artifactId >databricks-jdbc-parent</artifactId >
10- <version >3.3.2 </version >
10+ <version >3.3.3-rc1 </version >
1111 </parent >
1212
1313 <artifactId >test-databricks-jdbc-uber</artifactId >
2424 <dependency >
2525 <groupId >com.databricks</groupId >
2626 <artifactId >databricks-jdbc</artifactId >
27- <version >3.3.2 </version >
27+ <version >3.3.3-rc1 </version >
2828 </dependency >
2929 <dependency >
3030 <groupId >org.junit.jupiter</groupId >
You can’t perform that action at this time.
0 commit comments