* ExecFilterJunk * * Construct and return a slot with all the junk attributes removed. */
| 256 | * Construct and return a slot with all the junk attributes removed. |
| 257 | */ |
| 258 | TupleTableSlot * |
| 259 | ExecFilterJunk(JunkFilter *junkfilter, TupleTableSlot *slot) |
| 260 | { |
| 261 | if (junkfilter->jf_execFilterJunkFunc) |
| 262 | return junkfilter->jf_execFilterJunkFunc(junkfilter, slot); |
| 263 | |
| 264 | return ExecFilterJunkInternal(junkfilter, slot); |
| 265 | } |
| 266 | |
| 267 | static TupleTableSlot * |
| 268 | ExecFilterJunkInternal(JunkFilter *junkfilter, TupleTableSlot *slot) |
no test coverage detected