diff options
| author | Heikki Linnakangas | 2012-09-21 12:21:31 +0000 |
|---|---|---|
| committer | Heikki Linnakangas | 2012-09-21 12:22:56 +0000 |
| commit | 9d5e9730e5c2aa912778b9e8728c0b5ebd807d9a (patch) | |
| tree | e1e0cde9336cced1202795f97e8720ca88703bb9 | |
| parent | 22c734fcdb5321212bacde9b502d36a4cf564b44 (diff) | |
Fix obsolete comment.
load_hba and load_ident load stuff in a separate memory context nowadays,
not in the current memory context.
| -rw-r--r-- | src/backend/utils/init/postinit.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/backend/utils/init/postinit.c b/src/backend/utils/init/postinit.c index 757e76bd7af..abc46d6317e 100644 --- a/src/backend/utils/init/postinit.c +++ b/src/backend/utils/init/postinit.c @@ -183,9 +183,7 @@ PerformAuthentication(Port *port) /* * In EXEC_BACKEND case, we didn't inherit the contents of pg_hba.conf - * etcetera from the postmaster, and have to load them ourselves. Note we - * are loading them into the startup transaction's memory context, not - * PostmasterContext, but that shouldn't matter. + * etcetera from the postmaster, and have to load them ourselves. * * FIXME: [fork/exec] Ugh. Is there a way around this overhead? */ |
