method

disambiguate_condition

disambiguate_condition(table, condition)
private

No documentation available.

# File activerecord/lib/active_record/associations/association_scope.rb, line 117
      def disambiguate_condition(table, condition)
        if condition.is_a?(Hash)
          Hash[
            condition.map do |k, v|
              if v.is_a?(Hash)
                [k, v]
              else
                [table.table_alias || table.name, { k => v }]
              end
            end
          ]
        else
          condition
        end
      end