aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/relations/operations/where.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/arel/relations/operations/where.rb')
-rw-r--r--lib/arel/relations/operations/where.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/arel/relations/operations/where.rb b/lib/arel/relations/operations/where.rb
deleted file mode 100644
index 608aaeb4b7..0000000000
--- a/lib/arel/relations/operations/where.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-module Arel
- class Where < Compound
- attributes :relation, :predicate
- deriving :==
-
- def initialize(relation, *predicates, &block)
- predicate = block_given?? yield(relation) : predicates.shift
- @relation = predicates.empty?? relation : Where.new(relation, *predicates)
- @predicate = predicate.bind(@relation)
- end
-
- def wheres
- @wheres ||= (relation.wheres + [predicate]).collect { |p| p.bind(self) }
- end
- end
-end