This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 19,28c19,27 | |
| < | | +--- org.apache.avro:avro:1.12.0 | |
| < | | | +--- com.fasterxml.jackson.core:jackson-core:2.17.2 -> 2.15.2 | |
| < | | | | \--- com.fasterxml.jackson:jackson-bom:2.15.2 -> 2.19.2 | |
| < | | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.19.2 (c) | |
| < | | | | +--- com.fasterxml.jackson.core:jackson-core:2.19.2 -> 2.15.2 (c) | |
| < | | | | +--- com.fasterxml.jackson.core:jackson-databind:2.19.2 -> 2.15.2 (c) | |
| < | | | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.19.2 (c) | |
| < | | | \--- com.fasterxml.jackson.core:jackson-databind:2.17.2 -> 2.15.2 | |
| < | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.15.2 -> 2.19.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ------------------------------------------------------------ | |
| Project ':iceberg-spark:iceberg-spark-runtime-4.1_2.13' | |
| ------------------------------------------------------------ | |
| runtimeClasspath - Runtime classpath of source set 'main'. | |
| +--- project :iceberg-api | |
| | \--- project :iceberg-bundled-guava | |
| +--- project :iceberg-spark:iceberg-spark-4.1_2.13 | |
| | +--- project :iceberg-api (*) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/pr_15655_deps.txt b/Users/alexstephen/iceberg/iceberg/8ae7559_deps.txt | |
| index 19b4aabaa..5207e91c1 100644 | |
| --- a/pr_15655_deps.txt | |
| +++ b/Users/alexstephen/iceberg/iceberg/8ae7559_deps.txt | |
| @@ -1,81 +1,82 @@ | |
| ------------------------------------------------------------ | |
| -Project ':iceberg-spark:iceberg-spark-runtime-4.1_2.13' | |
| +Project ':iceberg-spark:iceberg-spark-runtime-4.0_2.13' | |
| ------------------------------------------------------------ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 3c3 | |
| < Project ':iceberg-spark:iceberg-spark-runtime-4.1_2.13' | |
| --- | |
| > Project ':iceberg-spark:iceberg-spark-runtime-4.0_2.13' | |
| 9c9 | |
| < +--- project :iceberg-spark:iceberg-spark-4.1_2.13 | |
| --- | |
| > +--- project :iceberg-spark:iceberg-spark-4.0_2.13 | |
| 16,24c16,25 | |
| < | | +--- org.apache.avro:avro:1.12.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ------------------------------------------------------------ | |
| Project ':iceberg-spark:iceberg-spark-runtime-4.1_2.13' | |
| ------------------------------------------------------------ | |
| runtimeClasspath - Runtime classpath of source set 'main'. | |
| +--- project :iceberg-api | |
| | \--- project :iceberg-bundled-guava | |
| +--- project :iceberg-spark:iceberg-spark-4.1_2.13 | |
| | +--- project :iceberg-api (*) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ``` | |
| @@ -21,7 +21,8 @@ runtimeClasspath - Runtime classpath of source set 'main'. | |
| | | | \--- com.fasterxml.jackson:jackson-bom:2.21.2 | |
| | | | +--- com.fasterxml.jackson.core:jackson-core:2.21.2 (c) | |
| | | | +--- com.fasterxml.jackson.core:jackson-databind:2.21.2 (c) | |
| -| | | \--- com.fasterxml.jackson.core:jackson-annotations:2.21 (c) | |
| +| | | +--- com.fasterxml.jackson.core:jackson-annotations:2.21 (c) | |
| +| | | \--- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.2 (c) | |
| | | +--- com.fasterxml.jackson.core:jackson-databind:2.20.0 -> 2.21.2 | |
| | | | +--- com.fasterxml.jackson.core:jackson-annotations:2.21 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from pyspark.sql import SparkSession | |
| def main(): | |
| """ | |
| This PySpark script talks to the BigLake Public Dataset. | |
| """ | |
| spark = SparkSession.builder \ | |
| .appName("REST Catalog Example") \ | |
| .getOrCreate() |