Skip to content

Commit 1613acf

Browse files
author
Alex.Mo
committed
index expr donot has with_fill
1 parent a362ed7 commit 1613acf

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

src/parser/mod.rs

+1-9
Original file line numberDiff line numberDiff line change
@@ -7633,18 +7633,10 @@ impl<'a> Parser<'a> {
76337633
let expr = self.parse_index_expr()?;
76347634
let options = self.parse_order_by_options()?;
76357635

7636-
let with_fill = if dialect_of!(self is ClickHouseDialect | GenericDialect)
7637-
&& self.parse_keywords(&[Keyword::WITH, Keyword::FILL])
7638-
{
7639-
Some(self.parse_with_fill()?)
7640-
} else {
7641-
None
7642-
};
7643-
76447636
Ok(OrderByExpr {
76457637
expr,
76467638
options,
7647-
with_fill,
7639+
with_fill: None,
76487640
})
76497641
}
76507642

0 commit comments

Comments
 (0)