chore: more cleanup

pull/24376/head
Nga Tran 2021-10-12 17:27:04 -04:00
parent f85d6d5da8
commit 04468f3208
2 changed files with 1 additions and 2 deletions

View File

@ -236,7 +236,7 @@ impl<C: QueryChunk + 'static> TableProvider for ChunkTableProvider<C> {
filters: &[Expr], filters: &[Expr],
_limit: Option<usize>, _limit: Option<usize>,
) -> std::result::Result<Arc<dyn ExecutionPlan>, DataFusionError> { ) -> std::result::Result<Arc<dyn ExecutionPlan>, DataFusionError> {
info!(" ====== Inside ChunkTableProvider Scan"); info!(" = Inside ChunkTableProvider Scan");
// Note that `filters` don't actually need to be evaluated in // Note that `filters` don't actually need to be evaluated in
// the scan for the plans to be correct, they are an extra // the scan for the plans to be correct, they are an extra

View File

@ -1344,7 +1344,6 @@ pub mod test_helpers {
let mut tables: Vec<_> = tables.into_iter().collect(); let mut tables: Vec<_> = tables.into_iter().collect();
tables.sort(); tables.sort();
println!(" === lp tables: {:#?}", tables);
Ok(tables) Ok(tables)
} }