Sha256: 48d335ef49d07c18d67ca06cd722645f69604ebc38006498c2119f5ed9bb2d66

Contents?: true

Size: 334 Bytes

Versions: 2

Compression:

Stored size: 334 Bytes

Contents

module Rasti
  module DB
    module NQL
      module Nodes
        module Comparisons
          class NotInclude < Base

            def filter_condition(collection_class)
              ~ Sequel.ilike(attribute.identifier(collection_class), "%#{argument.value}%")
            end

          end
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rasti-db-2.2.0 lib/rasti/db/nql/nodes/comparisons/not_include.rb
rasti-db-2.1.0 lib/rasti/db/nql/nodes/comparisons/not_include.rb