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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
pub mod changeset; pub mod target; pub use self::changeset::AsChangeset; pub use self::target::{IntoUpdateTarget, UpdateTarget}; use backend::Backend; use dsl::{Filter, IntoBoxed}; use expression::{AppearsOnTable, Expression, NonAggregate, SelectableExpression}; use query_builder::returning_clause::*; use query_builder::where_clause::*; use query_builder::*; use query_dsl::methods::{BoxedDsl, FilterDsl}; use query_dsl::RunQueryDsl; use query_source::Table; use result::Error::QueryBuilderError; use result::QueryResult; /// The type returned by [`update`](../fn.update.html). The only thing you can do /// with this type is call `set` on it. #[deprecated(since = "1.2.0", note = "Use `UpdateStatement<T, U>` instead")] #[cfg(feature = "with-deprecated")] pub type IncompleteUpdateStatement<T, U> = UpdateStatement<T, U>; impl<T, U> UpdateStatement<T, U, SetNotCalled> { pub(crate) fn new(target: UpdateTarget<T, U>) -> Self { UpdateStatement { table: target.table, where_clause: target.where_clause, values: SetNotCalled, returning: NoReturningClause, } } /// Provides the `SET` clause of the `UPDATE` statement. /// /// See [`update`](../fn.update.html) for usage examples, or [the update /// guide](https://diesel.rs/guides/all-about-updates/) for a more exhaustive /// set of examples. pub fn set<V>(self, values: V) -> UpdateStatement<T, U, V::Changeset> where T: Table, V: changeset::AsChangeset<Target = T>, UpdateStatement<T, U, V::Changeset>: AsQuery, { UpdateStatement { table: self.table, where_clause: self.where_clause, values: values.as_changeset(), returning: self.returning, } } } #[derive(Debug, Copy, Clone)] #[must_use = "Queries are only executed when calling `load`, `get_result` or similar."] /// Represents a complete `UPDATE` statement. /// /// See [`update`](../fn.update.html) for usage examples, or [the update /// guide](https://diesel.rs/guides/all-about-updates/) for a more exhaustive /// set of examples. pub struct UpdateStatement<T, U, V = SetNotCalled, Ret = NoReturningClause> { table: T, where_clause: U, values: V, returning: Ret, } /// An `UPDATE` statement with a boxed `WHERE` clause. pub type BoxedUpdateStatement<'a, DB, T, V = SetNotCalled, Ret = NoReturningClause> = UpdateStatement<T, BoxedWhereClause<'a, DB>, V, Ret>; impl<T, U, V, Ret> UpdateStatement<T, U, V, Ret> { /// Adds the given predicate to the `WHERE` clause of the statement being /// constructed. /// /// If there is already a `WHERE` clause, the predicate will be appended /// with `AND`. There is no difference in behavior between /// `update(table.filter(x))` and `update(table).filter(x)`. /// /// # Example /// /// ```rust /// # #[macro_use] extern crate diesel; /// # include!("../../doctest_setup.rs"); /// # /// # fn main() { /// # use schema::users::dsl::*; /// # let connection = establish_connection(); /// let updated_rows = diesel::update(users) /// .set(name.eq("Jim")) /// .filter(name.eq("Sean")) /// .execute(&connection); /// assert_eq!(Ok(1), updated_rows); /// /// let expected_names = vec!["Jim".to_string(), "Tess".to_string()]; /// let names = users.select(name).order(id).load(&connection); /// /// assert_eq!(Ok(expected_names), names); /// # } /// ``` pub fn filter<Predicate>(self, predicate: Predicate) -> Filter<Self, Predicate> where Self: FilterDsl<Predicate>, { FilterDsl::filter(self, predicate) } /// Boxes the `WHERE` clause of this update statement. /// /// This is useful for cases where you want to conditionally modify a query, /// but need the type to remain the same. The backend must be specified as /// part of this. It is not possible to box a query and have it be useable /// on multiple backends. /// /// A boxed query will incur a minor performance penalty, as the query builder /// can no longer be inlined by the compiler. For most applications this cost /// will be minimal. /// /// ### Example /// /// ```rust /// # #[macro_use] extern crate diesel; /// # include!("../../doctest_setup.rs"); /// # /// # fn main() { /// # run_test().unwrap(); /// # } /// # /// # fn run_test() -> QueryResult<()> { /// # use std::collections::HashMap; /// # use schema::users::dsl::*; /// # let connection = establish_connection(); /// # let mut params = HashMap::new(); /// # params.insert("tess_has_been_a_jerk", false); /// let mut query = diesel::update(users) /// .set(name.eq("Jerk")) /// .into_boxed(); /// /// if !params["tess_has_been_a_jerk"] { /// query = query.filter(name.ne("Tess")); /// } /// /// let updated_rows = query.execute(&connection)?; /// assert_eq!(1, updated_rows); /// /// let expected_names = vec!["Jerk", "Tess"]; /// let names = users.select(name).order(id).load::<String>(&connection)?; /// /// assert_eq!(expected_names, names); /// # Ok(()) /// # } /// ``` pub fn into_boxed<'a, DB>(self) -> IntoBoxed<'a, Self, DB> where DB: Backend, Self: BoxedDsl<'a, DB>, { BoxedDsl::internal_into_boxed(self) } } impl<T, U, V, Ret, Predicate> FilterDsl<Predicate> for UpdateStatement<T, U, V, Ret> where U: WhereAnd<Predicate>, Predicate: AppearsOnTable<T>, { type Output = UpdateStatement<T, U::Output, V, Ret>; fn filter(self, predicate: Predicate) -> Self::Output { UpdateStatement { table: self.table, where_clause: self.where_clause.and(predicate), values: self.values, returning: self.returning, } } } impl<'a, T, U, V, Ret, DB> BoxedDsl<'a, DB> for UpdateStatement<T, U, V, Ret> where U: Into<BoxedWhereClause<'a, DB>>, { type Output = BoxedUpdateStatement<'a, DB, T, V, Ret>; fn internal_into_boxed(self) -> Self::Output { UpdateStatement { table: self.table, where_clause: self.where_clause.into(), values: self.values, returning: self.returning, } } } impl<T, U, V, Ret, DB> QueryFragment<DB> for UpdateStatement<T, U, V, Ret> where DB: Backend, T: Table, T::FromClause: QueryFragment<DB>, U: QueryFragment<DB>, V: QueryFragment<DB>, Ret: QueryFragment<DB>, { fn walk_ast(&self, mut out: AstPass<DB>) -> QueryResult<()> { if self.values.is_noop()? { return Err(QueryBuilderError( "There are no changes to save. This query cannot be built".into(), )); } out.unsafe_to_cache_prepared(); out.push_sql("UPDATE "); self.table.from_clause().walk_ast(out.reborrow())?; out.push_sql(" SET "); self.values.walk_ast(out.reborrow())?; self.where_clause.walk_ast(out.reborrow())?; self.returning.walk_ast(out.reborrow())?; Ok(()) } } impl<T, U, V, Ret> QueryId for UpdateStatement<T, U, V, Ret> { type QueryId = (); const HAS_STATIC_QUERY_ID: bool = false; } impl<T, U, V> AsQuery for UpdateStatement<T, U, V, NoReturningClause> where T: Table, UpdateStatement<T, U, V, ReturningClause<T::AllColumns>>: Query, { type SqlType = <Self::Query as Query>::SqlType; type Query = UpdateStatement<T, U, V, ReturningClause<T::AllColumns>>; fn as_query(self) -> Self::Query { self.returning(T::all_columns()) } } impl<T, U, V, Ret> Query for UpdateStatement<T, U, V, ReturningClause<Ret>> where T: Table, Ret: Expression + SelectableExpression<T> + NonAggregate, { type SqlType = Ret::SqlType; } impl<T, U, V, Ret, Conn> RunQueryDsl<Conn> for UpdateStatement<T, U, V, Ret> {} impl<T, U, V> UpdateStatement<T, U, V, NoReturningClause> { /// Specify what expression is returned after execution of the `update`. /// # Examples /// /// ### Updating a single record: /// /// ```rust /// # #[macro_use] extern crate diesel; /// # include!("../../doctest_setup.rs"); /// # /// # #[cfg(feature = "postgres")] /// # fn main() { /// # use schema::users::dsl::*; /// # let connection = establish_connection(); /// let updated_name = diesel::update(users.filter(id.eq(1))) /// .set(name.eq("Dean")) /// .returning(name) /// .get_result(&connection); /// assert_eq!(Ok("Dean".to_string()), updated_name); /// # } /// # #[cfg(not(feature = "postgres"))] /// # fn main() {} /// ``` pub fn returning<E>(self, returns: E) -> UpdateStatement<T, U, V, ReturningClause<E>> where T: Table, UpdateStatement<T, U, V, ReturningClause<E>>: Query, { UpdateStatement { table: self.table, where_clause: self.where_clause, values: self.values, returning: ReturningClause(returns), } } } /// Indicates that you have not yet called `.set` on an update statement #[derive(Debug, Clone, Copy)] pub struct SetNotCalled;