| 1439 | } |
| 1440 | |
| 1441 | TargetEntry * |
| 1442 | gpdb::MakeTargetEntry(Expr *expr, AttrNumber resno, char *resname, bool resjunk) |
| 1443 | { |
| 1444 | GP_WRAP_START; |
| 1445 | { |
| 1446 | return makeTargetEntry(expr, resno, resname, resjunk); |
| 1447 | } |
| 1448 | GP_WRAP_END; |
| 1449 | return nullptr; |
| 1450 | } |
| 1451 | |
| 1452 | Var * |
| 1453 | gpdb::MakeVar(Index varno, AttrNumber varattno, Oid vartype, int32 vartypmod, |
nothing calls this directly
no test coverage detected