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
f5f9577e
Commit
f5f9577e
authored
Jan 20, 2007
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modify max_fsm_pages in postgresql.conf.sample to show a typical value,
rather than a value too high.
parent
4945a8fa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
src/backend/utils/misc/postgresql.conf.sample
src/backend/utils/misc/postgresql.conf.sample
+1
-1
src/bin/initdb/initdb.c
src/bin/initdb/initdb.c
+2
-2
No files found.
src/backend/utils/misc/postgresql.conf.sample
View file @
f5f9577e
...
...
@@ -111,7 +111,7 @@
# - Free Space Map -
#max_fsm_pages =
1638400
# min max_fsm_relations*16, 6 bytes each
#max_fsm_pages =
204800
# min max_fsm_relations*16, 6 bytes each
# (change requires restart)
#max_fsm_relations = 1000 # min 100, ~70 bytes each
# (change requires restart)
...
...
src/bin/initdb/initdb.c
View file @
f5f9577e
...
...
@@ -42,7 +42,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
* Portions taken from FreeBSD.
*
* $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.12
8 2007/01/06 19:40:00
momjian Exp $
* $PostgreSQL: pgsql/src/bin/initdb/initdb.c,v 1.12
9 2007/01/20 17:04:58
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -1251,7 +1251,7 @@ setup_config(void)
conflines
=
replace_token
(
conflines
,
"#shared_buffers = 32MB"
,
repltok
);
snprintf
(
repltok
,
sizeof
(
repltok
),
"max_fsm_pages = %d"
,
n_fsm_pages
);
conflines
=
replace_token
(
conflines
,
"#max_fsm_pages =
16384
00"
,
repltok
);
conflines
=
replace_token
(
conflines
,
"#max_fsm_pages =
2048
00"
,
repltok
);
#if DEF_PGPORT != 5432
snprintf
(
repltok
,
sizeof
(
repltok
),
"#port = %d"
,
DEF_PGPORT
);
...
...
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