Flowdock
method

case_sensitive_comparison

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: ActiveRecord::ConnectionAdapters
case_sensitive_comparison(table, attribute, column, value) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb, line 493
      def case_sensitive_comparison(table, attribute, column, value) # :nodoc:
        if column.collation && !column.case_sensitive?
          table[attribute].eq(Arel::Nodes::Bin.new(value))
        else
          super
        end
      end
Register or log in to add new notes.