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.
1 parent 6d4e722 commit f01301dCopy full SHA for f01301d
src/parser/mod.rs
@@ -10653,7 +10653,11 @@ impl<'a> Parser<'a> {
10653
None
10654
};
10655
10656
- let pipe_operators = self.parse_pipe_operators()?;
+ let pipe_operators = if self.dialect.supports_pipe_operator() {
10657
+ self.parse_pipe_operators()?
10658
+ } else {
10659
+ Vec::new()
10660
+ };
10661
10662
Ok(Query {
10663
with,
0 commit comments