blob: 258f60f478802f0c75ea19984b8145d792970d7c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
module Arel
class Nil < Relation
def table; self end
def table_sql(formatter = nil); '' end
def name; '' end
def to_s; '' end
def ==(other)
self.class == other.class
end
end
end
|