Commit 8cdb85b5 authored by Bruce Momjian's avatar Bruce Momjian

Remove tabs in SGML.

Move OIDCHARS to proper include file.
parent 5c82ccb1
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.242 2010/01/05 21:53:58 rhaas Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.243 2010/01/06 02:41:37 momjian Exp $ -->
<chapter Id="runtime-config"> <chapter Id="runtime-config">
<title>Server Configuration</title> <title>Server Configuration</title>
...@@ -2021,7 +2021,7 @@ archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows ...@@ -2021,7 +2021,7 @@ archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows
(see <xref linkend="sql-altertablespace">). (see <xref linkend="sql-altertablespace">).
</para> </para>
<para> <para>
Reducing this value relative to <varname>seq_page_cost</> Reducing this value relative to <varname>seq_page_cost</>
will cause the system to prefer index scans; raising it will will cause the system to prefer index scans; raising it will
make index scans look relatively more expensive. You can raise make index scans look relatively more expensive. You can raise
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/catalog/catalog.c,v 1.85 2010/01/02 16:57:36 momjian Exp $ * $PostgreSQL: pgsql/src/backend/catalog/catalog.c,v 1.86 2010/01/06 02:41:37 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -43,7 +43,6 @@ ...@@ -43,7 +43,6 @@
#include "utils/tqual.h" #include "utils/tqual.h"
#define OIDCHARS 10 /* max chars printed by %u */
#define FORKNAMECHARS 4 /* max chars for a fork name */ #define FORKNAMECHARS 4 /* max chars for a fork name */
/* /*
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/include/catalog/catalog.h,v 1.45 2010/01/02 16:58:01 momjian Exp $ * $PostgreSQL: pgsql/src/include/catalog/catalog.h,v 1.46 2010/01/06 02:41:37 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -18,6 +18,7 @@ ...@@ -18,6 +18,7 @@
#include "storage/relfilenode.h" #include "storage/relfilenode.h"
#include "utils/relcache.h" #include "utils/relcache.h"
#define OIDCHARS 10 /* max chars printed by %u */
extern const char *forkNames[]; extern const char *forkNames[];
extern ForkNumber forkname_to_number(char *forkName); extern ForkNumber forkname_to_number(char *forkName);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment