aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2017-05-02 15:37:06 -0400
committerJon Moss <me@jonathanmoss.me>2017-05-02 17:25:38 -0400
commit8d64cd86db1bc5e1ad119d13eb14f94726a0765f (patch)
tree8e3c6148597402a3dd17f098481ef8631b1c72f0 /activerecord/lib/active_record
parent39a2e1465e15d1da56ba1f4ed14fd38740bd86d4 (diff)
downloadrails-8d64cd86db1bc5e1ad119d13eb14f94726a0765f.tar.gz
rails-8d64cd86db1bc5e1ad119d13eb14f94726a0765f.tar.bz2
rails-8d64cd86db1bc5e1ad119d13eb14f94726a0765f.zip
Add type caster to `RuntimeReflection#alias_name`
Since we have been using this `Arel::Table` since 111ccc832bc977b15af12c14e7ca078dad2d4373, in order to properly handle queries, it's important that we properly type cast arguments.
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r--activerecord/lib/active_record/reflection.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/reflection.rb b/activerecord/lib/active_record/reflection.rb
index 5ce134d6b7..1a9e0a4a40 100644
--- a/activerecord/lib/active_record/reflection.rb
+++ b/activerecord/lib/active_record/reflection.rb
@@ -1105,7 +1105,7 @@ module ActiveRecord
end
def alias_name
- Arel::Table.new(table_name)
+ Arel::Table.new(table_name, type_caster: klass.type_caster)
end
def all_includes; yield; end