aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/engines/memory/engine.rb
blob: 0142c49aa320a9c8b48a0ba5507aae15f416379f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module Arel
  module Memory
    class Engine
      def read(relation)
        relation.eval
      end
      alias :create :read
    end
  end
end