Similarly to [`Self::transform`], rewrites this node and its inputs using `f`, including subqueries that may appear in expressions such as `IN (SELECT ...)`.
(
self,
f: F,
)
| 735 | /// including subqueries that may appear in expressions such as `IN (SELECT |
| 736 | /// ...)`. |
| 737 | pub fn transform_with_subqueries<F: FnMut(Self) -> Result<Transformed<Self>>>( |
| 738 | self, |
| 739 | f: F, |
| 740 | ) -> Result<Transformed<Self>> { |
| 741 | self.transform_up_with_subqueries(f) |
| 742 | } |
| 743 | |
| 744 | /// Similarly to [`Self::transform_down`], rewrites this node and its inputs using `f`, |
| 745 | /// including subqueries that may appear in expressions such as `IN (SELECT |
no test coverage detected