Skip to content

Commit 14348e4

Browse files
committed
Fix flaky cascades test to run in memory
1 parent 52d4157 commit 14348e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

optd-core/src/cascades/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ mod tests {
147147

148148
#[tokio::test]
149149
async fn test_ingest_partial_logical_plan() -> anyhow::Result<()> {
150-
let memo = SqliteMemo::new("sqlite://memo.db").await?;
150+
let memo = SqliteMemo::new_in_memory().await?;
151151
// select * from t1, t2 where t1.id = t2.id and t2.name = 'Memo' and t2.v1 = 1 + 1
152152
let partial_logical_plan = filter(
153153
join(

0 commit comments

Comments
 (0)