method

sanitize_as_sql_comment

rails latest stable - Class: Arel::Visitors::ToSql
sanitize_as_sql_comment(value)
private

No documentation available.

# File activerecord/lib/arel/visitors/to_sql.rb, line 885
        def sanitize_as_sql_comment(value)
          return value if Arel::Nodes::SqlLiteral === value
          @connection.sanitize_as_sql_comment(value)
        end