Sha256: c6e0afd6d6834236cbf97b0a11185c91c9a473a533e596f9ef241b54c308cee1

Contents?: true

Size: 985 Bytes

Versions: 7

Compression:

Stored size: 985 Bytes

Contents

class ThinkingSphinx::ActiveRecord::SimpleManyQuery <
  ThinkingSphinx::ActiveRecord::PropertyQuery

  def to_s
    "#{identifier} from #{source_type}; #{queries.join('; ')}"
  end

  private

  def reflection
    @reflection ||= source.model.reflect_on_association column.__stack.first
  end

  def quoted_foreign_key
    quote_with_table reflection.join_table, reflection.foreign_key
  end

  def quoted_primary_key
    quote_with_table reflection.join_table, reflection.association_foreign_key
  end

  def range_sql
    "SELECT MIN(#{quoted_foreign_key}), MAX(#{quoted_foreign_key}) FROM #{quote_column reflection.join_table}"
  end

  def to_sql
    selects = [
      "#{quoted_foreign_key} #{offset} AS #{quote_column('id')}",
      "#{quoted_primary_key} AS #{quote_column(property.name)}"
    ]
    sql  = "SELECT #{selects.join(', ')} FROM #{quote_column reflection.join_table}"
    sql += " WHERE (#{quoted_foreign_key} BETWEEN $start AND $end)" if ranged?
    sql
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
thinking-sphinx-3.4.2 lib/thinking_sphinx/active_record/simple_many_query.rb
thinking-sphinx-3.4.1 lib/thinking_sphinx/active_record/simple_many_query.rb
thinking-sphinx-3.4.0 lib/thinking_sphinx/active_record/simple_many_query.rb
thinking-sphinx-3.3.0 lib/thinking_sphinx/active_record/simple_many_query.rb
thinking-sphinx-3.2.0 lib/thinking_sphinx/active_record/simple_many_query.rb
thinking-sphinx-3.1.4 lib/thinking_sphinx/active_record/simple_many_query.rb
thinking-sphinx-3.1.3 lib/thinking_sphinx/active_record/simple_many_query.rb