Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion biscuit-auth/src/datalog/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ impl Rule {
Term::Variable(i) => match h.get(i) {
Some(val) => p.terms[index] = val.clone(),
None => {
println!("error: variables that appear in the head should appear in the body and constraints as well");
// head variables should be bound in the body predicates
return None;
}
},
Expand Down
Loading