12 lines
209 B
Go
12 lines
209 B
Go
|
package tsm1
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/influxdata/platform/tsdb"
|
||
|
)
|
||
|
|
||
|
func (e *Engine) CreateCursorIterator(ctx context.Context) (tsdb.CursorIterator, error) {
|
||
|
return &arrayCursorIterator{e: e}, nil
|
||
|
}
|