Skip to content

Commit ffc38d4

Browse files
downgrade iceberg
Co-authored-by: Thomas Chow <[email protected]>
1 parent 7fcb67e commit ffc38d4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cloud_gcp/src/test/scala/ai/chronon/integrations/cloud_gcp/BigQueryCatalogTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ class BigQueryCatalogTest extends AnyFlatSpec with MockitoSugar {
104104
println(nativePartitions)
105105
val tblFormat = GcpFormatProvider(spark).format("data.purchases").get
106106
val partitions = tblFormat.partitions("data.purchases")(spark)
107-
assertEquals(partitions.flatMap(_.keys), Seq("ds"))
107+
assertEquals(Set("ds"), partitions.flatMap(_.keys).toSet)
108108
}
109109

110110
it should "kryo serialization for ResolvingFileIO" in {

tools/build_rules/dependencies/scala_2_12_repository.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ scala_2_12_repository = repository(
3333
"org.json4s:json4s-core_2.12:3.7.0-M11",
3434
"org.json4s:json4s-ast_2.12:3.7.0-M11",
3535
"io.delta:delta-spark_2.12:3.2.0",
36-
"org.apache.iceberg:iceberg-spark-runtime-3.5_2.12:1.8.0",
36+
"org.apache.iceberg:iceberg-spark-runtime-3.5_2.12:1.5.2",
3737

3838
# Google Cloud
3939
"com.google.cloud.spark:spark-bigquery-with-dependencies_2.12:0.42.0",

tools/build_rules/dependencies/scala_2_13_repository.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ scala_2_13_repository = repository(
3333
"org.json4s:json4s-core_2.13:3.7.0-M11",
3434
"org.json4s:json4s-ast_2.13:3.7.0-M11",
3535
"io.delta:delta-spark_2.13:3.2.0",
36-
"org.apache.iceberg:iceberg-spark-runtime-3.5_2.13:1.8.0",
36+
"org.apache.iceberg:iceberg-spark-runtime-3.5_2.13:1.5.2",
3737

3838
# Google Cloud
3939
"com.google.cloud.spark:spark-bigquery-with-dependencies_2.13:0.42.0",

0 commit comments

Comments
 (0)