We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
with_fill
1 parent 8ee7628 commit 9991ea1Copy full SHA for 9991ea1
src/parser/mod.rs
@@ -7654,18 +7654,10 @@ impl<'a> Parser<'a> {
7654
let expr = self.parse_index_expr()?;
7655
let options = self.parse_order_by_options()?;
7656
7657
- let with_fill = if dialect_of!(self is ClickHouseDialect | GenericDialect)
7658
- && self.parse_keywords(&[Keyword::WITH, Keyword::FILL])
7659
- {
7660
- Some(self.parse_with_fill()?)
7661
- } else {
7662
- None
7663
- };
7664
-
7665
Ok(OrderByExpr {
7666
expr,
7667
options,
7668
- with_fill,
+ with_fill: None,
7669
})
7670
}
7671
0 commit comments