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