aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/nodes/sql_literal.rb
blob: 2c56644b995148f2426a52c3b45e19fb265b14a6 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

              
                             
                               
                                
                                    
                                     



                                


       
module Arel
  module Nodes
    class SqlLiteral < String
      include Arel::Expressions
      include Arel::Predications
      include Arel::AliasPredication
      include Arel::OrderPredications

      def encode_with(coder)
        coder.scalar = self.to_s
      end
    end
  end
end