Skip to content

Commit

Permalink
Merge pull request #3841 from hgzimmerman/bug/postgres_backend_combin…
Browse files Browse the repository at this point in the history
…e_dsl

Use postgres_backend feature flag for SupportsCombinationClause impl
  • Loading branch information
weiznich authored Oct 24, 2023
2 parents 7042083 + 672b0e4 commit 89285c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion diesel/src/query_builder/combination_clause.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ pub trait SupportsCombinationClause<Combinator, Rule> {}
/// Wrapper used to wrap rhs sql in parenthesis when supported by backend
pub struct ParenthesisWrapper<T>(T);

#[cfg(feature = "postgres")]
#[cfg(feature = "postgres_backend")]
mod postgres {
use super::*;
use crate::pg::Pg;
Expand Down

0 comments on commit 89285c5

Please sign in to comment.