You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -188,6 +188,11 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
188
188
189
189
* The MySQL connection is using the CLIENT_FOUND_ROWS from now on. This means that updating rows without changing any values will return the number of matched rows (like most other SQL servers do), as opposed to the number of changed rows.
190
190
191
+
* The definition of `ToSql::to_sql` and `QueryFragment::walk_ast` has changed to allow serializing values without
192
+
copying the value itself. This is useful for database backends like sqlite where you can directly share a buffer
193
+
with the database. Beside of the changed signature, existing impls of this trait should remain unchanged in almost
194
+
all cases.
195
+
191
196
### Fixed
192
197
193
198
* Many types were incorrectly considered non-aggregate when they should not
0 commit comments