aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-01-21 17:17:13 +0100
committerYves Senn <yves.senn@gmail.com>2014-01-21 17:21:20 +0100
commite011258c30b61f30e40fb2d9b2f58eb1f700dfd5 (patch)
tree6244915c20c76047a61b08993ec8b0e3dd6590f4 /activerecord/lib
parentc60e06261b9e26110f8ac639224c153d4ff77752 (diff)
downloadrails-e011258c30b61f30e40fb2d9b2f58eb1f700dfd5.tar.gz
rails-e011258c30b61f30e40fb2d9b2f58eb1f700dfd5.tar.bz2
rails-e011258c30b61f30e40fb2d9b2f58eb1f700dfd5.zip
prepend table name for `Relation#select` columns.
This fixes a bug where `select(:id)` combined with `joins()` raised: ``` ActiveRecord::StatementInvalid: SQLite3::SQLException: ambiguous column name: id: SELECT id, authors.author_address_id FROM "posts" INNER JOIN "authors" ON "authors"."id" = "posts"."author_id" ORDER BY posts.id LIMIT 3 ``` The `select_values` are still String and Symbols because other parts (mainly calculations.rb) rely on that fact. /cc @tenderlove
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/relation/query_methods.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/relation/query_methods.rb b/activerecord/lib/active_record/relation/query_methods.rb
index 979216bee7..d392f759bd 100644
--- a/activerecord/lib/active_record/relation/query_methods.rb
+++ b/activerecord/lib/active_record/relation/query_methods.rb
@@ -987,7 +987,10 @@ module ActiveRecord
def build_select(arel, selects)
if !selects.empty?
- arel.project(*selects)
+ expanded_select = selects.map do |field|
+ columns_hash.key?(field.to_s) ? arel_table[field] : field
+ end
+ arel.project(*expanded_select)
elsif from_value
arel.project(Arel.star)
else