aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/primitives
diff options
context:
space:
mode:
authorNick Kallen <nkallen@nick-kallens-computer-2.local>2008-05-17 11:59:03 -0700
committerNick Kallen <nkallen@nick-kallens-computer-2.local>2008-05-17 11:59:03 -0700
commit3f55d33e530da1b5c454e0cfe920462d497649c8 (patch)
tree261b7a842ce9b2733bc7803b5d67a14356db6216 /lib/arel/primitives
parent732b222126bd6b37925a4fcdcda832de65858122 (diff)
downloadrails-3f55d33e530da1b5c454e0cfe920462d497649c8.tar.gz
rails-3f55d33e530da1b5c454e0cfe920462d497649c8.tar.bz2
rails-3f55d33e530da1b5c454e0cfe920462d497649c8.zip
simplificatin of attribute division
Diffstat (limited to 'lib/arel/primitives')
-rw-r--r--lib/arel/primitives/attribute.rb18
1 files changed, 3 insertions, 15 deletions
diff --git a/lib/arel/primitives/attribute.rb b/lib/arel/primitives/attribute.rb
index 1de2bf7cb0..bb951638e4 100644
--- a/lib/arel/primitives/attribute.rb
+++ b/lib/arel/primitives/attribute.rb
@@ -38,12 +38,11 @@ module Arel
end
def original_relation
- relation.relation_for(self)
- # root.relation
+ @original_relation ||= relation.relation_for(self)
end
def original_attribute
- original_relation[self]
+ @original_attribute ||= original_relation[self]
end
module Transformations
@@ -78,19 +77,8 @@ module Arel
history.include?(other)
end
- def root?
- relation.root?
- end
-
- def root
- @root ||= history.detect(&:root?)
- end
-
def /(other)
- if other then (history & other.history).size.to_f / Set.new(history + other.history).size
- else 0
- end
- # 1 / (history.index(other) || -1)
+ other ? (history & other.history).size : 0
end
end
include Congruence