Sha256: a7cdb4d00166a51368dff2d7c845d3de508abf7c22ecce47546b1c77336b67a5

Contents?: true

Size: 258 Bytes

Versions: 4

Compression:

Stored size: 258 Bytes

Contents

class ThinkingSphinx::ActiveRecord::DatabaseAdapters::AbstractAdapter
  def initialize(model)
    @model = model
  end

  def quote(column)
    @model.connection.quote_column_name(column)
  end

  def quoted_table_name
    @model.quoted_table_name
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
thinking-sphinx-3.0.1 lib/thinking_sphinx/active_record/database_adapters/abstract_adapter.rb
thinking-sphinx-3.0.0 lib/thinking_sphinx/active_record/database_adapters/abstract_adapter.rb
thinking-sphinx-3.0.0.rc lib/thinking_sphinx/active_record/database_adapters/abstract_adapter.rb
thinking-sphinx-3.0.0.pre lib/thinking_sphinx/active_record/database_adapters/abstract_adapter.rb