aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-03-26 07:18:21 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-03-26 07:18:21 -0700
commit2d33796457b139a58539c890624591c97354d334 (patch)
treedd43c9a7a61bc3bb6f90f0414ebf3d9860931949 /activerecord/CHANGELOG.md
parent078bfbffa41e29a9d8ff2cf56e4c9254e7260f24 (diff)
parent203e0e0e4a863a25fedfe6985b371c3f4cfc6839 (diff)
downloadrails-2d33796457b139a58539c890624591c97354d334.tar.gz
rails-2d33796457b139a58539c890624591c97354d334.tar.bz2
rails-2d33796457b139a58539c890624591c97354d334.zip
Merge pull request #9923 from danmcclain/psql-concurrent-indexes
Adds support for concurrent indexing in PostgreSQL adapter
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md12
1 files changed, 12 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index 16460ec36d..a37147af2b 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -3,6 +3,18 @@
* PostgreSQL geometric type point is supported by ActiveRecord. Fixes #7324.
*Martin Schuerrer*
+
+* Add suport for concurrent indexing in PostgreSQL adapter via the
+ `algorithm: :concurrently` option
+
+ add_index(:people, :last_name, algorithm: :concurrently)
+
+ Also adds support for MySQL index algorithms (`COPY`, `INPLACE`,
+ `DEFAULT`) via the `algorithm: :copy` option
+
+ add_index(:people, :last_name, algorithm: :copy) # or :inplace/:default
+
+ *Dan McClain*
* Add an `add_index` override in Postgresql adapter and MySQL adapter
to allow custom index type support. Fixes #6101.