Skip to content

Commit a560561

Browse files
authored
Fix bug causing in-memory data folder to fail (#340)
1 parent 66a4abf commit a560561

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crates/modelardb_storage/src/delta_lake.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ impl DeltaLake {
7979
/// Create a new [`DeltaLake`] that manages the Delta tables in memory.
8080
pub fn new_in_memory() -> Self {
8181
Self {
82-
location: "memory://modelardb".to_owned(),
82+
location: "memory:///modelardb".to_owned(),
8383
storage_options: HashMap::new(),
8484
object_store: Arc::new(InMemory::new()),
8585
delta_table_cache: DashMap::new(),

0 commit comments

Comments
 (0)