aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/primitives/attribute.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/algebra/primitives/attribute.rb')
-rw-r--r--lib/arel/algebra/primitives/attribute.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/arel/algebra/primitives/attribute.rb b/lib/arel/algebra/primitives/attribute.rb
index 7a4411e248..aa1f2ae00c 100644
--- a/lib/arel/algebra/primitives/attribute.rb
+++ b/lib/arel/algebra/primitives/attribute.rb
@@ -39,8 +39,8 @@ module Arel
relation == new_relation ? self : Attribute.new(new_relation, name, :alias => @alias, :ancestor => self)
end
- def to_attribute
- self
+ def to_attribute(relation)
+ bind(relation)
end
end
include Transformations