Returns the order by expressions from the query.
(order_by: Option<OrderBy>)
| 383 | |
| 384 | /// Returns the order by expressions from the query. |
| 385 | fn to_order_by_exprs(order_by: Option<OrderBy>) -> Result<Vec<OrderByExpr>> { |
| 386 | to_order_by_exprs_with_select(order_by, None) |
| 387 | } |
| 388 | |
| 389 | /// Returns the order by expressions from the query with the select expressions. |
| 390 | pub(crate) fn to_order_by_exprs_with_select( |
no test coverage detected
searching dependent graphs…