Skip to content

Commit

Permalink
rename exists as exists_implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
vnghia committed Feb 23, 2024
1 parent ad8ef47 commit 7b2a829
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions diesel/src/expression/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,11 @@ pub(crate) mod assume_not_null;
pub(crate) mod bound;
mod coerce;
pub(crate) mod count;
#[cfg(not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"))]
pub(crate) mod exists;
#[cfg(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes")]
pub mod exists;
use exists as exists_implementation;
#[cfg(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes")]
pub mod exists_implementation;
pub(crate) mod grouped;
pub(crate) mod helper_types;
mod not;
Expand Down

0 comments on commit 7b2a829

Please sign in to comment.