diff --git a/bustubx/src/catalog/catalog.rs b/bustubx/src/catalog/catalog.rs
index 6476858..62be4d3 100644
--- a/bustubx/src/catalog/catalog.rs
+++ b/bustubx/src/catalog/catalog.rs
@@ -313,7 +313,6 @@ impl Catalog {
b_plus_tree_index.root_page_id.load(Ordering::SeqCst).into(),
],
);
- println!("LWZTEST tuple: {:?}", tuple);
indexes_table
.table
.insert_tuple(&EMPTY_TUPLE_META, &tuple)?;
diff --git a/bustubx/src/execution/physical_plan/index_scan.rs b/bustubx/src/execution/physical_plan/index_scan.rs
index 7eda7a4..6922b7f 100644
--- a/bustubx/src/execution/physical_plan/index_scan.rs
+++ b/bustubx/src/execution/physical_plan/index_scan.rs
@@ -48,7 +48,6 @@ impl VolcanoExecutor for PhysicalIndexScan {
}
fn next(&self, context: &mut ExecutionContext) -> BustubxResult