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