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

module Arel # :nodoc: all
  module WindowPredications
    def over(expr = nil)
      Nodes::Over.new(self, expr)
    end
  end
end