Skip to content

Commit

Permalink
More fixes to context
Browse files Browse the repository at this point in the history
  • Loading branch information
magbak committed Apr 19, 2024
1 parent d372665 commit 8303c61
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion chrontext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ log = "0.4.21"
#spargebra = { path = "../../spargebra", features = ["rdf-star"]}
spargebra = {git = "https://github.com/DataTreehouse/spargebra", features = ["rdf-star"], tag = "v0.2.8"}
#query_processing = { path = "../../query_processing"}
query_processing = { git = "https://github.com/DataTreehouse/query_processing", tag="v0.2.4"}
query_processing = { git = "https://github.com/DataTreehouse/query_processing", tag="v0.2.5"}
#representation = { path ="../../representation"}
representation = { git = "https://github.com/DataTreehouse/representation", tag="v0.5.3"}
sparesults = {version="0.1.8"}
Expand Down
8 changes: 4 additions & 4 deletions chrontext/src/combiner/lazy_expressions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ impl Combiner {
&plus_context,
)
.await?;
unary_plus(output_solution_mappings, context, &plus_context)?
unary_plus(output_solution_mappings, &plus_context, context)?
}
Expression::UnaryMinus(inner) => {
let minus_context = context.extension_with(PathEntry::UnaryMinus);
Expand All @@ -514,7 +514,7 @@ impl Combiner {
&minus_context,
)
.await?;
unary_minus(output_solution_mappings, &context, &minus_context)?
unary_minus(output_solution_mappings, &minus_context, context)?
}
Expression::Not(inner) => {
let not_context = context.extension_with(PathEntry::Not);
Expand All @@ -527,7 +527,7 @@ impl Combiner {
&not_context,
)
.await?;
not_expression(output_solution_mappings, &context, &not_context)?
not_expression(output_solution_mappings, &not_context, context)?
}
Expression::Exists(inner) => {
let exists_context = context.extension_with(PathEntry::Exists);
Expand Down Expand Up @@ -563,8 +563,8 @@ impl Combiner {
exists(
output_solution_mappings,
exists_lf,
&context,
&exists_context,
context,
)?
}
Expression::Bound(v) => bound(solution_mappings, v, context)?,
Expand Down

0 comments on commit 8303c61

Please sign in to comment.