GenericDialect: Support pipe operator (#2012)
Some checks failed
license / Release Audit Tool (RAT) (push) Has been cancelled
Rust / codestyle (push) Has been cancelled
Rust / lint (push) Has been cancelled
Rust / benchmark-lint (push) Has been cancelled
Rust / compile (push) Has been cancelled
Rust / docs (push) Has been cancelled
Rust / compile-no-std (push) Has been cancelled
Rust / test (beta) (push) Has been cancelled
Rust / test (nightly) (push) Has been cancelled
Rust / test (stable) (push) Has been cancelled

This commit is contained in:
Simon Vandel Sillesen 2025-08-23 09:11:29 +02:00 committed by GitHub
parent 376f47e3d1
commit 779dcf91f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -64,6 +64,10 @@ impl Dialect for GenericDialect {
true
}
fn supports_pipe_operator(&self) -> bool {
true
}
fn supports_start_transaction_modifier(&self) -> bool {
true
}