Fix the panic message for the new interval iterator
parent
ef0ad3292d
commit
5cdd1b1489
|
|
@ -347,7 +347,7 @@ func NewIntervalIterator(input Iterator, opt IteratorOptions) Iterator {
|
|||
case BooleanIterator:
|
||||
return newBooleanIntervalIterator(input, opt)
|
||||
default:
|
||||
panic(fmt.Sprintf("unsupported fill iterator type: %T", input))
|
||||
panic(fmt.Sprintf("unsupported interval iterator type: %T", input))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue