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
8cdb85b5
Commit
8cdb85b5
authored
Jan 06, 2010
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove tabs in SGML.
Move OIDCHARS to proper include file.
parent
5c82ccb1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
doc/src/sgml/config.sgml
doc/src/sgml/config.sgml
+2
-2
src/backend/catalog/catalog.c
src/backend/catalog/catalog.c
+1
-2
src/include/catalog/catalog.h
src/include/catalog/catalog.h
+2
-1
No files found.
doc/src/sgml/config.sgml
View file @
8cdb85b5
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.24
2 2010/01/05 21:53:58 rhaas
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.24
3 2010/01/06 02:41:37 momjian
Exp $ -->
<chapter Id="runtime-config">
<title>Server Configuration</title>
...
...
@@ -2021,7 +2021,7 @@ archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows
(see <xref linkend="sql-altertablespace">).
</para>
<para>
<para>
Reducing this value relative to <varname>seq_page_cost</>
will cause the system to prefer index scans; raising it will
make index scans look relatively more expensive. You can raise
...
...
src/backend/catalog/catalog.c
View file @
8cdb85b5
...
...
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/catalog/catalog.c,v 1.8
5 2010/01/02 16:57:36
momjian Exp $
* $PostgreSQL: pgsql/src/backend/catalog/catalog.c,v 1.8
6 2010/01/06 02:41:37
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -43,7 +43,6 @@
#include "utils/tqual.h"
#define OIDCHARS 10
/* max chars printed by %u */
#define FORKNAMECHARS 4
/* max chars for a fork name */
/*
...
...
src/include/catalog/catalog.h
View file @
8cdb85b5
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
* $PostgreSQL: pgsql/src/include/catalog/catalog.h,v 1.4
5 2010/01/02 16:58:01
momjian Exp $
* $PostgreSQL: pgsql/src/include/catalog/catalog.h,v 1.4
6 2010/01/06 02:41:37
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -18,6 +18,7 @@
#include "storage/relfilenode.h"
#include "utils/relcache.h"
#define OIDCHARS 10
/* max chars printed by %u */
extern
const
char
*
forkNames
[];
extern
ForkNumber
forkname_to_number
(
char
*
forkName
);
...
...
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