Sha256: 9e99b14582f4103e20130a2a2439a27dfca96a1be2fe51153fd50e9756f32b2d
Contents?: true
Size: 324 Bytes
Versions: 17
Compression:
Stored size: 324 Bytes
Contents
# frozen_string_literal: true 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 def utf8_query_pre [] end end
Version data entries
17 entries across 17 versions & 1 rubygems