* Helper function to do an early rollback of a local GUC set with SetGUCLocally function. * Given the GUC level, it rollbacks the GUC change to its previous value in the current transcation. */
| 21 | * Given the GUC level, it rollbacks the GUC change to its previous value in the current transcation. |
| 22 | */ |
| 23 | static inline void |
| 24 | RollbackGUCChange(int savedGUCLevel) |
| 25 | { |
| 26 | bool commitGUCChanges = false; |
| 27 | AtEOXact_GUC(commitGUCChanges, savedGUCLevel); |
| 28 | } |
| 29 | |
| 30 | |
| 31 | #endif |
no outgoing calls
no test coverage detected