aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-04-16 09:07:23 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-04-16 09:07:23 -0700
commita1945cb0b9844f3a43fe03d754979885aa5df48a (patch)
tree1d747920e72c8b4128d4bb91ec008262f934cbf4 /activerecord/CHANGELOG.md
parentb8e26642504fb8722f88b68a211eeaf5d40e2749 (diff)
parent01a2ac12b90691315dec7792f98f895819c53e06 (diff)
downloadrails-a1945cb0b9844f3a43fe03d754979885aa5df48a.tar.gz
rails-a1945cb0b9844f3a43fe03d754979885aa5df48a.tar.bz2
rails-a1945cb0b9844f3a43fe03d754979885aa5df48a.zip
Merge pull request #8206 from kennyj/fix_7619-2
Fix #7619. 0x prefix must be added when assigning hexadecimal string into bit column in Postgresql, because solving ambiguity.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 61c217857d..52300fd53f 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,5 +1,9 @@
## Rails 4.0.0 (unreleased) ##
+* `0x` prefix must be added when assigning hexadecimal string into `bit` column in PostgreSQL.
+
+ *kennyj*
+
* Added Statement Cache to allow the caching of a single statement. The cache works by
duping the relation returned from yielding a statement, which allows skipping the AST
building phase for following executes. The cache returns results in array format.