(&'a self, v: &'a [OrderByExpr<T>])
| 929 | } |
| 930 | |
| 931 | fn doc_order_by<'a, T: AstInfo>(&'a self, v: &'a [OrderByExpr<T>]) -> RcDoc<'a> { |
| 932 | title_comma_separate("ORDER BY", |o| self.doc_order_by_expr(o), v) |
| 933 | } |
| 934 | |
| 935 | fn doc_order_by_expr<'a, T: AstInfo>(&'a self, v: &'a OrderByExpr<T>) -> RcDoc<'a> { |
| 936 | let doc = self.doc_expr(&v.expr); |
no test coverage detected