From 4b3e57be44432793fc3cfa61a874445a4b1f40b1 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Mon, 28 Apr 2025 10:07:27 -0500 Subject: [PATCH] Remove another println. --- src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index b9b4304..1ba615f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -30,7 +30,6 @@ fn main() -> Result<(), Box> { let table = t.split('='); let table = table.last().unwrap(); let root = format!("{ROOT}/{t}/*"); - println!("Making table"); println!( r#"create table {table} as select * from read_parquet("{root}") where bbox.xmin between {xmin} and {xmax} and bbox.ymin between {ymin} and {ymax};"# );