Fail faster on not-yet-implemented wildcard query
Signed-off-by: Will Faurot <will@influxdb.com>pull/1537/head
parent
2aef4a794f
commit
6b68f53b10
|
@ -121,6 +121,8 @@ func (p *Planner) planExpr(e *Executor, expr Expr) (Processor, error) {
|
|||
return newLiteralProcessor(expr.Val), nil
|
||||
case *DurationLiteral:
|
||||
return newLiteralProcessor(expr.Val), nil
|
||||
case *Wildcard:
|
||||
panic("Wildcard operator not yet implemented")
|
||||
}
|
||||
panic("unreachable")
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue