From f780762afc5df6e8d8548c96e0a7b6f90db5cf9d Mon Sep 17 00:00:00 2001 From: Connor Tsui Date: Sat, 24 Feb 2024 18:49:34 -0500 Subject: [PATCH] remove debug line --- eggstrain/src/execution/query_dag.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/eggstrain/src/execution/query_dag.rs b/eggstrain/src/execution/query_dag.rs index a70d6e6..a64ff89 100644 --- a/eggstrain/src/execution/query_dag.rs +++ b/eggstrain/src/execution/query_dag.rs @@ -40,7 +40,6 @@ fn extract_df_node(plan: Arc) -> Result { let id = root.type_id(); if id == TypeId::of::() { - eprintln!("Creating projection node!"); let projection_plan = root .downcast_ref::() .expect("Unable to downcast_ref to ProjectionExec");