aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/nodes/over.rb
blob: 21d1b5029e09614c36be43c2b124f500fa4486c1 (plain) (tree)
1
2
3
4
5
6



                       

                                    








                                       
module Arel
  module Nodes

    class Over < Binary
      include Arel::AliasPredication

      def initialize(left, right = nil)
        super(left, right)
      end

      def operator; 'OVER' end
    end

  end
end