(&'a self, v: &'a AsOf<T>)
| 690 | } |
| 691 | |
| 692 | fn doc_as_of<'a, T: AstInfo>(&'a self, v: &'a AsOf<T>) -> RcDoc<'a> { |
| 693 | let (title, expr) = match v { |
| 694 | AsOf::At(expr) => ("AS OF", expr), |
| 695 | AsOf::AtLeast(expr) => ("AS OF AT LEAST", expr), |
| 696 | }; |
| 697 | nest_title(title, self.doc_expr(expr)) |
| 698 | } |
| 699 | |
| 700 | pub(crate) fn doc_create_view<'a, T: AstInfo>( |
| 701 | &'a self, |
no test coverage detected