aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-04-12 15:48:19 +0200
committerYves Senn <yves.senn@gmail.com>2013-04-12 15:52:43 +0200
commitc245437de7ec1a4b9ee8068751ac5bbd0e9d5881 (patch)
tree5fc222d163b985232dbe9cf93bdd49d00918ef03 /activerecord
parent481618cfc20faf980e0e238ffa1a9d192b51d00b (diff)
downloadrails-c245437de7ec1a4b9ee8068751ac5bbd0e9d5881.tar.gz
rails-c245437de7ec1a4b9ee8068751ac5bbd0e9d5881.tar.bz2
rails-c245437de7ec1a4b9ee8068751ac5bbd0e9d5881.zip
use unified and clean formatting in CHANGELOGS. [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/CHANGELOG.md18
1 files changed, 9 insertions, 9 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index aa156f5d4f..062c548f20 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -6,11 +6,11 @@
Example:
- cache = ActiveRecord::StatementCache.new do
- Book.where(name: "my book").limit(100)
- end
+ cache = ActiveRecord::StatementCache.new do
+ Book.where(name: "my book").limit(100)
+ end
- books = cache.execute
+ books = cache.execute
The solution attempts to get closer to the speed of `find_by_sql` but still maintaining
the expressiveness of the Active Record queries.
@@ -44,7 +44,6 @@
Ths solution is to build JoinAssociation when two relations with join information are being
merged. And later while building the arel use the previously built `JoinAssociation` record
in `JoinDependency#graft` to build the right from clause.
-
Fixes #3002.
*Jared Armstrong and Neeraj Singh*
@@ -76,7 +75,8 @@
*Michal Cichra*
* `has_many` using `:through` now obeys the order clause mentioned in
- through association. Fixes #10016.
+ through association.
+ Fixes #10016.
*Neeraj Singh*
@@ -141,7 +141,8 @@
*Ken Mazaika*
* Add an `add_index` override in PostgreSQL adapter and MySQL adapter
- to allow custom index type support. Fixes #6101.
+ to allow custom index type support.
+ Fixes #6101.
add_index(:wikis, :body, :using => 'gin')
@@ -165,7 +166,6 @@
in the association for a particular id. Then, it will go to the DB if it
is not found. This is accomplished by calling `find_by_scan` in
collection associations whenever `options[:inverse_of]` is not nil.
-
Fixes #9470.
*John Wang*
@@ -1275,7 +1275,7 @@
* Explain only normal CRUD sql (select / update / insert / delete).
Fix problem that explains unexplainable sql.
- Closes #7544 #6458.
+ Fixes #7544 #6458.
*kennyj*