---------------------------------------------------------------- * ExecTypeFromTL * * Generate a tuple descriptor for the result tuple of a targetlist. * (A parse/plan tlist must be passed, not an ExprState tlist.) * Note that resjunk columns, if any, are included in the result. * * Currently there are about 4 different places where we create * TupleDescriptors. They should all be m
| 1952 | * ---------------------------------------------------------------- |
| 1953 | */ |
| 1954 | TupleDesc |
| 1955 | ExecTypeFromTL(List *targetList) |
| 1956 | { |
| 1957 | return ExecTypeFromTLInternal(targetList, false); |
| 1958 | } |
| 1959 | |
| 1960 | /* ---------------------------------------------------------------- |
| 1961 | * ExecCleanTypeFromTL |
no test coverage detected