Next implements the Datum interface.
(ctx *EvalContext)
| 3832 | |
| 3833 | // Next implements the Datum interface. |
| 3834 | func (d *Placeholder) Next(ctx *EvalContext) (Datum, bool) { |
| 3835 | return d.mustGetValue(ctx).Next(ctx) |
| 3836 | } |
| 3837 | |
| 3838 | // IsMax implements the Datum interface. |
| 3839 | func (d *Placeholder) IsMax(ctx *EvalContext) bool { |
nothing calls this directly
no test coverage detected