mirror of
https://github.com/prometheus/prometheus.git
synced 2026-05-05 20:36:13 +02:00
Add case-statement for OR, which still needs to be implemented.
This commit is contained in:
parent
a555ded2b3
commit
6929c10acf
@ -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")
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user