Remove another println.

This commit is contained in:
Nolan Darilek 2025-04-28 10:07:27 -05:00
parent 41c6a7ebba
commit 4b3e57be44

View file

@ -30,7 +30,6 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
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};"#
);