module ActiveRecordExtended::ArrayHandlerDecorator

Public Instance Methods

call(attribute, value) click to toggle source
Calls superclass method
# File lib/active_record_extended/predicate_builder/array_handler_decorator.rb, line 8
def call(attribute, value)
  cache = ActiveRecord::Base.connection.schema_cache
  if cache.data_source_exists?(attribute.relation.name)
    column = cache.columns(attribute.relation.name).detect { |col| col.name.to_s == attribute.name.to_s }
    return attribute.eq(value) if column.try(:array)
  end

  super(attribute, value)
end