blob: 5c8ade1cf98fbec71c8effc0ff8170a36ccb19f2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
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
|