diff --git a/rules/ast/ast.go b/rules/ast/ast.go index 746d626fc..21162ef02 100644 --- a/rules/ast/ast.go +++ b/rules/ast/ast.go @@ -450,6 +450,8 @@ func evalVectorBinop(opType BinOpType, } case AND: return lhs, true + case OR: + return lhs, true // TODO: implement OR } panic("Not all enum values enumerated in switch") }