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

    class BindParam < SqlLiteral
    end
  end
end