Skip to content

Commit 9991ea1

Browse files
author
Alex.Mo
committed
index expr donot has with_fill
1 parent 8ee7628 commit 9991ea1

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

src/parser/mod.rs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7654,18 +7654,10 @@ impl<'a> Parser<'a> {
76547654
let expr = self.parse_index_expr()?;
76557655
let options = self.parse_order_by_options()?;
76567656

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-
76657657
Ok(OrderByExpr {
76667658
expr,
76677659
options,
7668-
with_fill,
7660+
with_fill: None,
76697661
})
76707662
}
76717663

0 commit comments

Comments
 (0)