aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/arel/window_predications.rb
blob: f93dede0360dbaabc6fcbd4d7aa9ca3c9ac3cb33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true
module Arel
  module WindowPredications

    def over(expr = nil)
      Nodes::Over.new(self, expr)
    end

  end
end