aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/associations/has_many_association.rb
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2006-01-21 07:53:45 +0000
committerMichael Koziarski <michael@koziarski.com>2006-01-21 07:53:45 +0000
commit8fe6b90e5fecf276bf24542e513ad6496da283da (patch)
tree9d6d0fe1c8f1dfcba00e4091370749c42617dc2d /activerecord/lib/active_record/associations/has_many_association.rb
parenta14b59b4b93dd2deeb39b717c75a6d06a1cc40be (diff)
downloadrails-8fe6b90e5fecf276bf24542e513ad6496da283da.tar.gz
rails-8fe6b90e5fecf276bf24542e513ad6496da283da.tar.bz2
rails-8fe6b90e5fecf276bf24542e513ad6496da283da.zip
Fix .count for has_many associations with multi-line finder-sql. Closes #3540
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3450 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/associations/has_many_association.rb')
-rw-r--r--activerecord/lib/active_record/associations/has_many_association.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/has_many_association.rb b/activerecord/lib/active_record/associations/has_many_association.rb
index 5a29ffaa30..7d8f1c6b0c 100644
--- a/activerecord/lib/active_record/associations/has_many_association.rb
+++ b/activerecord/lib/active_record/associations/has_many_association.rb
@@ -179,7 +179,8 @@ module ActiveRecord
if @reflection.options[:counter_sql]
@counter_sql = interpolate_sql(@reflection.options[:counter_sql])
elsif @reflection.options[:finder_sql]
- @reflection.options[:counter_sql] = @reflection.options[:finder_sql].gsub(/SELECT (.*) FROM/i, "SELECT COUNT(*) FROM")
+ # replace the SELECT clause with COUNT(*), preserving any hints within /* ... */
+ @reflection.options[:counter_sql] = @reflection.options[:finder_sql].sub(/SELECT (\/\*.*?\*\/ )?(.*)\bFROM\b/im) { "SELECT #{$1}COUNT(*) FROM" }
@counter_sql = interpolate_sql(@reflection.options[:counter_sql])
else
@counter_sql = @finder_sql