diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-07-15 08:38:29 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2017-07-18 03:34:24 +0900 |
commit | 26ba655f36c20315390497a0963c23014cadeb91 (patch) | |
tree | 1cefae3a645371b9e17eeabe09af1506c2c48ed6 /activerecord/lib/active_record | |
parent | 8acca896cbaa01f6fc51969601888a440e83d53a (diff) | |
download | rails-26ba655f36c20315390497a0963c23014cadeb91.tar.gz rails-26ba655f36c20315390497a0963c23014cadeb91.tar.bz2 rails-26ba655f36c20315390497a0963c23014cadeb91.zip |
Fix `where` with a custom table
Without this fix, SELECT clause doesn't use a custom table alias name:
```
% ARCONN=sqlite3 be ruby -w -Itest test/cases/relations_test.rb -n test_using_a_custom_table_affects_the_wheres
Using sqlite3
Run options: -n test_using_a_custom_table_affects_the_wheres --seed 31818
E
Error:
RelationTest#test_using_a_custom_table_affects_the_wheres:
ActiveRecord::StatementInvalid: SQLite3::SQLException: no such table: posts: SELECT "posts".* FROM "posts" "omg_posts" WHERE "omg_posts"."title" = ? LIMIT ?
```
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r-- | activerecord/lib/active_record/relation/query_methods.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/relation/query_methods.rb b/activerecord/lib/active_record/relation/query_methods.rb index 8c2d546aff..c26c176c7b 100644 --- a/activerecord/lib/active_record/relation/query_methods.rb +++ b/activerecord/lib/active_record/relation/query_methods.rb @@ -1048,7 +1048,7 @@ module ActiveRecord if select_values.any? arel.project(*arel_columns(select_values.uniq)) else - arel.project(@klass.arel_table[Arel.star]) + arel.project(table[Arel.star]) end end |