debian-mirror-gitlab/debian/gems-compat/arel-8.0.0/lib/arel/nodes/count.rb

11 lines
238 B
Ruby

# frozen_string_literal: true
module Arel
module Nodes
class Count < Arel::Nodes::Function
def initialize expr, distinct = false, aliaz = nil
super(expr, aliaz)
@distinct = distinct
end
end
end
end