File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed
vortex-array/src/array/transform Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change @@ -66,19 +66,9 @@ impl ArrayOptimizer {
6666 for child in children. iter ( ) {
6767 let optimized_child = self . apply_parent_rules ( child. clone ( ) , ctx) ?;
6868 children_changed |= !std:: sync:: Arc :: ptr_eq ( & optimized_child, child) ;
69- println ! (
70- "----child {}, opt child {}----" ,
71- child. display_tree( ) ,
72- optimized_child. display_tree( )
73- ) ;
7469 optimized_children. push ( optimized_child) ;
7570 }
7671
77- println ! ( "arary {}" , array. display_tree( ) ) ;
78- for o in & optimized_children {
79- println ! ( "optimized_children {}" , o. display_tree( ) ) ;
80- }
81-
8272 // Reconstruct array with optimized children if any changed
8373 let array = if children_changed {
8474 array. with_children ( & optimized_children) ?
You can’t perform that action at this time.
0 commit comments