File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
rust/cubestore/cubestore/src/queryplanner Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -262,7 +262,6 @@ impl QueryExecutor for QueryExecutorImpl {
262262
263263 let execution_time = SystemTime :: now ( ) ;
264264 let session_context = self . execution_context ( ) ?;
265- // TODO context
266265 let results = collect ( worker_plan. clone ( ) , session_context. task_ctx ( ) )
267266 . instrument ( tracing:: span!(
268267 tracing:: Level :: TRACE ,
@@ -298,9 +297,8 @@ impl QueryExecutor for QueryExecutorImpl {
298297 ) ;
299298 }
300299 // TODO: stream results as they become available.
301- // TOOD upgrade DF
302- // let results = regroup_batches(results?, max_batch_rows)?;
303- Ok ( ( worker_plan. schema ( ) , results?, data_loaded_size. get ( ) ) )
300+ let results = regroup_batches ( results?, max_batch_rows) ?;
301+ Ok ( ( worker_plan. schema ( ) , results, data_loaded_size. get ( ) ) )
304302 }
305303
306304 async fn router_plan (
You can’t perform that action at this time.
0 commit comments