mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
e4df08fadb
Not required after https://github.com/rails/arel/pull/449
12 lines
254 B
Ruby
12 lines
254 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Arel # :nodoc: all
|
|
module Nodes
|
|
class Count < Arel::Nodes::Function
|
|
def initialize(expr, distinct = false, aliaz = nil)
|
|
super(expr, aliaz)
|
|
@distinct = distinct
|
|
end
|
|
end
|
|
end
|
|
end
|