Skip to content

Commit b75de42

Browse files
committed
fix: fix operator printing in Database::run method
1 parent f96633d commit b75de42

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/db.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ impl Database {
4949

5050
let mut builder = PhysicalPlanBuilder::new();
5151
let operator = builder.build_plan(&logical_plan)?;
52-
println!("operator: {:#?}", logical_plan);
52+
println!("operator: {:#?}", operator);
5353

5454
let storage = StorageImpl::InMemoryStorage(self.storage.clone());
5555
let executor = VolcanoExecutor::new(storage);

0 commit comments

Comments
 (0)