Files
loki/pkg/engine/internal/errors/errors.go
Christian Haudum 525b41155d chore(engine): Add expression evaluator to evaluate physical expressions against a given record batch (#17257)
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>
2025-04-16 08:42:58 +02:00

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")
)