File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -13619,13 +13619,13 @@ impl<'a> Parser<'a> {
1361913619 }
1362013620 }
1362113621
13622- /// Parse an expression, optionally followed by ASC or DESC (used in ORDER BY)
13622+ /// Parse an OrderByExpr expression, optionally followed by ASC or DESC (used in ORDER BY)
1362313623 pub fn parse_order_by_expr(&mut self) -> Result<OrderByExpr, ParserError> {
1362413624 self.parse_create_index_expr::<false>()
1362513625 .map(|index_column| index_column.column)
1362613626 }
1362713627
13628- /// Parse an expression, optionally followed by ASC or DESC (used in ORDER BY )
13628+ /// Parse an IndexColumn expression (used in CREATE INDEX )
1362913629 pub fn parse_create_index_expr<const PARSE_OPERATOR_CLASS: bool>(
1363013630 &mut self,
1363113631 ) -> Result<IndexColumn, ParserError> {
You can’t perform that action at this time.
0 commit comments