* Gives write access to a backend entry. */
| 401 | * Gives write access to a backend entry. |
| 402 | */ |
| 403 | static inline BackoffBackendSharedEntry * |
| 404 | getBackoffEntryRW(int index) |
| 405 | { |
| 406 | Assert(Gp_role == GP_ROLE_DISPATCH || IS_SINGLENODE() || Gp_role == GP_ROLE_EXECUTE || isSweeperProcess); |
| 407 | Assert(index >= 0 && index < backoffSingleton->numEntries); |
| 408 | return &backoffSingleton->backendEntries[index]; |
| 409 | } |
| 410 | |
| 411 | |
| 412 | /** |
no outgoing calls
no test coverage detected