From 779dcf91f62bc72c89ee0815725fc626c2204d43 Mon Sep 17 00:00:00 2001 From: Simon Vandel Sillesen Date: Sat, 23 Aug 2025 09:11:29 +0200 Subject: [PATCH] `GenericDialect`: Support pipe operator (#2012) --- src/dialect/generic.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/dialect/generic.rs b/src/dialect/generic.rs index b4c3ef02..dffc5b52 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 }