aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/sql_literal.rb
blob: a98a9a058cfcba018571adc4c50ae32813510379 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Arel
  class SqlLiteral < String
    def relation
      nil
    end

    def to_sql(formatter = nil)
      self
    end

    include Attribute::Expressions
  end
end