(&mut self, relation: SqlRelation)
| 216 | } |
| 217 | |
| 218 | fn fold_sql_relation(&mut self, relation: SqlRelation) -> Result<SqlRelation> { |
| 219 | Ok(match relation { |
| 220 | SqlRelation::AtomicPipeline(pipeline) => { |
| 221 | SqlRelation::AtomicPipeline(self.fold_sql_transforms(pipeline)?) |
| 222 | } |
| 223 | _ => relation, |
| 224 | }) |
| 225 | } |
| 226 | |
| 227 | fn fold_cte(&mut self, cte: Cte) -> Result<Cte> { |
| 228 | Ok(Cte { |
no test coverage detected