Skip to content

Commit 7b2a829

Browse files
committed
rename exists as exists_implementation
1 parent ad8ef47 commit 7b2a829

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

diesel/src/expression/mod.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,11 @@ pub(crate) mod assume_not_null;
2626
pub(crate) mod bound;
2727
mod coerce;
2828
pub(crate) mod count;
29-
#[cfg(not(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes"))]
3029
pub(crate) mod exists;
3130
#[cfg(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes")]
32-
pub mod exists;
31+
use exists as exists_implementation;
32+
#[cfg(feature = "i-implement-a-third-party-backend-and-opt-into-breaking-changes")]
33+
pub mod exists_implementation;
3334
pub(crate) mod grouped;
3435
pub(crate) mod helper_types;
3536
mod not;

0 commit comments

Comments
 (0)