* Advance the appropriate counter for one input tuple. */
| 86 | * Advance the appropriate counter for one input tuple. |
| 87 | */ |
| 88 | static inline void |
| 89 | advance_counts(SetOpStatePerGroup pergroup, int flag) |
| 90 | { |
| 91 | if (flag) |
| 92 | pergroup->numRight++; |
| 93 | else |
| 94 | pergroup->numLeft++; |
| 95 | } |
| 96 | |
| 97 | /* |
| 98 | * Fetch the "flag" column from an input tuple. |
no outgoing calls
no test coverage detected