Skip to content

Commit 6ffa811

Browse files
authored
SNOW-760569 Upgrade to use JDBC 3.13.29 (#497)
1 parent d212c75 commit 6ffa811

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/ClusterTest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
TEST_SCALA_VERSION: '2.12'
2424
TEST_COMPILE_SCALA_VERSION: '2.12.11'
2525
TEST_SPARK_CONNECTOR_VERSION: '2.11.2'
26-
TEST_JDBC_VERSION: '3.13.28'
26+
TEST_JDBC_VERSION: '3.13.29'
2727

2828
steps:
2929
- uses: actions/checkout@v2

ClusterTest/build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ lazy val root = project.withId("spark-snowflake").in(file("."))
3737
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
3838
libraryDependencies ++= Seq(
3939
"net.snowflake" % "snowflake-ingest-sdk" % "0.10.8",
40-
"net.snowflake" % "snowflake-jdbc" % "3.13.28",
40+
"net.snowflake" % "snowflake-jdbc" % "3.13.29",
4141
// "net.snowflake" %% "spark-snowflake" % "2.8.0-spark_3.0",
4242
// "com.google.guava" % "guava" % "14.0.1" % Test,
4343
// "org.scalatest" %% "scalatest" % "3.0.5" % Test,

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ lazy val root = project.withId("spark-snowflake").in(file("."))
6060
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
6161
libraryDependencies ++= Seq(
6262
"net.snowflake" % "snowflake-ingest-sdk" % "0.10.8",
63-
"net.snowflake" % "snowflake-jdbc" % "3.13.28",
63+
"net.snowflake" % "snowflake-jdbc" % "3.13.29",
6464
"org.scalatest" %% "scalatest" % "3.1.1" % Test,
6565
"org.mockito" % "mockito-core" % "1.10.19" % Test,
6666
"org.apache.commons" % "commons-lang3" % "3.5" % "provided",

src/main/scala/net/snowflake/spark/snowflake/Utils.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ object Utils {
6060
/**
6161
* The certified JDBC version to work with this spark connector version.
6262
*/
63-
val CERTIFIED_JDBC_VERSION = "3.13.28"
63+
val CERTIFIED_JDBC_VERSION = "3.13.29"
6464

6565
/**
6666
* Important:

0 commit comments

Comments
 (0)