diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/arel/algebra/relations/operations/where.rb | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/arel/algebra/relations/operations/where.rb b/lib/arel/algebra/relations/operations/where.rb index d851aebc44..98efb72ec1 100644 --- a/lib/arel/algebra/relations/operations/where.rb +++ b/lib/arel/algebra/relations/operations/where.rb @@ -12,17 +12,6 @@ module Arel @wheres ||= relation.wheres + predicates end - def engine - engine = relation.engine - - # Temporary check of whether or not the engine supports where. - if engine.respond_to?(:supports) && !engine.supports(:restricting) - Memory::Engine.new - else - engine - end - end - def eval unoperated_rows.select { |row| predicates.all? { |p| p.eval(row) } } end |