Type implements sql.Expression
(ctx *sql.Context)
| 84 | |
| 85 | // Type implements sql.Expression |
| 86 | func (a *ArrayAgg) Type(ctx *sql.Context) sql.Type { |
| 87 | dt := a.selectExprs[0].Type(ctx).(*types.DoltgresType) |
| 88 | return dt.ToArrayType() |
| 89 | } |
| 90 | |
| 91 | // IsNullable implements sql.Expression |
| 92 | func (a *ArrayAgg) IsNullable(ctx *sql.Context) bool { |
nothing calls this directly
no test coverage detected