MCPcopy Create free account
hub / github.com/documentdb/documentdb / RollbackGUCChange

Function RollbackGUCChange

pg_documentdb/include/utils/guc_utils.h:23–28  ·  view source on GitHub ↗

* 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. */

Source from the content-addressed store, hash-verified

21 * Given the GUC level, it rollbacks the GUC change to its previous value in the current transcation.
22 */
23static inline void
24RollbackGUCChange(int savedGUCLevel)
25{
26 bool commitGUCChanges = false;
27 AtEOXact_GUC(commitGUCChanges, savedGUCLevel);
28}
29
30
31#endif

Calls

no outgoing calls

Tested by

no test coverage detected