Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
d0e4a076
Commit
d0e4a076
authored
Jul 25, 2006
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make the order of operations in PostmasterMain a bit saner ... some
recent patches had added stuff in rather random spots.
parent
e85b5dae
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
12 deletions
+13
-12
src/backend/postmaster/postmaster.c
src/backend/postmaster/postmaster.c
+13
-12
No files found.
src/backend/postmaster/postmaster.c
View file @
d0e4a076
...
...
@@ -37,7 +37,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.49
5 2006/07/16 18:17:1
4 tgl Exp $
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.49
6 2006/07/25 01:23:3
4 tgl Exp $
*
* NOTES
*
...
...
@@ -813,6 +813,12 @@ PostmasterMain(int argc, char *argv[])
*/
set_max_safe_fds
();
/*
* Load configuration files for client authentication.
*/
load_hba
();
load_ident
();
/*
* Initialize the list of active backends.
*/
...
...
@@ -920,20 +926,15 @@ PostmasterMain(int argc, char *argv[])
whereToSendOutput
=
DestNone
;
/*
* Initialize the statistics collector stuff
* Initialize stats collection subsystem (this does NOT start the
* collector process!)
*/
pgstat_init
();
/*
* Load configuration files for client authentication.
*/
load_hba
();
load_ident
();
/*
* We're ready to rock and roll...
* Initialize the autovacuum subsystem (again, no process start yet)
*/
StartupPID
=
StartupDataBase
();
autovac_init
();
/*
* Remember postmaster startup time
...
...
@@ -941,9 +942,9 @@ PostmasterMain(int argc, char *argv[])
PgStartTime
=
GetCurrentTimestamp
();
/*
*
Initialize the autovacuum daemon
*
We're ready to rock and roll...
*/
autovac_init
();
StartupPID
=
StartupDataBase
();
status
=
ServerLoop
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment