Skip to content

Commit 335b49b

Browse files
committed
fix: pin arrow to 55.0.0
Signed-off-by: Ion Koutsouris <[email protected]>
1 parent 8527565 commit 335b49b

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@ delta_kernel = { version = "0.10.0", features = [
3232
] }
3333

3434
# arrow
35-
arrow = { version = "55" }
36-
arrow-arith = { version = "55" }
37-
arrow-array = { version = "55", features = ["chrono-tz"] }
38-
arrow-buffer = { version = "55" }
39-
arrow-cast = { version = "55" }
40-
arrow-ipc = { version = "55" }
41-
arrow-json = { version = "55" }
42-
arrow-ord = { version = "55" }
43-
arrow-row = { version = "55" }
44-
arrow-schema = { version = "55" }
45-
arrow-select = { version = "55" }
35+
arrow = { version = "=55.0.0" }
36+
arrow-arith = { version = "=55.0.0" }
37+
arrow-array = { version = "=55.0.0", features = ["chrono-tz"] }
38+
arrow-buffer = { version = "=55.0.0" }
39+
arrow-cast = { version = "=55.0.0" }
40+
arrow-ipc = { version = "=55.0.0" }
41+
arrow-json = { version = "=55.0.0" }
42+
arrow-ord = { version = "=55.0.0" }
43+
arrow-row = { version = "=55.0.0" }
44+
arrow-schema = { version = "=55.0.0" }
45+
arrow-select = { version = "=55.0.0" }
4646
object_store = { version = "0.12.1" }
47-
parquet = { version = "55" }
47+
parquet = { version = "=55.0.0" }
4848

4949
# datafusion
5050
datafusion = "47.0.0"

crates/core/src/logstore/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,8 @@ static DELTA_LOG_PATH: LazyLock<Path> = LazyLock::new(|| Path::from("_delta_log"
152152
/// # use std::collections::HashMap;
153153
/// # use url::Url;
154154
/// let location = Url::parse("memory:///").expect("Failed to make location");
155-
/// let logstore = logstore_for(location, HashMap::<String, String>::new(), None).expect("Failed to get a logstore");
155+
/// let storage_config = StorageConfig::default();
156+
/// let logstore = logstore_for(location, storage_config).expect("Failed to get a logstore");
156157
/// ```
157158
pub fn logstore_for(location: Url, storage_config: StorageConfig) -> DeltaResult<LogStoreRef> {
158159
// turn location into scheme

python/tests/pyspark_integration/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ def get_spark():
2020
builder = (
2121
pyspark.sql.SparkSession.builder.appName("MyApp")
2222
.config("spark.sql.extensions", "io.delta.sql.DeltaSparkSessionExtension")
23+
.config("spark.driver.bindAddress", "127.0.0.1")
2324
.config(
2425
"spark.sql.catalog.spark_catalog",
2526
"org.apache.spark.sql.delta.catalog.DeltaCatalog",

0 commit comments

Comments
 (0)