| 1832 | #endif |
| 1833 | |
| 1834 | static void |
| 1835 | ExecEagerFreeHashJoin(HashJoinState *node) |
| 1836 | { |
| 1837 | if (node->hj_HashTable != NULL && !node->hj_HashTable->eagerlyReleased && !node->hj_HashTable->parallel_state) |
| 1838 | { |
| 1839 | ReleaseHashTable(node); |
| 1840 | } |
| 1841 | } |
| 1842 | |
| 1843 | void |
| 1844 | ExecSquelchHashJoin(HashJoinState *node, bool force) |
no test coverage detected