Exception: Praxis::Extensions::AttributeFiltering::MultiMatchWithFuzzyNotAllowedByAdapter

Inherits:
StandardError
  • Object
show all
Defined in:
lib/praxis/extensions/attribute_filtering.rb

Instance Method Summary collapse

Constructor Details

#initializeMultiMatchWithFuzzyNotAllowedByAdapter

Returns a new instance of MultiMatchWithFuzzyNotAllowedByAdapter.



9
10
11
12
13
# File 'lib/praxis/extensions/attribute_filtering.rb', line 9

def initialize
  msg = 'Matching multiple, comma-separated values with fuzzy matches for a single field is not allowed by this DB adapter'\
        'Please use multiple OR clauses instead.'
  super(msg)
end