interval_pl_timestamp_callable is the callable logic for the interval_pl_timestamp function.
(ctx *sql.Context, _ [3]*pgtypes.DoltgresType, val1 any, val2 any)
| 348 | |
| 349 | // interval_pl_timestamp_callable is the callable logic for the interval_pl_timestamp function. |
| 350 | func interval_pl_timestamp_callable(ctx *sql.Context, _ [3]*pgtypes.DoltgresType, val1 any, val2 any) (any, error) { |
| 351 | return intervalPlusNonInterval(val1.(duration.Duration), val2.(time.Time)) |
| 352 | } |
| 353 | |
| 354 | // interval_pl_timestamp represents the PostgreSQL function of the same name, taking the same parameters. |
| 355 | var interval_pl_timestamp = framework.Function2{ |
nothing calls this directly
no test coverage detected