From: Bruce Momjian Date: Wed, 6 Jan 2010 02:41:37 +0000 (+0000) Subject: Remove tabs in SGML. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=dc58a09abf21fc7a9be60e822fb43afa3457a50e;p=users%2Fandresfreund%2Fpostgres.git Remove tabs in SGML. Move OIDCHARS to proper include file. --- diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index f5df223a70..0cfa4693f9 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -2021,7 +2021,7 @@ archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows (see ). - + Reducing this value relative to seq_page_cost will cause the system to prefer index scans; raising it will make index scans look relatively more expensive. You can raise diff --git a/src/backend/catalog/catalog.c b/src/backend/catalog/catalog.c index 2ccb256c89..5445c8f881 100644 --- a/src/backend/catalog/catalog.c +++ b/src/backend/catalog/catalog.c @@ -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 */ /* diff --git a/src/include/catalog/catalog.h b/src/include/catalog/catalog.h index 025a849423..43b5c07477 100644 --- a/src/include/catalog/catalog.h +++ b/src/include/catalog/catalog.h @@ -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);