diff options
| author | Peter Eisentraut | 2007-03-13 14:32:25 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2007-03-13 14:32:25 +0000 |
| commit | f4ee82e3d397544a287da65dd54846aa80694610 (patch) | |
| tree | ff1793671be2d56ed8dabc141768b43a13eae4d2 /src/backend/access | |
| parent | f32515df776150faff5c0a97ab275cc3d480288b (diff) | |
Reverted waiting for further fixes:
Make configuration parameters fall back to their default values when they
are removed from the configuration file.
Joachim Wieland
Diffstat (limited to 'src/backend/access')
| -rw-r--r-- | src/backend/access/transam/xact.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c index 6a2ebd4089..51a41ca445 100644 --- a/src/backend/access/transam/xact.c +++ b/src/backend/access/transam/xact.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.236 2007/03/13 00:33:38 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/access/transam/xact.c,v 1.237 2007/03/13 14:32:25 petere Exp $ * *------------------------------------------------------------------------- */ @@ -1513,9 +1513,6 @@ CommitTransaction(void) /* NOTIFY commit must come before lower-level cleanup */ AtCommit_Notify(); - /* GUC processing could abort transaction */ - AtEOXact_GUC(true, false); - /* * Update flat files if we changed pg_database, pg_authid or * pg_auth_members. This should be the last step before commit. @@ -1626,6 +1623,7 @@ CommitTransaction(void) /* Check we've released all catcache entries */ AtEOXact_CatCache(true); + AtEOXact_GUC(true, false); AtEOXact_SPI(true); AtEOXact_on_commit_actions(true); AtEOXact_Namespace(true); |
