From 3951a506f6ecfd1795cc9554a9a130901eea02d9 Mon Sep 17 00:00:00 2001 From: Simon Vandel Sillesen Date: Fri, 22 Aug 2025 21:56:53 +0200 Subject: [PATCH] `GenericDialect`: Support pipe operator Similar to #1911 and #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 --- src/dialect/generic.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/dialect/generic.rs b/src/dialect/generic.rs index b4c3ef027..dffc5b527 100644 --- a/src/dialect/generic.rs +++ b/src/dialect/generic.rs @@ -64,6 +64,10 @@ impl Dialect for GenericDialect { true } + fn supports_pipe_operator(&self) -> bool { + true + } + fn supports_start_transaction_modifier(&self) -> bool { true }