aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2012-06-10 19:49:02 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2012-06-11 00:10:55 -0300
commitc9f27e3a479e17cd94248c007e4f528026bc18f6 (patch)
tree841997003fcebc7c11c79b92d62d6f49c688c64d /activerecord/lib/active_record/relation
parentbbec883edb350cc9f75beea183e335b91a11e242 (diff)
downloadrails-c9f27e3a479e17cd94248c007e4f528026bc18f6.tar.gz
rails-c9f27e3a479e17cd94248c007e4f528026bc18f6.tar.bz2
rails-c9f27e3a479e17cd94248c007e4f528026bc18f6.zip
Merge pull request #6698 from yahonda/address_ora_911_master
Address ORA-00911 errors because of the heading underscore.
Diffstat (limited to 'activerecord/lib/active_record/relation')
-rw-r--r--activerecord/lib/active_record/relation/finder_methods.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/relation/finder_methods.rb b/activerecord/lib/active_record/relation/finder_methods.rb
index 86f1d6936e..abc67d9c15 100644
--- a/activerecord/lib/active_record/relation/finder_methods.rb
+++ b/activerecord/lib/active_record/relation/finder_methods.rb
@@ -190,7 +190,7 @@ module ActiveRecord
join_dependency = construct_join_dependency_for_association_find
relation = construct_relation_for_association_find(join_dependency)
- relation = relation.except(:select, :order).select("1 AS _one").limit(1)
+ relation = relation.except(:select, :order).select("1 AS one").limit(1)
case id
when Array, Hash