Skip to content

Commit afbaf36

Browse files
ion-elgrecortyler
authored andcommitted
fix: pin arrow to 55.0.0
Signed-off-by: Ion Koutsouris <[email protected]>
1 parent 74a9449 commit afbaf36

File tree

1 file changed

+2
-1
lines changed
  • crates/core/src/logstore

1 file changed

+2
-1
lines changed

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

0 commit comments

Comments
 (0)