You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
arrow/compute/exprs.literalToDatum handles interval year/month literals through the *expr.ProtoLiteral path, but not the raw expr.IntervalYearToMonthLiteral type.
Let's add support for expr.IntervalYearToMonthLiteral.
arrow/compute/exprs.literalToDatumhandles interval year/month literals through the*expr.ProtoLiteralpath, but not the rawexpr.IntervalYearToMonthLiteraltype.Let's add support for
expr.IntervalYearToMonthLiteral.Relevant code:
literalToDatumtype switch: https://github.com/apache/arrow-go/blob/v18.5.1/arrow/compute/exprs/exec.go#L182-L415*expr.ProtoLiteralpath: https://github.com/apache/arrow-go/blob/v18.5.1/arrow/compute/exprs/exec.go#L355-L366expr.IntervalYearToMonthLiteral: https://github.com/substrait-io/substrait-go/blob/v7.5.0/expr/interval_year_to_month.go#L11-L68