diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2015-10-29 17:20:28 +0000 |
---|---|---|
committer | Andrew White <andyw@pixeltrix.co.uk> | 2015-10-29 17:21:49 +0000 |
commit | c087cfc6717335c1cd4b8e438004cedac2dfa492 (patch) | |
tree | 83b74288f4668d5fa2f5a943b570f5bcd840d8f3 /activerecord | |
parent | 3fc2b77e7a33a62fb3e189dbf6cea23dd1dd2937 (diff) | |
download | rails-c087cfc6717335c1cd4b8e438004cedac2dfa492.tar.gz rails-c087cfc6717335c1cd4b8e438004cedac2dfa492.tar.bz2 rails-c087cfc6717335c1cd4b8e438004cedac2dfa492.zip |
Add CHANGELOG entry for #22101 [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/CHANGELOG.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index 614cee4449..e0f3fbdb72 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,3 +1,13 @@ +* Use `UPDATE` rather than `SET` when enabling the `standard_conforming_strings` + setting as this allows us to avoid disabling errors on the PostgreSQL connection. + The former behavior would cause problems when using a connection pooling tool like + PgBouncer because it's not guaranteed to have the same connection between calls to + `execute` and it could leave the connection with errors disabled. + + Fixes #22101. + + *Harry Marr* + * Set `scope.reordering_value` to `true` if :reordering values are specified. Fixes #21886. |