Skip to content

Commit 3951a50

Browse files
committed
GenericDialect: Support pipe operator
Similar to apache#1911 and apache#1921 The docs for GenericDialect says that is can be permissive, so I thought it could support pipe operators. This will make the out-of-the-box experience of DataFusion better
1 parent 376f47e commit 3951a50

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/dialect/generic.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ impl Dialect for GenericDialect {
6464
true
6565
}
6666

67+
fn supports_pipe_operator(&self) -> bool {
68+
true
69+
}
70+
6771
fn supports_start_transaction_modifier(&self) -> bool {
6872
true
6973
}

0 commit comments

Comments
 (0)