You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Undefined values are incorrectly retained and show up in output in the following rego:
package test
import rego.v1
principal := input.principal
action := input.action
p[principal][action] :=1 if {
some a in []
}
q[principal][action] contains 1 if {
some a in []
}
Handle undefined values correctly in ordered-else. Previously an undefined value
in one of the blocks could cause the entire rule to evaluate to undefined.
Handle undefined values correctly in generic rule refs to prevent them from
propagating to output.
Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
Undefined values are incorrectly retained and show up in output in the following rego:
prodiuces
The text was updated successfully, but these errors were encountered: