aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/engines/sql/relations/utilities/nil.rb
blob: 519ea8acf1b6e764b460dd99bed0ced7b36cd5dc (plain) (blame)
1
2
3
4
5
6
module Arel
  class Nil < Relation
    def table_sql(formatter = nil); '' end
    def name; '' end
  end
end