| 197 | */ |
| 198 | #ifndef FRONTEND |
| 199 | static inline Datum |
| 200 | ExecGetJunkAttribute(TupleTableSlot *slot, AttrNumber attno, bool *isNull) |
| 201 | { |
| 202 | Assert(attno > 0); |
| 203 | return slot_getattr(slot, attno, isNull); |
| 204 | } |
| 205 | #endif |
| 206 | |
| 207 | /* |
no test coverage detected