Sha256: afb7d7a2bfd6ecc75ec60280c4758c9aeba60c8b7e91f579606ffab71db2967b

Contents?: true

Size: 970 Bytes

Versions: 2

Compression:

Stored size: 970 Bytes

Contents

module Searchlogic
  # Active Record is pretty inconsistent with how their SQL is constructed. This
  # method attempts to close the gap between the various inconsistencies.
  module ActiveRecordConsistency
    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

module ActiveRecord # :nodoc: all
  class Base
    class << self
      include Searchlogic::ActiveRecordConsistency
    end
  end
end

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
binarylogic-searchlogic-2.1.13 lib/searchlogic/active_record_consistency.rb
searchlogic-2.1.13 lib/searchlogic/active_record_consistency.rb