-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a function for SQL
EXISTS
expressions.
While this is useful for some cases where you don't want to load the rows, this won't fill every use case for the expression, as right now you wouldn't be able to build a query that references the outer table. For us to do that and have it be type safe we'd need overlapping impls for `SelectableExpression` (story of my life), which requires rust-lang/rust#29864 being implemented. Fixes #414.
- Loading branch information
Showing
3 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
use backend::Backend; | ||
use expression::{Expression, SelectableExpression, NonAggregate}; | ||
use query_builder::*; | ||
use result::QueryResult; | ||
use types::Bool; | ||
|
||
/// Creates a SQL `EXISTS` expression. The argument must be a complete SQL | ||
/// query. The result of this could in theory be passed to `.filter`, but since | ||
/// the query cannot reference columns from the outer query, this is of limited | ||
/// usefulness. | ||
/// | ||
/// # Example | ||
/// ```rust | ||
/// # #[macro_use] extern crate diesel; | ||
/// # include!("src/doctest_setup.rs"); | ||
/// # | ||
/// # table! { | ||
/// # users { | ||
/// # id -> Integer, | ||
/// # name -> VarChar, | ||
/// # } | ||
/// # } | ||
/// # | ||
/// # fn main() { | ||
/// # use self::users::dsl::*; | ||
/// # use diesel::select; | ||
/// # use diesel::expression::dsl::exists; | ||
/// # let connection = establish_connection(); | ||
/// let sean_exists = select(exists(users.filter(name.eq("Sean")))) | ||
/// .get_result(&connection); | ||
/// let jim_exists = select(exists(users.filter(name.eq("Jim")))) | ||
/// .get_result(&connection); | ||
/// assert_eq!(Ok(true), sean_exists); | ||
/// assert_eq!(Ok(false), jim_exists); | ||
/// # } | ||
/// ``` | ||
pub fn exists<T: AsQuery>(query: T) -> Exists<T::Query> { | ||
Exists(query.as_query()) | ||
} | ||
|
||
#[derive(Debug, Clone, Copy)] | ||
pub struct Exists<T>(T); | ||
|
||
impl<T> Expression for Exists<T> where | ||
T: Query, | ||
{ | ||
type SqlType = Bool; | ||
} | ||
|
||
impl<T, QS> SelectableExpression<QS> for Exists<T> where | ||
Exists<T>: Expression, | ||
{ | ||
} | ||
|
||
impl<T> NonAggregate for Exists<T> { | ||
} | ||
|
||
impl<T, DB> QueryFragment<DB> for Exists<T> where | ||
DB: Backend, | ||
T: QueryFragment<DB>, | ||
{ | ||
fn to_sql(&self, out: &mut DB::QueryBuilder) -> BuildQueryResult { | ||
out.push_sql("EXISTS ("); | ||
try!(self.0.to_sql(out)); | ||
out.push_sql(")"); | ||
Ok(()) | ||
} | ||
|
||
fn collect_binds(&self, out: &mut DB::BindCollector) -> QueryResult<()> { | ||
try!(self.0.collect_binds(out)); | ||
Ok(()) | ||
} | ||
|
||
fn is_safe_to_cache_prepared(&self) -> bool { | ||
self.0.is_safe_to_cache_prepared() | ||
} | ||
} | ||
|
||
impl_query_id!(Exists<T>); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters