@@ -668,7 +668,7 @@ impl LogicalPlan {
668668
669669 /// Visits a plan similarly to [`Self::visit`], including subqueries that
670670 /// may appear in expressions such as `IN (SELECT ...)`.
671- #[ cfg_attr( feature = "recursive-protection " , recursive:: recursive) ]
671+ #[ cfg_attr( feature = "recursive_protection " , recursive:: recursive) ]
672672 pub fn visit_with_subqueries < V : for < ' n > TreeNodeVisitor < ' n , Node = Self > > (
673673 & self ,
674674 visitor : & mut V ,
@@ -687,7 +687,7 @@ impl LogicalPlan {
687687 /// Similarly to [`Self::rewrite`], rewrites this node and its inputs using `f`,
688688 /// including subqueries that may appear in expressions such as `IN (SELECT
689689 /// ...)`.
690- #[ cfg_attr( feature = "recursive-protection " , recursive:: recursive) ]
690+ #[ cfg_attr( feature = "recursive_protection " , recursive:: recursive) ]
691691 pub fn rewrite_with_subqueries < R : TreeNodeRewriter < Node = Self > > (
692692 self ,
693693 rewriter : & mut R ,
@@ -706,7 +706,7 @@ impl LogicalPlan {
706706 & self ,
707707 mut f : F ,
708708 ) -> Result < TreeNodeRecursion > {
709- #[ cfg_attr( feature = "recursive-protection " , recursive:: recursive) ]
709+ #[ cfg_attr( feature = "recursive_protection " , recursive:: recursive) ]
710710 fn apply_with_subqueries_impl <
711711 F : FnMut ( & LogicalPlan ) -> Result < TreeNodeRecursion > ,
712712 > (
@@ -741,7 +741,7 @@ impl LogicalPlan {
741741 self ,
742742 mut f : F ,
743743 ) -> Result < Transformed < Self > > {
744- #[ cfg_attr( feature = "recursive-protection " , recursive:: recursive) ]
744+ #[ cfg_attr( feature = "recursive_protection " , recursive:: recursive) ]
745745 fn transform_down_with_subqueries_impl <
746746 F : FnMut ( LogicalPlan ) -> Result < Transformed < LogicalPlan > > ,
747747 > (
@@ -766,7 +766,7 @@ impl LogicalPlan {
766766 self ,
767767 mut f : F ,
768768 ) -> Result < Transformed < Self > > {
769- #[ cfg_attr( feature = "recursive-protection " , recursive:: recursive) ]
769+ #[ cfg_attr( feature = "recursive_protection " , recursive:: recursive) ]
770770 fn transform_up_with_subqueries_impl <
771771 F : FnMut ( LogicalPlan ) -> Result < Transformed < LogicalPlan > > ,
772772 > (
@@ -794,7 +794,7 @@ impl LogicalPlan {
794794 mut f_down : FD ,
795795 mut f_up : FU ,
796796 ) -> Result < Transformed < Self > > {
797- #[ cfg_attr( feature = "recursive-protection " , recursive:: recursive) ]
797+ #[ cfg_attr( feature = "recursive_protection " , recursive:: recursive) ]
798798 fn transform_down_up_with_subqueries_impl <
799799 FD : FnMut ( LogicalPlan ) -> Result < Transformed < LogicalPlan > > ,
800800 FU : FnMut ( LogicalPlan ) -> Result < Transformed < LogicalPlan > > ,
0 commit comments