aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/sql_literal.rb
blob: f844ea62ce49278b54e712bbe9be83ff6e295551 (plain) (tree)
1
2
3
4
5
6
7
8







                                                         
module Arel
  class SqlLiteral < Nodes::SqlLiteral
    def initialize string
      warn "#{caller.first} should use Nodes::SqlLiteral"
      super
    end
  end
end