mirror of
https://github.com/grafana/loki.git
synced 2026-03-13 09:33:58 +08:00
The evaluator takes a physcial expressions and an arrow.Record as input and return a ColumnVector. This PR only implements the evaluation of the LiteralExpr and ColumnExpr. Signed-off-by: Christian Haudum <christian.haudum@gmail.com>
11 lines
230 B
Go
11 lines
230 B
Go
package errors
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrIndex = errors.New("index error")
|
|
ErrKey = errors.New("key error")
|
|
ErrType = errors.New("type error")
|
|
ErrNotImplemented = errors.New("not implemented")
|
|
)
|