* Disable statement timeout, if active. */
| 6432 | * Disable statement timeout, if active. |
| 6433 | */ |
| 6434 | static void |
| 6435 | disable_statement_timeout(void) |
| 6436 | { |
| 6437 | if (get_timeout_active(STATEMENT_TIMEOUT)) |
| 6438 | disable_timeout(STATEMENT_TIMEOUT, false); |
| 6439 | } |
| 6440 | |
| 6441 | /* |
| 6442 | * GPDB: Enable the IdleGangTimeoutHandler to disconnect and destroy idle |
no test coverage detected