Class: SPARQL::Algebra::Operator::Distinct
- Inherits:
-
Unary
- Object
- SPARQL::Algebra::Operator
- Unary
- SPARQL::Algebra::Operator::Distinct
- Includes:
- Query
- Defined in:
- lib/sparql/algebra/operator/distinct.rb
Overview
The SPARQL GraphPattern distinct
operator.
[9] SelectClause ::= ‘SELECT’ ( ‘DISTINCT’ | ‘REDUCED’ )? ( ( Var | ( ‘(’ Expression ‘AS’ Var ‘)’ ) )+ | ‘*’ )
Constant Summary collapse
- NAME =
[:distinct]
Constants inherited from Unary
Constants inherited from SPARQL::Algebra::Operator
Constants included from Expression
Instance Attribute Summary
Attributes included from Query
Attributes inherited from SPARQL::Algebra::Operator
Instance Method Summary collapse
-
#execute(queryable, **options) {|solution| ... } ⇒ RDF::Query::Solutions
Executes this query on the given
queryable
graph or repository. -
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
Methods included from Query
#each_solution, #empty?, #failed?, #graph_name=, #matched?, #query_yields_boolean?, #query_yields_solutions?, #query_yields_statements?, #unshift, #variables
Methods inherited from Unary
Methods inherited from SPARQL::Algebra::Operator
#aggregate?, arity, #base_uri, base_uri, base_uri=, #bind, #boolean, #constant?, #deep_dup, #each_descendant, #eql?, #evaluatable?, evaluate, #executable?, #first_ancestor, for, #initialize, #inspect, #ndvars, #node?, #operand, #optimize, #optimize!, #parent, #parent=, #prefixes, prefixes, prefixes=, #rewrite, #to_binary, to_sparql, #to_sxp, #to_sxp_bin, #validate!, #variable?, #variables, #vars
Methods included from Expression
cast, #constant?, #evaluate, extension, extension?, extensions, for, #invalid?, new, #node?, open, #optimize, #optimize!, parse, register_extension, #to_sxp_bin, #valid?, #validate!, #variable?
Constructor Details
This class inherits a constructor from SPARQL::Algebra::Operator::Unary
Instance Method Details
#execute(queryable, **options) {|solution| ... } ⇒ RDF::Query::Solutions
Executes this query on the given queryable
graph or repository. Removes duplicate solutions from the solution set.
42 43 44 45 46 |
# File 'lib/sparql/algebra/operator/distinct.rb', line 42 def execute(queryable, **, &block) @solutions = queryable.query(operands.last, **.merge(depth: [:depth].to_i + 1)).distinct @solutions.each(&block) if block_given? @solutions end |
#to_sparql(**options) ⇒ String
Returns a partial SPARQL grammar for this operator.
53 54 55 |
# File 'lib/sparql/algebra/operator/distinct.rb', line 53 def to_sparql(**) operands.first.to_sparql(distinct: true, **) end |