From 85e26f307ae04b3594982c220594d79eeaa33cac Mon Sep 17 00:00:00 2001 From: CGodiksen <36046286+CGodiksen@users.noreply.github.com> Date: Fri, 1 Aug 2025 09:44:25 +0200 Subject: [PATCH] Fix bug causing in-memory data folder to fail --- crates/modelardb_storage/src/delta_lake.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/modelardb_storage/src/delta_lake.rs b/crates/modelardb_storage/src/delta_lake.rs index 855248f1a..585763739 100644 --- a/crates/modelardb_storage/src/delta_lake.rs +++ b/crates/modelardb_storage/src/delta_lake.rs @@ -79,7 +79,7 @@ impl DeltaLake { /// Create a new [`DeltaLake`] that manages the Delta tables in memory. pub fn new_in_memory() -> Self { Self { - location: "memory://modelardb".to_owned(), + location: "memory:///modelardb".to_owned(), storage_options: HashMap::new(), object_store: Arc::new(InMemory::new()), delta_table_cache: DashMap::new(),