Sha256: f456293ecb2fbcd0c83bacc5fe07aab14679cd65708e84cdedaeea2200f87239

Contents?: true

Size: 885 Bytes

Versions: 9

Compression:

Stored size: 885 Bytes

Contents

module Searchlogic
  module ActiveRecord
    # Active Record is pretty inconsistent with how their SQL is constructed. This
    # method attempts to close the gap between the various inconsistencies.
    module Consistency
      def self.included(klass)
        klass.class_eval do
          alias_method_chain :merge_joins, :searchlogic
        end
      end
    
      # In AR multiple joins are sometimes in a single join query, and other times they
      # are not. The merge_joins method in AR should account for this, but it doesn't.
      # This fixes that problem. This way there is one join per string, which allows
      # the merge_joins method to delete duplicates.
      def merge_joins_with_searchlogic(*args)
        joins = merge_joins_without_searchlogic(*args)
        joins.collect { |j| j.is_a?(String) ? j.split("  ") : j }.flatten.uniq
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 3 rubygems

Version Path
binarylogic-searchlogic-2.2.0 lib/searchlogic/active_record/consistency.rb
binarylogic-searchlogic-2.2.1 lib/searchlogic/active_record/consistency.rb
binarylogic-searchlogic-2.2.2 lib/searchlogic/active_record/consistency.rb
binarylogic-searchlogic-2.2.3 lib/searchlogic/active_record/consistency.rb
joost-searchlogic-2.2.3.1 lib/searchlogic/active_record/consistency.rb
searchlogic-2.2.0 lib/searchlogic/active_record/consistency.rb
searchlogic-2.2.1 lib/searchlogic/active_record/consistency.rb
searchlogic-2.2.2 lib/searchlogic/active_record/consistency.rb
searchlogic-2.2.3 lib/searchlogic/active_record/consistency.rb