aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorGannon McGibbon <gannon.mcgibbon@gmail.com>2018-11-28 16:15:21 -0500
committerGannon McGibbon <gannon.mcgibbon@gmail.com>2018-11-28 16:20:22 -0500
commit03fadebe0ed1fd384a14e46ba4c828b9a36ab4bf (patch)
treefd4d15d58bc7b3b8cfdf78a55e22793ccfcc1f89 /activerecord/CHANGELOG.md
parent9c6e362a632b15dd4f56534b30144926c29fa323 (diff)
downloadrails-03fadebe0ed1fd384a14e46ba4c828b9a36ab4bf.tar.gz
rails-03fadebe0ed1fd384a14e46ba4c828b9a36ab4bf.tar.bz2
rails-03fadebe0ed1fd384a14e46ba4c828b9a36ab4bf.zip
Allow spaces in postgres table names
Fixes issue where "user post" is misinterpreted as "\"user\".\"post\"" when quoting table names with the postgres adapter.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 9d7bfbcef1..d32c6c3c5d 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,9 @@
+* Allow spaces in postgres table names.
+
+ Fixes issue where "user post" is misinterpreted as "\"user\".\"post\"" when quoting table names with the postgres adapter.
+
+ *Gannon McGibbon*
+
* Cached columns_hash fields should be excluded from ResultSet#column_types
PR #34528 addresses the inconsistent behaviour when attribute is defined for an ignored column. The following test