aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/sql_literal.rb
blob: ad0bb00484b475fea63f92cc798cb13dfe3fc184 (plain) (blame)
1
2
3
4
5
6
7
8
9
module Arel
  module Nodes
    class SqlLiteral < String
      include Arel::Expressions
      include Arel::Predications
      include Arel::OrderPredications
    end
  end
end