diesel/pg/query_builder/
query_fragment_impls.rs

1use crate::expression::array_comparison::{In, Many, MaybeEmpty, NotIn};
2use crate::pg::backend::PgStyleArrayComparison;
3use crate::pg::types::sql_types::Array;
4use crate::pg::Pg;
5use crate::query_builder::locking_clause::{
6    ForKeyShare, ForNoKeyUpdate, ForShare, ForUpdate, NoModifier, NoWait, SkipLocked,
7};
8use crate::query_builder::upsert::into_conflict_clause::OnConflictSelectWrapper;
9use crate::query_builder::upsert::on_conflict_target_decorations::DecoratedConflictTarget;
10use crate::query_builder::{AstPass, QueryFragment};
11use crate::result::QueryResult;
12use crate::serialize::ToSql;
13use crate::sql_types::{HasSqlType, SingleValue};
14
15impl QueryFragment<Pg> for ForUpdate {
16    fn walk_ast<'b>(&'b self, mut out: AstPass<'_, 'b, Pg>) -> QueryResult<()> {
17        out.push_sql(" FOR UPDATE");
18        Ok(())
19    }
20}
21
22impl QueryFragment<Pg> for ForNoKeyUpdate {
23    fn walk_ast<'b>(&'b self, mut out: AstPass<'_, 'b, Pg>) -> QueryResult<()> {
24        out.push_sql(" FOR NO KEY UPDATE");
25        Ok(())
26    }
27}
28
29impl QueryFragment<Pg> for ForShare {
30    fn walk_ast<'b>(&'b self, mut out: AstPass<'_, 'b, Pg>) -> QueryResult<()> {
31        out.push_sql(" FOR SHARE");
32        Ok(())
33    }
34}
35
36impl QueryFragment<Pg> for ForKeyShare {
37    fn walk_ast<'b>(&'b self, mut out: AstPass<'_, 'b, Pg>) -> QueryResult<()> {
38        out.push_sql(" FOR KEY SHARE");
39        Ok(())
40    }
41}
42
43impl QueryFragment<Pg> for NoModifier {
44    fn walk_ast<'b>(&'b self, _out: AstPass<'_, 'b, Pg>) -> QueryResult<()> {
45        Ok(())
46    }
47}
48
49impl QueryFragment<Pg> for SkipLocked {
50    fn walk_ast<'b>(&'b self, mut out: AstPass<'_, 'b, Pg>) -> QueryResult<()> {
51        out.push_sql(" SKIP LOCKED");
52        Ok(())
53    }
54}
55
56impl QueryFragment<Pg> for NoWait {
57    fn walk_ast<'b>(&'b self, mut out: AstPass<'_, 'b, Pg>) -> QueryResult<()> {
58        out.push_sql(" NOWAIT");
59        Ok(())
60    }
61}
62
63impl<T, U> QueryFragment<Pg, PgStyleArrayComparison> for In<T, U>
64where
65    T: QueryFragment<Pg>,
66    U: QueryFragment<Pg> + MaybeEmpty,
67{
68    fn walk_ast<'b>(&'b self, mut out: AstPass<'_, 'b, Pg>) -> QueryResult<()> {
69        self.left.walk_ast(out.reborrow())?;
70        out.push_sql(" = ANY(");
71        self.values.walk_ast(out.reborrow())?;
72        out.push_sql(")");
73        Ok(())
74    }
75}
76
77impl<T, U> QueryFragment<Pg, PgStyleArrayComparison> for NotIn<T, U>
78where
79    T: QueryFragment<Pg>,
80    U: QueryFragment<Pg> + MaybeEmpty,
81{
82    fn walk_ast<'b>(&'b self, mut out: AstPass<'_, 'b, Pg>) -> QueryResult<()> {
83        self.left.walk_ast(out.reborrow())?;
84        out.push_sql(" != ALL(");
85        self.values.walk_ast(out.reborrow())?;
86        out.push_sql(")");
87        Ok(())
88    }
89}
90
91impl<ST, I> QueryFragment<Pg, PgStyleArrayComparison> for Many<ST, I>
92where
93    ST: SingleValue,
94    Vec<I>: ToSql<Array<ST>, Pg>,
95    Pg: HasSqlType<ST>,
96{
97    fn walk_ast<'b>(&'b self, mut out: AstPass<'_, 'b, Pg>) -> QueryResult<()> {
98        out.push_bind_param::<Array<ST>, Vec<I>>(&self.values)
99    }
100}
101
102impl<T, U> QueryFragment<Pg, crate::pg::backend::PgOnConflictClause>
103    for DecoratedConflictTarget<T, U>
104where
105    T: QueryFragment<Pg>,
106    U: QueryFragment<Pg>,
107{
108    fn walk_ast<'b>(&'b self, mut out: AstPass<'_, 'b, Pg>) -> QueryResult<()> {
109        self.target.walk_ast(out.reborrow())?;
110        self.where_clause.walk_ast(out.reborrow())?;
111        Ok(())
112    }
113}
114
115impl<S> QueryFragment<crate::pg::Pg> for OnConflictSelectWrapper<S>
116where
117    S: QueryFragment<crate::pg::Pg>,
118{
119    fn walk_ast<'b>(&'b self, out: AstPass<'_, 'b, crate::pg::Pg>) -> QueryResult<()> {
120        self.0.walk_ast(out)
121    }
122}