Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 8cdb85b

Browse files
committed
Remove tabs in SGML.
Move OIDCHARS to proper include file.
1 parent 5c82ccb commit 8cdb85b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

doc/src/sgml/config.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.242 2010/01/05 21:53:58 rhaas Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.243 2010/01/06 02:41:37 momjian Exp $ -->
22

33
<chapter Id="runtime-config">
44
<title>Server Configuration</title>
@@ -2021,7 +2021,7 @@ archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows
20212021
(see <xref linkend="sql-altertablespace">).
20222022
</para>
20232023

2024-
<para>
2024+
<para>
20252025
Reducing this value relative to <varname>seq_page_cost</>
20262026
will cause the system to prefer index scans; raising it will
20272027
make index scans look relatively more expensive. You can raise

src/backend/catalog/catalog.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
*
1212
* IDENTIFICATION
13-
* $PostgreSQL: pgsql/src/backend/catalog/catalog.c,v 1.85 2010/01/02 16:57:36 momjian Exp $
13+
* $PostgreSQL: pgsql/src/backend/catalog/catalog.c,v 1.86 2010/01/06 02:41:37 momjian Exp $
1414
*
1515
*-------------------------------------------------------------------------
1616
*/
@@ -43,7 +43,6 @@
4343
#include "utils/tqual.h"
4444

4545

46-
#define OIDCHARS 10 /* max chars printed by %u */
4746
#define FORKNAMECHARS 4 /* max chars for a fork name */
4847

4948
/*

src/include/catalog/catalog.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $PostgreSQL: pgsql/src/include/catalog/catalog.h,v 1.45 2010/01/02 16:58:01 momjian Exp $
10+
* $PostgreSQL: pgsql/src/include/catalog/catalog.h,v 1.46 2010/01/06 02:41:37 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -18,6 +18,7 @@
1818
#include "storage/relfilenode.h"
1919
#include "utils/relcache.h"
2020

21+
#define OIDCHARS 10 /* max chars printed by %u */
2122

2223
extern const char *forkNames[];
2324
extern ForkNumber forkname_to_number(char *forkName);

0 commit comments

Comments
 (0)