Sha256: 866b48c92b1fe6d39a245b55ae202e0621704fdd0cf695b6e568afb9ba914e37

Contents?: true

Size: 1.03 KB

Versions: 6

Compression:

Stored size: 1.03 KB

Contents

require_relative 'pass_thru'

module ConceptQL
  module Nodes
    class Complement < PassThru
      def query(db)
        child = children.first
        child.types.map do |type|
          positive_query = db.from(child.evaluate(db))
            .select(:criterion_id)
            .exclude(:criterion_id => nil)
            .where(:criterion_type => type.to_s)
          query = db.from(make_table_name(type))
            .exclude(type_id(type) => positive_query)
          db.from(select_it(query, type))
        end.inject do |union_query, q|
          union_query.union(q, all: true)
        end
      end

=begin
This is an alternate, but equally accurate way to do complement.
We'll need to benchmark which is faster.
      def query2(db)
        child = children.first
        froms = child.types.map do |type|
          select_it(db.from(make_table_name(type)), type)
        end
        big_from = froms.inject { |union_query, q| union_query.union(q, all:true) }
        db.from(big_from).except(child.evaluate(db))
      end
=end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
conceptql-0.0.9 lib/conceptql/nodes/complement.rb
conceptql-0.0.8 lib/conceptql/nodes/complement.rb
conceptql-0.0.7 lib/conceptql/nodes/complement.rb
conceptql-0.0.6 lib/conceptql/nodes/complement.rb
conceptql-0.0.5 lib/conceptql/nodes/complement.rb
conceptql-0.0.4 lib/conceptql/nodes/complement.rb