Fix the panic message for the new interval iterator

pull/8745/head
Jonathan A. Sternberg 2017-08-25 07:40:21 -05:00
parent ef0ad3292d
commit 5cdd1b1489
1 changed files with 1 additions and 1 deletions

View File

@ -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))
}
}