1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use expression::*;
use query_builder::{Query, AsQuery};
use query_source::QuerySource;
pub trait SelectDsl<
Selection: Expression,
Type = <Selection as Expression>::SqlType,
> {
type Output: Query<SqlType=Type>;
fn select(self, selection: Selection) -> Self::Output;
}
impl<T, Selection, Type> SelectDsl<Selection, Type> for T where
Selection: Expression,
T: QuerySource + AsQuery,
T::Query: SelectDsl<Selection, Type>,
{
type Output = <T::Query as SelectDsl<Selection, Type>>::Output;
fn select(self, selection: Selection) -> Self::Output {
self.as_query().select(selection)
}
}
#[doc(hidden)]
pub trait SelectSqlDsl: Sized {
fn select_sql<A>(self, columns: &str)
-> <Self as SelectDsl<SqlLiteral<A>>>::Output where
Self: SelectDsl<SqlLiteral<A>>,
{
self.select_sql_inner(columns)
}
fn select_sql_inner<A, S>(self, columns: S)
-> <Self as SelectDsl<SqlLiteral<A>>>::Output where
S: Into<String>,
Self: SelectDsl<SqlLiteral<A>>,
{
self.select(SqlLiteral::new(columns.into()))
}
}
impl<T> SelectSqlDsl for T {}