Sat Apr 5 16:39:27 2008 UTC ()
Changes 8.3.1:
* Fix character string comparison for Windows locales that consider
  different character combinations as equal
* Repair corner-case bugs in "VACUUM FULL"
* Fix misbehavior of foreign key checks involving character or bit
  columns
* Avoid needless deadlock failures in no-op foreign-key checks
* Fix possible core dump when re-planning a prepared query
* Fix possible failure when re-planning a query that calls an
  SPI-using function
* Fix failure in row-wise comparisons involving columns of different
  datatypes
* Fix longstanding "LISTEN"/"NOTIFY" race condition
* Disallow "LISTEN" and "UNLISTEN" within a prepared transaction
* Disallow dropping a temporary table within a prepared transaction
* Fix rare crash when an error occurs during a query using a hash
  index
* Fix incorrect comparison of tsquery values
* Fix incorrect behavior of LIKE with non-ASCII characters in
  single-byte encodings
* Disable xmlvalidate


(adam)
diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83/Makefile.common
diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83/distinfo
diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83-client/PLIST
diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83-server/PLIST
diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83/patches/patch-ab
diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83/patches/patch-ad

cvs diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83/Attic/Makefile.common (switch to unified diff)

--- pkgsrc/databases/postgresql83/Attic/Makefile.common 2008/03/04 12:41:36 1.1.1.1
+++ pkgsrc/databases/postgresql83/Attic/Makefile.common 2008/04/05 16:39:26 1.2
@@ -1,175 +1,175 @@ @@ -1,175 +1,175 @@
1# $NetBSD: Makefile.common,v 1.1.1.1 2008/03/04 12:41:36 adam Exp $ 1# $NetBSD: Makefile.common,v 1.2 2008/04/05 16:39:26 adam Exp $
2# 2#
3# This Makefile fragment is included by all PostgreSQL packages built from 3# This Makefile fragment is included by all PostgreSQL packages built from
4# the main sources of the PostgreSQL distribution except jdbc-postgresql. 4# the main sources of the PostgreSQL distribution except jdbc-postgresql.
5# 5#
6# The PostgreSQL package naming scheme, aside from the obvious piecewise 6# The PostgreSQL package naming scheme, aside from the obvious piecewise
7# packages, is as follows: 7# packages, is as follows:
8# 8#
9# <lang>-postgresql client-side interface to PostgreSQL 9# <lang>-postgresql client-side interface to PostgreSQL
10# postgresql-<lang> server-side module for PostgreSQL backend 10# postgresql-<lang> server-side module for PostgreSQL backend
11 11
12.include "../../databases/postgresql83/Makefile.mirrors" 12.include "../../databases/postgresql83/Makefile.mirrors"
13 13
14DISTNAME?= postgresql-${DIST_VERS} 14DISTNAME?= postgresql-${DIST_VERS}
15CATEGORIES+= databases 15CATEGORIES+= databases
16MASTER_SITES?= ${PGSQL_MIRRORS:=source/v${DIST_VERS}/} 16MASTER_SITES?= ${PGSQL_MIRRORS:=source/v${DIST_VERS}/}
17EXTRACT_SUFX= .tar.bz2 17EXTRACT_SUFX= .tar.bz2
18 18
19MAINTAINER?= adam@NetBSD.org 19MAINTAINER?= adam@NetBSD.org
20HOMEPAGE?= http://www.postgresql.org/ 20HOMEPAGE?= http://www.postgresql.org/
21 21
22CONFLICTS+= postgresql-[0-9]* 22CONFLICTS+= postgresql-[0-9]*
23CONFLICTS+= postgresql73-* 23CONFLICTS+= postgresql73-*
24CONFLICTS+= postgresql74-* 24CONFLICTS+= postgresql74-*
25CONFLICTS+= postgresql80-* 25CONFLICTS+= postgresql80-*
26CONFLICTS+= postgresql81-* 26CONFLICTS+= postgresql81-*
27CONFLICTS+= postgresql82-* 27CONFLICTS+= postgresql82-*
28 28
29DISTINFO_FILE?= ${.CURDIR}/../postgresql83/distinfo 29DISTINFO_FILE?= ${.CURDIR}/../postgresql83/distinfo
30COMMON_FILESDIR?= ${.CURDIR}/../postgresql83/files 30COMMON_FILESDIR?= ${.CURDIR}/../postgresql83/files
31PATCHDIR?= ${.CURDIR}/../postgresql83/patches 31PATCHDIR?= ${.CURDIR}/../postgresql83/patches
32 32
33# Version numbering scheme: 33# Version numbering scheme:
34# 34#
35# DIST_VERS version number on the postgresql distfile 35# DIST_VERS version number on the postgresql distfile
36# BASE_VERS pkgsrc-mangled version number (convert pl -> .) 36# BASE_VERS pkgsrc-mangled version number (convert pl -> .)
37# 37#
38# Note: Do not forget jdbc-postgresql83 when updating version 38# Note: Do not forget jdbc-postgresql83 when updating version
39# 39#
40DIST_VERS?= 8.3.0 40DIST_VERS?= 8.3.1
41BASE_VERS?= ${DIST_VERS} 41BASE_VERS?= ${DIST_VERS}
42 42
43BUILDLINK_API_DEPENDS.postgresql83-client+= postgresql83-client>=${BASE_VERS} 43BUILDLINK_API_DEPENDS.postgresql83-client+= postgresql83-client>=${BASE_VERS}
44 44
45GNU_CONFIGURE= yes 45GNU_CONFIGURE= yes
46USE_TOOLS+= bison gmake lex msgfmt 46USE_TOOLS+= bison gmake lex msgfmt
47PKG_SYSCONFSUBDIR= postgresql 47PKG_SYSCONFSUBDIR= postgresql
48 48
49# in 7.4.x/8.0.x, this is done by autoconf stuff which has leading whitespace 49# in 7.4.x/8.0.x, this is done by autoconf stuff which has leading whitespace
50USE_PKGLOCALEDIR= yes 50USE_PKGLOCALEDIR= yes
51SUBST_CLASSES+= pglocale 51SUBST_CLASSES+= pglocale
52SUBST_FILES.pglocale= configure config/programs.m4 52SUBST_FILES.pglocale= configure config/programs.m4
53SUBST_STAGE.pglocale= pre-configure 53SUBST_STAGE.pglocale= pre-configure
54SUBST_SED.pglocale= -e 's|\( localedir[ :]*=\).*|\1${PG_LOCALE_DIR}|' 54SUBST_SED.pglocale= -e 's|\( localedir[ :]*=\).*|\1${PG_LOCALE_DIR}|'
55 55
56.include "../../mk/bsd.prefs.mk" 56.include "../../mk/bsd.prefs.mk"
57 57
58PGSQL_TEMPLATE.SunOS= solaris 58PGSQL_TEMPLATE.SunOS= solaris
59PGSQL_TEMPLATE.IRIX= irix5 59PGSQL_TEMPLATE.IRIX= irix5
60.if !defined(PGSQL_TEMPLATE.${OPSYS}) 60.if !defined(PGSQL_TEMPLATE.${OPSYS})
61PGSQL_TEMPLATE.${OPSYS}= ${LOWER_OPSYS} 61PGSQL_TEMPLATE.${OPSYS}= ${LOWER_OPSYS}
62.endif 62.endif
63 63
64PG_SUBPREFIX= # empty 64PG_SUBPREFIX= # empty
65.if empty(PG_SUBPREFIX) 65.if empty(PG_SUBPREFIX)
66PG_PREFIX= ${PREFIX} 66PG_PREFIX= ${PREFIX}
67PLIST_SUBST+= PG_SUBPREFIX= 67PLIST_SUBST+= PG_SUBPREFIX=
68.else 68.else
69PG_PREFIX= ${PREFIX}/${PG_SUBPREFIX} 69PG_PREFIX= ${PREFIX}/${PG_SUBPREFIX}
70BUILD_DEFS+= PG_SUBPREFIX 70BUILD_DEFS+= PG_SUBPREFIX
71PLIST_SUBST+= PG_SUBPREFIX=${PG_SUBPREFIX}/ 71PLIST_SUBST+= PG_SUBPREFIX=${PG_SUBPREFIX}/
72BUILDLINK_PASSTHRU_DIRS+= ${PG_PREFIX} 72BUILDLINK_PASSTHRU_DIRS+= ${PG_PREFIX}
73.endif 73.endif
74PG_DATA_DIR= ${PG_PREFIX}/share/postgresql 74PG_DATA_DIR= ${PG_PREFIX}/share/postgresql
75PG_DOC_DIR= ${PG_PREFIX}/share/doc/postgresql 75PG_DOC_DIR= ${PG_PREFIX}/share/doc/postgresql
76PG_LOCALE_DIR= ${PG_PREFIX}/${PKGLOCALEDIR}/locale 76PG_LOCALE_DIR= ${PG_PREFIX}/${PKGLOCALEDIR}/locale
77PG_ETC_DIR= ${PKG_SYSCONFDIR:S/^${PREFIX}\//${PG_PREFIX}\//} 77PG_ETC_DIR= ${PKG_SYSCONFDIR:S/^${PREFIX}\//${PG_PREFIX}\//}
78 78
79GNU_CONFIGURE_PREFIX= ${PG_PREFIX} 79GNU_CONFIGURE_PREFIX= ${PG_PREFIX}
80CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR} 80CONFIGURE_ARGS+= --sysconfdir=${PG_ETC_DIR}
81CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR} 81CONFIGURE_ARGS+= --datadir=${PG_DATA_DIR}
82CONFIGURE_ARGS+= --with-docdir=${PG_DOC_DIR} 82CONFIGURE_ARGS+= --with-docdir=${PG_DOC_DIR}
83CONFIGURE_ARGS+= --with-template=${PGSQL_TEMPLATE.${OPSYS}} 83CONFIGURE_ARGS+= --with-template=${PGSQL_TEMPLATE.${OPSYS}}
84CONFIGURE_ARGS+= --without-readline 84CONFIGURE_ARGS+= --without-readline
85CONFIGURE_ARGS+= --without-zlib 85CONFIGURE_ARGS+= --without-zlib
86CONFIGURE_ARGS+= --enable-nls 86CONFIGURE_ARGS+= --enable-nls
87 87
88CONFIGURE_ARGS+= --without-perl 88CONFIGURE_ARGS+= --without-perl
89CONFIGURE_ARGS+= --without-python 89CONFIGURE_ARGS+= --without-python
90CONFIGURE_ARGS+= --without-tcl 90CONFIGURE_ARGS+= --without-tcl
91 91
92# Enable Bonjour on Mac OS X 92# Enable Bonjour on Mac OS X
93.if ${OPSYS} == "Darwin" 93.if ${OPSYS} == "Darwin"
94CONFIGURE_ARGS+= --with-bonjour 94CONFIGURE_ARGS+= --with-bonjour
95.endif 95.endif
96 96
97# PostgreSQL explicitly forbids any use of -ffast-math 97# PostgreSQL explicitly forbids any use of -ffast-math
98BUILDLINK_TRANSFORM+= rm:-ffast-math 98BUILDLINK_TRANSFORM+= rm:-ffast-math
99 99
100# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl 100# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl
101# to provide "dlopen" functionality for the PostgreSQL backend. 101# to provide "dlopen" functionality for the PostgreSQL backend.
102# 102#
103.if ${OPSYS} == "Interix" 103.if ${OPSYS} == "Interix"
104USE_LIBLTDL?= yes 104USE_LIBLTDL?= yes
105.endif 105.endif
106USE_LIBLTDL?= no 106USE_LIBLTDL?= no
107 107
108FILES_SUBST+= PG_PREFIX=${PG_PREFIX:Q} 108FILES_SUBST+= PG_PREFIX=${PG_PREFIX:Q}
109 109
110.include "../../devel/gettext-lib/buildlink3.mk" 110.include "../../devel/gettext-lib/buildlink3.mk"
111 111
112post-extract: 112post-extract:
113 if ${TEST} -d ${WRKSRC}/src; then \ 113 if ${TEST} -d ${WRKSRC}/src; then \
114 rm -f ${WRKSRC}/src/Makefile.custom; \ 114 rm -f ${WRKSRC}/src/Makefile.custom; \
115 cp -f ${COMMON_FILESDIR}/Makefile.custom \ 115 cp -f ${COMMON_FILESDIR}/Makefile.custom \
116 ${WRKSRC}/src/Makefile.custom; \ 116 ${WRKSRC}/src/Makefile.custom; \
117 rm -f ${WRKSRC}/src/Makefile.shlib; \ 117 rm -f ${WRKSRC}/src/Makefile.shlib; \
118 cp -f ${COMMON_FILESDIR}/Makefile.libtool \ 118 cp -f ${COMMON_FILESDIR}/Makefile.libtool \
119 ${WRKSRC}/src/Makefile.shlib; \ 119 ${WRKSRC}/src/Makefile.shlib; \
120 fi 120 fi
121 if ${TEST} -d ${WRKSRC}/src/interfaces/libpq; then \ 121 if ${TEST} -d ${WRKSRC}/src/interfaces/libpq; then \
122 rm -f ${WRKSRC}/src/interfaces/libpq/GNUmakefile; \ 122 rm -f ${WRKSRC}/src/interfaces/libpq/GNUmakefile; \
123 cp -f ${COMMON_FILESDIR}/GNUmakefile.libpq \ 123 cp -f ${COMMON_FILESDIR}/GNUmakefile.libpq \
124 ${WRKSRC}/src/interfaces/libpq/GNUmakefile; \ 124 ${WRKSRC}/src/interfaces/libpq/GNUmakefile; \
125 fi 125 fi
126 if ${TEST} -d ${WRKSRC}/src/interfaces/libpgtcl; then \ 126 if ${TEST} -d ${WRKSRC}/src/interfaces/libpgtcl; then \
127 rm -f ${WRKSRC}/src/interfaces/libpgtcl/GNUmakefile; \ 127 rm -f ${WRKSRC}/src/interfaces/libpgtcl/GNUmakefile; \
128 cp -f ${COMMON_FILESDIR}/GNUmakefile.libpgtcl \ 128 cp -f ${COMMON_FILESDIR}/GNUmakefile.libpgtcl \
129 ${WRKSRC}/src/interfaces/libpgtcl/GNUmakefile; \ 129 ${WRKSRC}/src/interfaces/libpgtcl/GNUmakefile; \
130 fi 130 fi
131.if !empty(USE_LIBLTDL:M[yY][eE][sS]) 131.if !empty(USE_LIBLTDL:M[yY][eE][sS])
132 if ${TEST} -d ${WRKSRC}/src/backend/port/dynloader; then \ 132 if ${TEST} -d ${WRKSRC}/src/backend/port/dynloader; then \
133 template=${PGSQL_TEMPLATE.${OPSYS}:Q}; \ 133 template=${PGSQL_TEMPLATE.${OPSYS}:Q}; \
134 rm -f ${WRKSRC}/src/backend/port/dynloader/$$template.[ch]; \ 134 rm -f ${WRKSRC}/src/backend/port/dynloader/$$template.[ch]; \
135 cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \ 135 cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \
136 ${WRKSRC}/src/backend/port/dynloader/$$template.h; \ 136 ${WRKSRC}/src/backend/port/dynloader/$$template.h; \
137 ${ECHO} "static int dummy = 0;" \ 137 ${ECHO} "static int dummy = 0;" \
138 >${WRKSRC}/src/backend/port/dynloader/$$template.c 138 >${WRKSRC}/src/backend/port/dynloader/$$template.c
139 fi 139 fi
140.endif 140.endif
141 if ${TEST} -d ${WRKSRC}/src/template; then \ 141 if ${TEST} -d ${WRKSRC}/src/template; then \
142 touch ${WRKSRC}/src/template/dragonfly; \ 142 touch ${WRKSRC}/src/template/dragonfly; \
143 fi 143 fi
144 if ${TEST} -d ${WRKSRC}/src/backend/port/dynloader; then \ 144 if ${TEST} -d ${WRKSRC}/src/backend/port/dynloader; then \
145 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \ 145 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \
146 ${WRKSRC}/src/backend/port/dynloader/dragonfly.c; \ 146 ${WRKSRC}/src/backend/port/dynloader/dragonfly.c; \
147 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \ 147 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \
148 ${WRKSRC}/src/backend/port/dynloader/dragonfly.h; \ 148 ${WRKSRC}/src/backend/port/dynloader/dragonfly.h; \
149 fi 149 fi
150 if ${TEST} -d ${WRKSRC}/src/include/port; then \ 150 if ${TEST} -d ${WRKSRC}/src/include/port; then \
151 cp ${WRKSRC}/src/include/port/freebsd.h \ 151 cp ${WRKSRC}/src/include/port/freebsd.h \
152 ${WRKSRC}/src/include/port/dragonfly.h; \ 152 ${WRKSRC}/src/include/port/dragonfly.h; \
153 fi 153 fi
154 if ${TEST} -d ${WRKSRC}/src/makefiles; then \ 154 if ${TEST} -d ${WRKSRC}/src/makefiles; then \
155 cp ${WRKSRC}/src/makefiles/Makefile.freebsd \ 155 cp ${WRKSRC}/src/makefiles/Makefile.freebsd \
156 ${WRKSRC}/src/makefiles/Makefile.dragonfly; \ 156 ${WRKSRC}/src/makefiles/Makefile.dragonfly; \
157 fi 157 fi
158 158
159# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block. 159# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block.
160# This also limits the size of a tuple. The valid values are powers 160# This also limits the size of a tuple. The valid values are powers
161# of 2 up to 32768, and the default size is 8196 (hardcoded in the 161# of 2 up to 32768, and the default size is 8196 (hardcoded in the
162# PostgreSQL sources). Please don't change this value unless you know 162# PostgreSQL sources). Please don't change this value unless you know
163# what you are doing. 163# what you are doing.
164# 164#
165BUILD_DEFS+= PGSQL_BLCKSZ 165BUILD_DEFS+= PGSQL_BLCKSZ
166 166
167.if defined(PGSQL_BLCKSZ) 167.if defined(PGSQL_BLCKSZ)
168.PHONY: pgsql-blcksz 168.PHONY: pgsql-blcksz
169pre-configure: pgsql-blcksz 169pre-configure: pgsql-blcksz
170pgsql-blcksz: 170pgsql-blcksz:
171 for file in ${WRKSRC}/src/include/pg_config_manual.h; do \ 171 for file in ${WRKSRC}/src/include/pg_config_manual.h; do \
172 ${SED} -e "/^#define[ ]*BLCKSZ[ ]*/s/^\(#define[ ]*BLCKSZ\).*/\1 ${PGSQL_BLCKSZ}/" $$file > $$file.new; \ 172 ${SED} -e "/^#define[ ]*BLCKSZ[ ]*/s/^\(#define[ ]*BLCKSZ\).*/\1 ${PGSQL_BLCKSZ}/" $$file > $$file.new; \
173 ${MV} -f $$file.new $$file; \ 173 ${MV} -f $$file.new $$file; \
174 done 174 done
175.endif 175.endif

cvs diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83/Attic/distinfo (switch to unified diff)

--- pkgsrc/databases/postgresql83/Attic/distinfo 2008/03/04 12:41:36 1.1.1.1
+++ pkgsrc/databases/postgresql83/Attic/distinfo 2008/04/05 16:39:27 1.2
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1$NetBSD: distinfo,v 1.1.1.1 2008/03/04 12:41:36 adam Exp $ 1$NetBSD: distinfo,v 1.2 2008/04/05 16:39:27 adam Exp $
2 2
3SHA1 (postgresql-8.3.0.tar.bz2) = b221e9a82fdb10af1a2b527551a4e30b7ccb958d 3SHA1 (postgresql-8.3.1.tar.bz2) = 7397e0d8fd3c420ee845d9ae4995ae347bfaea1d
4RMD160 (postgresql-8.3.0.tar.bz2) = 99f48d26d9b0fb0cfda0de7156ad6a9554017d9e 4RMD160 (postgresql-8.3.1.tar.bz2) = 075efb67126f2b308d2a5fe4f9097fdbfbe94c89
5Size (postgresql-8.3.0.tar.bz2) = 13923051 bytes 5Size (postgresql-8.3.1.tar.bz2) = 13995572 bytes
6SHA1 (patch-aa) = a7112ce2e9fc28f638afcf2e196d3cdc0f4c254d 6SHA1 (patch-aa) = a7112ce2e9fc28f638afcf2e196d3cdc0f4c254d
7SHA1 (patch-ab) = 205e4540767f91c6ce6d509bf71516989feef93d 7SHA1 (patch-ab) = 8bc81e1f95cf8933a4da2e557539764054b51f5f
8SHA1 (patch-ac) = 8e3a7021fdd01810d4ebcbd20002b28164b22279 8SHA1 (patch-ac) = 8e3a7021fdd01810d4ebcbd20002b28164b22279
9SHA1 (patch-ad) = 471ebd457a3e560766321eefdcd7df26b6e2d4b9 9SHA1 (patch-ad) = 5612e447bbb76e81f72d39ad0153b9f77d47f653
10SHA1 (patch-ae) = 8b3e47320dfe05d94b769c9b079fd7ca6d26f5d6 10SHA1 (patch-ae) = 8b3e47320dfe05d94b769c9b079fd7ca6d26f5d6
11SHA1 (patch-af) = fcb43276c1f3349f62acfc37ac0bd6ccaae96f29 11SHA1 (patch-af) = fcb43276c1f3349f62acfc37ac0bd6ccaae96f29
12SHA1 (patch-ag) = 402d5d211af99efdfa35677299c97e91e14ed85d 12SHA1 (patch-ag) = 402d5d211af99efdfa35677299c97e91e14ed85d
13SHA1 (patch-ah) = 3640573195f66a46c37d9fca2648d6be39f5593b 13SHA1 (patch-ah) = 3640573195f66a46c37d9fca2648d6be39f5593b
14SHA1 (patch-ai) = a2364b8e1e8a3094e1c5bfb0cad2d0babe0a8841 14SHA1 (patch-ai) = a2364b8e1e8a3094e1c5bfb0cad2d0babe0a8841
15SHA1 (patch-aj) = 8fa23bf8e3aebe86025d4d17bb484d30166f4bd5 15SHA1 (patch-aj) = 8fa23bf8e3aebe86025d4d17bb484d30166f4bd5
16SHA1 (patch-an) = a1e7f421a101cf9ccddcaf3ce17aa1847cf76310 16SHA1 (patch-an) = a1e7f421a101cf9ccddcaf3ce17aa1847cf76310

cvs diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83-client/Attic/PLIST (switch to unified diff)

--- pkgsrc/databases/postgresql83-client/Attic/PLIST 2008/03/04 12:42:56 1.1.1.1
+++ pkgsrc/databases/postgresql83-client/Attic/PLIST 2008/04/05 16:39:27 1.2
@@ -1,1761 +1,1763 @@ @@ -1,1761 +1,1763 @@
1@comment $NetBSD: PLIST,v 1.1.1.1 2008/03/04 12:42:56 adam Exp $ 1@comment $NetBSD: PLIST,v 1.2 2008/04/05 16:39:27 adam Exp $
2${PG_SUBPREFIX}bin/clusterdb 2${PG_SUBPREFIX}bin/clusterdb
3${PG_SUBPREFIX}bin/createdb 3${PG_SUBPREFIX}bin/createdb
4${PG_SUBPREFIX}bin/createlang 4${PG_SUBPREFIX}bin/createlang
5${PG_SUBPREFIX}bin/createuser 5${PG_SUBPREFIX}bin/createuser
6${PG_SUBPREFIX}bin/dropdb 6${PG_SUBPREFIX}bin/dropdb
7${PG_SUBPREFIX}bin/droplang 7${PG_SUBPREFIX}bin/droplang
8${PG_SUBPREFIX}bin/dropuser 8${PG_SUBPREFIX}bin/dropuser
9${PG_SUBPREFIX}bin/ecpg 9${PG_SUBPREFIX}bin/ecpg
10${PG_SUBPREFIX}bin/initdb 10${PG_SUBPREFIX}bin/initdb
11${PG_SUBPREFIX}bin/ipcclean 11${PG_SUBPREFIX}bin/ipcclean
12${PG_SUBPREFIX}bin/pg_config 12${PG_SUBPREFIX}bin/pg_config
13${PG_SUBPREFIX}bin/pg_controldata 13${PG_SUBPREFIX}bin/pg_controldata
14${PG_SUBPREFIX}bin/pg_ctl 14${PG_SUBPREFIX}bin/pg_ctl
15${PG_SUBPREFIX}bin/pg_dump 15${PG_SUBPREFIX}bin/pg_dump
16${PG_SUBPREFIX}bin/pg_dumpall 16${PG_SUBPREFIX}bin/pg_dumpall
17${PG_SUBPREFIX}bin/pg_resetxlog 17${PG_SUBPREFIX}bin/pg_resetxlog
18${PG_SUBPREFIX}bin/pg_restore 18${PG_SUBPREFIX}bin/pg_restore
19${PG_SUBPREFIX}bin/psql 19${PG_SUBPREFIX}bin/psql
20${PG_SUBPREFIX}bin/reindexdb 20${PG_SUBPREFIX}bin/reindexdb
21${PG_SUBPREFIX}bin/vacuumdb 21${PG_SUBPREFIX}bin/vacuumdb
22${PG_SUBPREFIX}include/ecpg_config.h 22${PG_SUBPREFIX}include/ecpg_config.h
23${PG_SUBPREFIX}include/ecpg_informix.h 23${PG_SUBPREFIX}include/ecpg_informix.h
24${PG_SUBPREFIX}include/ecpgerrno.h 24${PG_SUBPREFIX}include/ecpgerrno.h
25${PG_SUBPREFIX}include/ecpglib.h 25${PG_SUBPREFIX}include/ecpglib.h
26${PG_SUBPREFIX}include/ecpgtype.h 26${PG_SUBPREFIX}include/ecpgtype.h
27${PG_SUBPREFIX}include/libpq-fe.h 27${PG_SUBPREFIX}include/libpq-fe.h
28${PG_SUBPREFIX}include/libpq/libpq-fs.h 28${PG_SUBPREFIX}include/libpq/libpq-fs.h
29${PG_SUBPREFIX}include/pg_config.h 29${PG_SUBPREFIX}include/pg_config.h
30${PG_SUBPREFIX}include/pg_config_manual.h 30${PG_SUBPREFIX}include/pg_config_manual.h
31${PG_SUBPREFIX}include/pg_config_os.h 31${PG_SUBPREFIX}include/pg_config_os.h
32${PG_SUBPREFIX}include/pgtypes_date.h 32${PG_SUBPREFIX}include/pgtypes_date.h
33${PG_SUBPREFIX}include/pgtypes_error.h 33${PG_SUBPREFIX}include/pgtypes_error.h
34${PG_SUBPREFIX}include/pgtypes_interval.h 34${PG_SUBPREFIX}include/pgtypes_interval.h
35${PG_SUBPREFIX}include/pgtypes_numeric.h 35${PG_SUBPREFIX}include/pgtypes_numeric.h
36${PG_SUBPREFIX}include/pgtypes_timestamp.h 36${PG_SUBPREFIX}include/pgtypes_timestamp.h
37${PG_SUBPREFIX}include/postgres_ext.h 37${PG_SUBPREFIX}include/postgres_ext.h
38${PG_SUBPREFIX}include/postgresql/informix/esql/datetime.h 38${PG_SUBPREFIX}include/postgresql/informix/esql/datetime.h
39${PG_SUBPREFIX}include/postgresql/informix/esql/decimal.h 39${PG_SUBPREFIX}include/postgresql/informix/esql/decimal.h
40${PG_SUBPREFIX}include/postgresql/informix/esql/sqlda.h 40${PG_SUBPREFIX}include/postgresql/informix/esql/sqlda.h
41${PG_SUBPREFIX}include/postgresql/informix/esql/sqltypes.h 41${PG_SUBPREFIX}include/postgresql/informix/esql/sqltypes.h
42${PG_SUBPREFIX}include/postgresql/internal/c.h 42${PG_SUBPREFIX}include/postgresql/internal/c.h
43${PG_SUBPREFIX}include/postgresql/internal/libpq-int.h 43${PG_SUBPREFIX}include/postgresql/internal/libpq-int.h
44${PG_SUBPREFIX}include/postgresql/internal/libpq/pqcomm.h 44${PG_SUBPREFIX}include/postgresql/internal/libpq/pqcomm.h
45${PG_SUBPREFIX}include/postgresql/internal/port.h 45${PG_SUBPREFIX}include/postgresql/internal/port.h
46${PG_SUBPREFIX}include/postgresql/internal/postgres_fe.h 46${PG_SUBPREFIX}include/postgresql/internal/postgres_fe.h
47${PG_SUBPREFIX}include/postgresql/internal/pqexpbuffer.h 47${PG_SUBPREFIX}include/postgresql/internal/pqexpbuffer.h
48${PG_SUBPREFIX}include/postgresql/server/access/attnum.h 48${PG_SUBPREFIX}include/postgresql/server/access/attnum.h
49${PG_SUBPREFIX}include/postgresql/server/access/clog.h 49${PG_SUBPREFIX}include/postgresql/server/access/clog.h
50${PG_SUBPREFIX}include/postgresql/server/access/genam.h 50${PG_SUBPREFIX}include/postgresql/server/access/genam.h
51${PG_SUBPREFIX}include/postgresql/server/access/gin.h 51${PG_SUBPREFIX}include/postgresql/server/access/gin.h
52${PG_SUBPREFIX}include/postgresql/server/access/gist.h 52${PG_SUBPREFIX}include/postgresql/server/access/gist.h
53${PG_SUBPREFIX}include/postgresql/server/access/gist_private.h 53${PG_SUBPREFIX}include/postgresql/server/access/gist_private.h
54${PG_SUBPREFIX}include/postgresql/server/access/gistscan.h 54${PG_SUBPREFIX}include/postgresql/server/access/gistscan.h
55${PG_SUBPREFIX}include/postgresql/server/access/hash.h 55${PG_SUBPREFIX}include/postgresql/server/access/hash.h
56${PG_SUBPREFIX}include/postgresql/server/access/heapam.h 56${PG_SUBPREFIX}include/postgresql/server/access/heapam.h
57${PG_SUBPREFIX}include/postgresql/server/access/hio.h 57${PG_SUBPREFIX}include/postgresql/server/access/hio.h
58${PG_SUBPREFIX}include/postgresql/server/access/htup.h 58${PG_SUBPREFIX}include/postgresql/server/access/htup.h
59${PG_SUBPREFIX}include/postgresql/server/access/itup.h 59${PG_SUBPREFIX}include/postgresql/server/access/itup.h
60${PG_SUBPREFIX}include/postgresql/server/access/multixact.h 60${PG_SUBPREFIX}include/postgresql/server/access/multixact.h
61${PG_SUBPREFIX}include/postgresql/server/access/nbtree.h 61${PG_SUBPREFIX}include/postgresql/server/access/nbtree.h
62${PG_SUBPREFIX}include/postgresql/server/access/printtup.h 62${PG_SUBPREFIX}include/postgresql/server/access/printtup.h
63${PG_SUBPREFIX}include/postgresql/server/access/reloptions.h 63${PG_SUBPREFIX}include/postgresql/server/access/reloptions.h
64${PG_SUBPREFIX}include/postgresql/server/access/relscan.h 64${PG_SUBPREFIX}include/postgresql/server/access/relscan.h
65${PG_SUBPREFIX}include/postgresql/server/access/rewriteheap.h 65${PG_SUBPREFIX}include/postgresql/server/access/rewriteheap.h
66${PG_SUBPREFIX}include/postgresql/server/access/rmgr.h 66${PG_SUBPREFIX}include/postgresql/server/access/rmgr.h
67${PG_SUBPREFIX}include/postgresql/server/access/sdir.h 67${PG_SUBPREFIX}include/postgresql/server/access/sdir.h
68${PG_SUBPREFIX}include/postgresql/server/access/skey.h 68${PG_SUBPREFIX}include/postgresql/server/access/skey.h
69${PG_SUBPREFIX}include/postgresql/server/access/slru.h 69${PG_SUBPREFIX}include/postgresql/server/access/slru.h
70${PG_SUBPREFIX}include/postgresql/server/access/subtrans.h 70${PG_SUBPREFIX}include/postgresql/server/access/subtrans.h
71${PG_SUBPREFIX}include/postgresql/server/access/transam.h 71${PG_SUBPREFIX}include/postgresql/server/access/transam.h
72${PG_SUBPREFIX}include/postgresql/server/access/tupdesc.h 72${PG_SUBPREFIX}include/postgresql/server/access/tupdesc.h
73${PG_SUBPREFIX}include/postgresql/server/access/tupmacs.h 73${PG_SUBPREFIX}include/postgresql/server/access/tupmacs.h
74${PG_SUBPREFIX}include/postgresql/server/access/tuptoaster.h 74${PG_SUBPREFIX}include/postgresql/server/access/tuptoaster.h
75${PG_SUBPREFIX}include/postgresql/server/access/twophase.h 75${PG_SUBPREFIX}include/postgresql/server/access/twophase.h
76${PG_SUBPREFIX}include/postgresql/server/access/twophase_rmgr.h 76${PG_SUBPREFIX}include/postgresql/server/access/twophase_rmgr.h
77${PG_SUBPREFIX}include/postgresql/server/access/valid.h 77${PG_SUBPREFIX}include/postgresql/server/access/valid.h
78${PG_SUBPREFIX}include/postgresql/server/access/xact.h 78${PG_SUBPREFIX}include/postgresql/server/access/xact.h
79${PG_SUBPREFIX}include/postgresql/server/access/xlog.h 79${PG_SUBPREFIX}include/postgresql/server/access/xlog.h
80${PG_SUBPREFIX}include/postgresql/server/access/xlog_internal.h 80${PG_SUBPREFIX}include/postgresql/server/access/xlog_internal.h
81${PG_SUBPREFIX}include/postgresql/server/access/xlogdefs.h 81${PG_SUBPREFIX}include/postgresql/server/access/xlogdefs.h
82${PG_SUBPREFIX}include/postgresql/server/access/xlogutils.h 82${PG_SUBPREFIX}include/postgresql/server/access/xlogutils.h
83${PG_SUBPREFIX}include/postgresql/server/bootstrap/bootstrap.h 83${PG_SUBPREFIX}include/postgresql/server/bootstrap/bootstrap.h
84${PG_SUBPREFIX}include/postgresql/server/c.h 84${PG_SUBPREFIX}include/postgresql/server/c.h
85${PG_SUBPREFIX}include/postgresql/server/catalog/catalog.h 85${PG_SUBPREFIX}include/postgresql/server/catalog/catalog.h
86${PG_SUBPREFIX}include/postgresql/server/catalog/catversion.h 86${PG_SUBPREFIX}include/postgresql/server/catalog/catversion.h
87${PG_SUBPREFIX}include/postgresql/server/catalog/dependency.h 87${PG_SUBPREFIX}include/postgresql/server/catalog/dependency.h
88${PG_SUBPREFIX}include/postgresql/server/catalog/heap.h 88${PG_SUBPREFIX}include/postgresql/server/catalog/heap.h
89${PG_SUBPREFIX}include/postgresql/server/catalog/index.h 89${PG_SUBPREFIX}include/postgresql/server/catalog/index.h
90${PG_SUBPREFIX}include/postgresql/server/catalog/indexing.h 90${PG_SUBPREFIX}include/postgresql/server/catalog/indexing.h
91${PG_SUBPREFIX}include/postgresql/server/catalog/namespace.h 91${PG_SUBPREFIX}include/postgresql/server/catalog/namespace.h
92${PG_SUBPREFIX}include/postgresql/server/catalog/pg_aggregate.h 92${PG_SUBPREFIX}include/postgresql/server/catalog/pg_aggregate.h
93${PG_SUBPREFIX}include/postgresql/server/catalog/pg_am.h 93${PG_SUBPREFIX}include/postgresql/server/catalog/pg_am.h
94${PG_SUBPREFIX}include/postgresql/server/catalog/pg_amop.h 94${PG_SUBPREFIX}include/postgresql/server/catalog/pg_amop.h
95${PG_SUBPREFIX}include/postgresql/server/catalog/pg_amproc.h 95${PG_SUBPREFIX}include/postgresql/server/catalog/pg_amproc.h
96${PG_SUBPREFIX}include/postgresql/server/catalog/pg_attrdef.h 96${PG_SUBPREFIX}include/postgresql/server/catalog/pg_attrdef.h
97${PG_SUBPREFIX}include/postgresql/server/catalog/pg_attribute.h 97${PG_SUBPREFIX}include/postgresql/server/catalog/pg_attribute.h
98${PG_SUBPREFIX}include/postgresql/server/catalog/pg_auth_members.h 98${PG_SUBPREFIX}include/postgresql/server/catalog/pg_auth_members.h
99${PG_SUBPREFIX}include/postgresql/server/catalog/pg_authid.h 99${PG_SUBPREFIX}include/postgresql/server/catalog/pg_authid.h
100${PG_SUBPREFIX}include/postgresql/server/catalog/pg_autovacuum.h 100${PG_SUBPREFIX}include/postgresql/server/catalog/pg_autovacuum.h
101${PG_SUBPREFIX}include/postgresql/server/catalog/pg_cast.h 101${PG_SUBPREFIX}include/postgresql/server/catalog/pg_cast.h
102${PG_SUBPREFIX}include/postgresql/server/catalog/pg_class.h 102${PG_SUBPREFIX}include/postgresql/server/catalog/pg_class.h
103${PG_SUBPREFIX}include/postgresql/server/catalog/pg_constraint.h 103${PG_SUBPREFIX}include/postgresql/server/catalog/pg_constraint.h
104${PG_SUBPREFIX}include/postgresql/server/catalog/pg_control.h 104${PG_SUBPREFIX}include/postgresql/server/catalog/pg_control.h
105${PG_SUBPREFIX}include/postgresql/server/catalog/pg_conversion.h 105${PG_SUBPREFIX}include/postgresql/server/catalog/pg_conversion.h
106${PG_SUBPREFIX}include/postgresql/server/catalog/pg_database.h 106${PG_SUBPREFIX}include/postgresql/server/catalog/pg_database.h
107${PG_SUBPREFIX}include/postgresql/server/catalog/pg_depend.h 107${PG_SUBPREFIX}include/postgresql/server/catalog/pg_depend.h
108${PG_SUBPREFIX}include/postgresql/server/catalog/pg_description.h 108${PG_SUBPREFIX}include/postgresql/server/catalog/pg_description.h
109${PG_SUBPREFIX}include/postgresql/server/catalog/pg_enum.h 109${PG_SUBPREFIX}include/postgresql/server/catalog/pg_enum.h
110${PG_SUBPREFIX}include/postgresql/server/catalog/pg_index.h 110${PG_SUBPREFIX}include/postgresql/server/catalog/pg_index.h
111${PG_SUBPREFIX}include/postgresql/server/catalog/pg_inherits.h 111${PG_SUBPREFIX}include/postgresql/server/catalog/pg_inherits.h
112${PG_SUBPREFIX}include/postgresql/server/catalog/pg_language.h 112${PG_SUBPREFIX}include/postgresql/server/catalog/pg_language.h
113${PG_SUBPREFIX}include/postgresql/server/catalog/pg_largeobject.h 113${PG_SUBPREFIX}include/postgresql/server/catalog/pg_largeobject.h
114${PG_SUBPREFIX}include/postgresql/server/catalog/pg_listener.h 114${PG_SUBPREFIX}include/postgresql/server/catalog/pg_listener.h
115${PG_SUBPREFIX}include/postgresql/server/catalog/pg_namespace.h 115${PG_SUBPREFIX}include/postgresql/server/catalog/pg_namespace.h
116${PG_SUBPREFIX}include/postgresql/server/catalog/pg_opclass.h 116${PG_SUBPREFIX}include/postgresql/server/catalog/pg_opclass.h
117${PG_SUBPREFIX}include/postgresql/server/catalog/pg_operator.h 117${PG_SUBPREFIX}include/postgresql/server/catalog/pg_operator.h
118${PG_SUBPREFIX}include/postgresql/server/catalog/pg_opfamily.h 118${PG_SUBPREFIX}include/postgresql/server/catalog/pg_opfamily.h
119${PG_SUBPREFIX}include/postgresql/server/catalog/pg_pltemplate.h 119${PG_SUBPREFIX}include/postgresql/server/catalog/pg_pltemplate.h
120${PG_SUBPREFIX}include/postgresql/server/catalog/pg_proc.h 120${PG_SUBPREFIX}include/postgresql/server/catalog/pg_proc.h
121${PG_SUBPREFIX}include/postgresql/server/catalog/pg_rewrite.h 121${PG_SUBPREFIX}include/postgresql/server/catalog/pg_rewrite.h
122${PG_SUBPREFIX}include/postgresql/server/catalog/pg_shdepend.h 122${PG_SUBPREFIX}include/postgresql/server/catalog/pg_shdepend.h
123${PG_SUBPREFIX}include/postgresql/server/catalog/pg_shdescription.h 123${PG_SUBPREFIX}include/postgresql/server/catalog/pg_shdescription.h
124${PG_SUBPREFIX}include/postgresql/server/catalog/pg_statistic.h 124${PG_SUBPREFIX}include/postgresql/server/catalog/pg_statistic.h
125${PG_SUBPREFIX}include/postgresql/server/catalog/pg_tablespace.h 125${PG_SUBPREFIX}include/postgresql/server/catalog/pg_tablespace.h
126${PG_SUBPREFIX}include/postgresql/server/catalog/pg_trigger.h 126${PG_SUBPREFIX}include/postgresql/server/catalog/pg_trigger.h
127${PG_SUBPREFIX}include/postgresql/server/catalog/pg_ts_config.h 127${PG_SUBPREFIX}include/postgresql/server/catalog/pg_ts_config.h
128${PG_SUBPREFIX}include/postgresql/server/catalog/pg_ts_config_map.h 128${PG_SUBPREFIX}include/postgresql/server/catalog/pg_ts_config_map.h
129${PG_SUBPREFIX}include/postgresql/server/catalog/pg_ts_dict.h 129${PG_SUBPREFIX}include/postgresql/server/catalog/pg_ts_dict.h
130${PG_SUBPREFIX}include/postgresql/server/catalog/pg_ts_parser.h 130${PG_SUBPREFIX}include/postgresql/server/catalog/pg_ts_parser.h
131${PG_SUBPREFIX}include/postgresql/server/catalog/pg_ts_template.h 131${PG_SUBPREFIX}include/postgresql/server/catalog/pg_ts_template.h
132${PG_SUBPREFIX}include/postgresql/server/catalog/pg_type.h 132${PG_SUBPREFIX}include/postgresql/server/catalog/pg_type.h
133${PG_SUBPREFIX}include/postgresql/server/catalog/toasting.h 133${PG_SUBPREFIX}include/postgresql/server/catalog/toasting.h
134${PG_SUBPREFIX}include/postgresql/server/commands/alter.h 134${PG_SUBPREFIX}include/postgresql/server/commands/alter.h
135${PG_SUBPREFIX}include/postgresql/server/commands/async.h 135${PG_SUBPREFIX}include/postgresql/server/commands/async.h
136${PG_SUBPREFIX}include/postgresql/server/commands/cluster.h 136${PG_SUBPREFIX}include/postgresql/server/commands/cluster.h
137${PG_SUBPREFIX}include/postgresql/server/commands/comment.h 137${PG_SUBPREFIX}include/postgresql/server/commands/comment.h
138${PG_SUBPREFIX}include/postgresql/server/commands/conversioncmds.h 138${PG_SUBPREFIX}include/postgresql/server/commands/conversioncmds.h
139${PG_SUBPREFIX}include/postgresql/server/commands/copy.h 139${PG_SUBPREFIX}include/postgresql/server/commands/copy.h
140${PG_SUBPREFIX}include/postgresql/server/commands/dbcommands.h 140${PG_SUBPREFIX}include/postgresql/server/commands/dbcommands.h
141${PG_SUBPREFIX}include/postgresql/server/commands/defrem.h 141${PG_SUBPREFIX}include/postgresql/server/commands/defrem.h
142${PG_SUBPREFIX}include/postgresql/server/commands/discard.h 142${PG_SUBPREFIX}include/postgresql/server/commands/discard.h
143${PG_SUBPREFIX}include/postgresql/server/commands/explain.h 143${PG_SUBPREFIX}include/postgresql/server/commands/explain.h
144${PG_SUBPREFIX}include/postgresql/server/commands/lockcmds.h 144${PG_SUBPREFIX}include/postgresql/server/commands/lockcmds.h
145${PG_SUBPREFIX}include/postgresql/server/commands/portalcmds.h 145${PG_SUBPREFIX}include/postgresql/server/commands/portalcmds.h
146${PG_SUBPREFIX}include/postgresql/server/commands/prepare.h 146${PG_SUBPREFIX}include/postgresql/server/commands/prepare.h
147${PG_SUBPREFIX}include/postgresql/server/commands/proclang.h 147${PG_SUBPREFIX}include/postgresql/server/commands/proclang.h
148${PG_SUBPREFIX}include/postgresql/server/commands/schemacmds.h 148${PG_SUBPREFIX}include/postgresql/server/commands/schemacmds.h
149${PG_SUBPREFIX}include/postgresql/server/commands/sequence.h 149${PG_SUBPREFIX}include/postgresql/server/commands/sequence.h
150${PG_SUBPREFIX}include/postgresql/server/commands/tablecmds.h 150${PG_SUBPREFIX}include/postgresql/server/commands/tablecmds.h
151${PG_SUBPREFIX}include/postgresql/server/commands/tablespace.h 151${PG_SUBPREFIX}include/postgresql/server/commands/tablespace.h
152${PG_SUBPREFIX}include/postgresql/server/commands/trigger.h 152${PG_SUBPREFIX}include/postgresql/server/commands/trigger.h
153${PG_SUBPREFIX}include/postgresql/server/commands/typecmds.h 153${PG_SUBPREFIX}include/postgresql/server/commands/typecmds.h
154${PG_SUBPREFIX}include/postgresql/server/commands/user.h 154${PG_SUBPREFIX}include/postgresql/server/commands/user.h
155${PG_SUBPREFIX}include/postgresql/server/commands/vacuum.h 155${PG_SUBPREFIX}include/postgresql/server/commands/vacuum.h
156${PG_SUBPREFIX}include/postgresql/server/commands/variable.h 156${PG_SUBPREFIX}include/postgresql/server/commands/variable.h
157${PG_SUBPREFIX}include/postgresql/server/commands/version.h 157${PG_SUBPREFIX}include/postgresql/server/commands/version.h
158${PG_SUBPREFIX}include/postgresql/server/commands/view.h 158${PG_SUBPREFIX}include/postgresql/server/commands/view.h
159${PG_SUBPREFIX}include/postgresql/server/dynloader.h 159${PG_SUBPREFIX}include/postgresql/server/dynloader.h
160${PG_SUBPREFIX}include/postgresql/server/executor/execdebug.h 160${PG_SUBPREFIX}include/postgresql/server/executor/execdebug.h
161${PG_SUBPREFIX}include/postgresql/server/executor/execdefs.h 161${PG_SUBPREFIX}include/postgresql/server/executor/execdefs.h
162${PG_SUBPREFIX}include/postgresql/server/executor/execdesc.h 162${PG_SUBPREFIX}include/postgresql/server/executor/execdesc.h
163${PG_SUBPREFIX}include/postgresql/server/executor/executor.h 163${PG_SUBPREFIX}include/postgresql/server/executor/executor.h
164${PG_SUBPREFIX}include/postgresql/server/executor/functions.h 164${PG_SUBPREFIX}include/postgresql/server/executor/functions.h
165${PG_SUBPREFIX}include/postgresql/server/executor/hashjoin.h 165${PG_SUBPREFIX}include/postgresql/server/executor/hashjoin.h
166${PG_SUBPREFIX}include/postgresql/server/executor/instrument.h 166${PG_SUBPREFIX}include/postgresql/server/executor/instrument.h
167${PG_SUBPREFIX}include/postgresql/server/executor/nodeAgg.h 167${PG_SUBPREFIX}include/postgresql/server/executor/nodeAgg.h
168${PG_SUBPREFIX}include/postgresql/server/executor/nodeAppend.h 168${PG_SUBPREFIX}include/postgresql/server/executor/nodeAppend.h
169${PG_SUBPREFIX}include/postgresql/server/executor/nodeBitmapAnd.h 169${PG_SUBPREFIX}include/postgresql/server/executor/nodeBitmapAnd.h
170${PG_SUBPREFIX}include/postgresql/server/executor/nodeBitmapHeapscan.h 170${PG_SUBPREFIX}include/postgresql/server/executor/nodeBitmapHeapscan.h
171${PG_SUBPREFIX}include/postgresql/server/executor/nodeBitmapIndexscan.h 171${PG_SUBPREFIX}include/postgresql/server/executor/nodeBitmapIndexscan.h
172${PG_SUBPREFIX}include/postgresql/server/executor/nodeBitmapOr.h 172${PG_SUBPREFIX}include/postgresql/server/executor/nodeBitmapOr.h
173${PG_SUBPREFIX}include/postgresql/server/executor/nodeFunctionscan.h 173${PG_SUBPREFIX}include/postgresql/server/executor/nodeFunctionscan.h
174${PG_SUBPREFIX}include/postgresql/server/executor/nodeGroup.h 174${PG_SUBPREFIX}include/postgresql/server/executor/nodeGroup.h
175${PG_SUBPREFIX}include/postgresql/server/executor/nodeHash.h 175${PG_SUBPREFIX}include/postgresql/server/executor/nodeHash.h
176${PG_SUBPREFIX}include/postgresql/server/executor/nodeHashjoin.h 176${PG_SUBPREFIX}include/postgresql/server/executor/nodeHashjoin.h
177${PG_SUBPREFIX}include/postgresql/server/executor/nodeIndexscan.h 177${PG_SUBPREFIX}include/postgresql/server/executor/nodeIndexscan.h
178${PG_SUBPREFIX}include/postgresql/server/executor/nodeLimit.h 178${PG_SUBPREFIX}include/postgresql/server/executor/nodeLimit.h
179${PG_SUBPREFIX}include/postgresql/server/executor/nodeMaterial.h 179${PG_SUBPREFIX}include/postgresql/server/executor/nodeMaterial.h
180${PG_SUBPREFIX}include/postgresql/server/executor/nodeMergejoin.h 180${PG_SUBPREFIX}include/postgresql/server/executor/nodeMergejoin.h
181${PG_SUBPREFIX}include/postgresql/server/executor/nodeNestloop.h 181${PG_SUBPREFIX}include/postgresql/server/executor/nodeNestloop.h
182${PG_SUBPREFIX}include/postgresql/server/executor/nodeResult.h 182${PG_SUBPREFIX}include/postgresql/server/executor/nodeResult.h
183${PG_SUBPREFIX}include/postgresql/server/executor/nodeSeqscan.h 183${PG_SUBPREFIX}include/postgresql/server/executor/nodeSeqscan.h
184${PG_SUBPREFIX}include/postgresql/server/executor/nodeSetOp.h 184${PG_SUBPREFIX}include/postgresql/server/executor/nodeSetOp.h
185${PG_SUBPREFIX}include/postgresql/server/executor/nodeSort.h 185${PG_SUBPREFIX}include/postgresql/server/executor/nodeSort.h
186${PG_SUBPREFIX}include/postgresql/server/executor/nodeSubplan.h 186${PG_SUBPREFIX}include/postgresql/server/executor/nodeSubplan.h
187${PG_SUBPREFIX}include/postgresql/server/executor/nodeSubqueryscan.h 187${PG_SUBPREFIX}include/postgresql/server/executor/nodeSubqueryscan.h
188${PG_SUBPREFIX}include/postgresql/server/executor/nodeTidscan.h 188${PG_SUBPREFIX}include/postgresql/server/executor/nodeTidscan.h
189${PG_SUBPREFIX}include/postgresql/server/executor/nodeUnique.h 189${PG_SUBPREFIX}include/postgresql/server/executor/nodeUnique.h
190${PG_SUBPREFIX}include/postgresql/server/executor/nodeValuesscan.h 190${PG_SUBPREFIX}include/postgresql/server/executor/nodeValuesscan.h
191${PG_SUBPREFIX}include/postgresql/server/executor/spi.h 191${PG_SUBPREFIX}include/postgresql/server/executor/spi.h
192${PG_SUBPREFIX}include/postgresql/server/executor/spi_priv.h 192${PG_SUBPREFIX}include/postgresql/server/executor/spi_priv.h
193${PG_SUBPREFIX}include/postgresql/server/executor/tstoreReceiver.h 193${PG_SUBPREFIX}include/postgresql/server/executor/tstoreReceiver.h
194${PG_SUBPREFIX}include/postgresql/server/executor/tuptable.h 194${PG_SUBPREFIX}include/postgresql/server/executor/tuptable.h
195${PG_SUBPREFIX}include/postgresql/server/fmgr.h 195${PG_SUBPREFIX}include/postgresql/server/fmgr.h
196${PG_SUBPREFIX}include/postgresql/server/funcapi.h 196${PG_SUBPREFIX}include/postgresql/server/funcapi.h
197${PG_SUBPREFIX}include/postgresql/server/getaddrinfo.h 197${PG_SUBPREFIX}include/postgresql/server/getaddrinfo.h
198${PG_SUBPREFIX}include/postgresql/server/getopt_long.h 198${PG_SUBPREFIX}include/postgresql/server/getopt_long.h
199${PG_SUBPREFIX}include/postgresql/server/lib/dllist.h 199${PG_SUBPREFIX}include/postgresql/server/lib/dllist.h
200${PG_SUBPREFIX}include/postgresql/server/lib/stringinfo.h 200${PG_SUBPREFIX}include/postgresql/server/lib/stringinfo.h
201${PG_SUBPREFIX}include/postgresql/server/libpq/auth.h 201${PG_SUBPREFIX}include/postgresql/server/libpq/auth.h
202${PG_SUBPREFIX}include/postgresql/server/libpq/be-fsstubs.h 202${PG_SUBPREFIX}include/postgresql/server/libpq/be-fsstubs.h
203${PG_SUBPREFIX}include/postgresql/server/libpq/crypt.h 203${PG_SUBPREFIX}include/postgresql/server/libpq/crypt.h
204${PG_SUBPREFIX}include/postgresql/server/libpq/hba.h 204${PG_SUBPREFIX}include/postgresql/server/libpq/hba.h
205${PG_SUBPREFIX}include/postgresql/server/libpq/ip.h 205${PG_SUBPREFIX}include/postgresql/server/libpq/ip.h
206${PG_SUBPREFIX}include/postgresql/server/libpq/libpq-be.h 206${PG_SUBPREFIX}include/postgresql/server/libpq/libpq-be.h
207${PG_SUBPREFIX}include/postgresql/server/libpq/libpq-fs.h 207${PG_SUBPREFIX}include/postgresql/server/libpq/libpq-fs.h
208${PG_SUBPREFIX}include/postgresql/server/libpq/libpq.h 208${PG_SUBPREFIX}include/postgresql/server/libpq/libpq.h
209${PG_SUBPREFIX}include/postgresql/server/libpq/md5.h 209${PG_SUBPREFIX}include/postgresql/server/libpq/md5.h
210${PG_SUBPREFIX}include/postgresql/server/libpq/pqcomm.h 210${PG_SUBPREFIX}include/postgresql/server/libpq/pqcomm.h
211${PG_SUBPREFIX}include/postgresql/server/libpq/pqformat.h 211${PG_SUBPREFIX}include/postgresql/server/libpq/pqformat.h
212${PG_SUBPREFIX}include/postgresql/server/libpq/pqsignal.h 212${PG_SUBPREFIX}include/postgresql/server/libpq/pqsignal.h
213${PG_SUBPREFIX}include/postgresql/server/mb/pg_wchar.h 213${PG_SUBPREFIX}include/postgresql/server/mb/pg_wchar.h
214${PG_SUBPREFIX}include/postgresql/server/miscadmin.h 214${PG_SUBPREFIX}include/postgresql/server/miscadmin.h
215${PG_SUBPREFIX}include/postgresql/server/nodes/bitmapset.h 215${PG_SUBPREFIX}include/postgresql/server/nodes/bitmapset.h
216${PG_SUBPREFIX}include/postgresql/server/nodes/execnodes.h 216${PG_SUBPREFIX}include/postgresql/server/nodes/execnodes.h
217${PG_SUBPREFIX}include/postgresql/server/nodes/makefuncs.h 217${PG_SUBPREFIX}include/postgresql/server/nodes/makefuncs.h
218${PG_SUBPREFIX}include/postgresql/server/nodes/memnodes.h 218${PG_SUBPREFIX}include/postgresql/server/nodes/memnodes.h
219${PG_SUBPREFIX}include/postgresql/server/nodes/nodeFuncs.h 219${PG_SUBPREFIX}include/postgresql/server/nodes/nodeFuncs.h
220${PG_SUBPREFIX}include/postgresql/server/nodes/nodes.h 220${PG_SUBPREFIX}include/postgresql/server/nodes/nodes.h
221${PG_SUBPREFIX}include/postgresql/server/nodes/params.h 221${PG_SUBPREFIX}include/postgresql/server/nodes/params.h
222${PG_SUBPREFIX}include/postgresql/server/nodes/parsenodes.h 222${PG_SUBPREFIX}include/postgresql/server/nodes/parsenodes.h
223${PG_SUBPREFIX}include/postgresql/server/nodes/pg_list.h 223${PG_SUBPREFIX}include/postgresql/server/nodes/pg_list.h
224${PG_SUBPREFIX}include/postgresql/server/nodes/plannodes.h 224${PG_SUBPREFIX}include/postgresql/server/nodes/plannodes.h
225${PG_SUBPREFIX}include/postgresql/server/nodes/primnodes.h 225${PG_SUBPREFIX}include/postgresql/server/nodes/primnodes.h
226${PG_SUBPREFIX}include/postgresql/server/nodes/print.h 226${PG_SUBPREFIX}include/postgresql/server/nodes/print.h
227${PG_SUBPREFIX}include/postgresql/server/nodes/readfuncs.h 227${PG_SUBPREFIX}include/postgresql/server/nodes/readfuncs.h
228${PG_SUBPREFIX}include/postgresql/server/nodes/relation.h 228${PG_SUBPREFIX}include/postgresql/server/nodes/relation.h
229${PG_SUBPREFIX}include/postgresql/server/nodes/tidbitmap.h 229${PG_SUBPREFIX}include/postgresql/server/nodes/tidbitmap.h
230${PG_SUBPREFIX}include/postgresql/server/nodes/value.h 230${PG_SUBPREFIX}include/postgresql/server/nodes/value.h
231${PG_SUBPREFIX}include/postgresql/server/optimizer/clauses.h 231${PG_SUBPREFIX}include/postgresql/server/optimizer/clauses.h
232${PG_SUBPREFIX}include/postgresql/server/optimizer/cost.h 232${PG_SUBPREFIX}include/postgresql/server/optimizer/cost.h
233${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo.h 233${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo.h
234${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_copy.h 234${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_copy.h
235${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_gene.h 235${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_gene.h
236${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_misc.h 236${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_misc.h
237${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_mutation.h 237${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_mutation.h
238${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_pool.h 238${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_pool.h
239${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_random.h 239${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_random.h
240${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_recombination.h 240${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_recombination.h
241${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_selection.h 241${PG_SUBPREFIX}include/postgresql/server/optimizer/geqo_selection.h
242${PG_SUBPREFIX}include/postgresql/server/optimizer/joininfo.h 242${PG_SUBPREFIX}include/postgresql/server/optimizer/joininfo.h
243${PG_SUBPREFIX}include/postgresql/server/optimizer/pathnode.h 243${PG_SUBPREFIX}include/postgresql/server/optimizer/pathnode.h
244${PG_SUBPREFIX}include/postgresql/server/optimizer/paths.h 244${PG_SUBPREFIX}include/postgresql/server/optimizer/paths.h
245${PG_SUBPREFIX}include/postgresql/server/optimizer/plancat.h 245${PG_SUBPREFIX}include/postgresql/server/optimizer/plancat.h
246${PG_SUBPREFIX}include/postgresql/server/optimizer/planmain.h 246${PG_SUBPREFIX}include/postgresql/server/optimizer/planmain.h
247${PG_SUBPREFIX}include/postgresql/server/optimizer/planner.h 247${PG_SUBPREFIX}include/postgresql/server/optimizer/planner.h
248${PG_SUBPREFIX}include/postgresql/server/optimizer/predtest.h 248${PG_SUBPREFIX}include/postgresql/server/optimizer/predtest.h
249${PG_SUBPREFIX}include/postgresql/server/optimizer/prep.h 249${PG_SUBPREFIX}include/postgresql/server/optimizer/prep.h
250${PG_SUBPREFIX}include/postgresql/server/optimizer/restrictinfo.h 250${PG_SUBPREFIX}include/postgresql/server/optimizer/restrictinfo.h
251${PG_SUBPREFIX}include/postgresql/server/optimizer/subselect.h 251${PG_SUBPREFIX}include/postgresql/server/optimizer/subselect.h
252${PG_SUBPREFIX}include/postgresql/server/optimizer/tlist.h 252${PG_SUBPREFIX}include/postgresql/server/optimizer/tlist.h
253${PG_SUBPREFIX}include/postgresql/server/optimizer/var.h 253${PG_SUBPREFIX}include/postgresql/server/optimizer/var.h
254${PG_SUBPREFIX}include/postgresql/server/parser/analyze.h 254${PG_SUBPREFIX}include/postgresql/server/parser/analyze.h
255${PG_SUBPREFIX}include/postgresql/server/parser/gramparse.h 255${PG_SUBPREFIX}include/postgresql/server/parser/gramparse.h
256${PG_SUBPREFIX}include/postgresql/server/parser/keywords.h 256${PG_SUBPREFIX}include/postgresql/server/parser/keywords.h
257${PG_SUBPREFIX}include/postgresql/server/parser/parse.h 257${PG_SUBPREFIX}include/postgresql/server/parser/parse.h
258${PG_SUBPREFIX}include/postgresql/server/parser/parse_agg.h 258${PG_SUBPREFIX}include/postgresql/server/parser/parse_agg.h
259${PG_SUBPREFIX}include/postgresql/server/parser/parse_clause.h 259${PG_SUBPREFIX}include/postgresql/server/parser/parse_clause.h
260${PG_SUBPREFIX}include/postgresql/server/parser/parse_coerce.h 260${PG_SUBPREFIX}include/postgresql/server/parser/parse_coerce.h
261${PG_SUBPREFIX}include/postgresql/server/parser/parse_expr.h 261${PG_SUBPREFIX}include/postgresql/server/parser/parse_expr.h
262${PG_SUBPREFIX}include/postgresql/server/parser/parse_func.h 262${PG_SUBPREFIX}include/postgresql/server/parser/parse_func.h
263${PG_SUBPREFIX}include/postgresql/server/parser/parse_node.h 263${PG_SUBPREFIX}include/postgresql/server/parser/parse_node.h
264${PG_SUBPREFIX}include/postgresql/server/parser/parse_oper.h 264${PG_SUBPREFIX}include/postgresql/server/parser/parse_oper.h
265${PG_SUBPREFIX}include/postgresql/server/parser/parse_relation.h 265${PG_SUBPREFIX}include/postgresql/server/parser/parse_relation.h
266${PG_SUBPREFIX}include/postgresql/server/parser/parse_target.h 266${PG_SUBPREFIX}include/postgresql/server/parser/parse_target.h
267${PG_SUBPREFIX}include/postgresql/server/parser/parse_type.h 267${PG_SUBPREFIX}include/postgresql/server/parser/parse_type.h
268${PG_SUBPREFIX}include/postgresql/server/parser/parse_utilcmd.h 268${PG_SUBPREFIX}include/postgresql/server/parser/parse_utilcmd.h
269${PG_SUBPREFIX}include/postgresql/server/parser/parser.h 269${PG_SUBPREFIX}include/postgresql/server/parser/parser.h
270${PG_SUBPREFIX}include/postgresql/server/parser/parsetree.h 270${PG_SUBPREFIX}include/postgresql/server/parser/parsetree.h
271${PG_SUBPREFIX}include/postgresql/server/parser/scansup.h 271${PG_SUBPREFIX}include/postgresql/server/parser/scansup.h
272${PG_SUBPREFIX}include/postgresql/server/pg_config.h 272${PG_SUBPREFIX}include/postgresql/server/pg_config.h
273${PG_SUBPREFIX}include/postgresql/server/pg_config_manual.h 273${PG_SUBPREFIX}include/postgresql/server/pg_config_manual.h
274${PG_SUBPREFIX}include/postgresql/server/pg_config_os.h 274${PG_SUBPREFIX}include/postgresql/server/pg_config_os.h
275${PG_SUBPREFIX}include/postgresql/server/pg_trace.h 275${PG_SUBPREFIX}include/postgresql/server/pg_trace.h
276${PG_SUBPREFIX}include/postgresql/server/pgstat.h 276${PG_SUBPREFIX}include/postgresql/server/pgstat.h
277${PG_SUBPREFIX}include/postgresql/server/pgtime.h 277${PG_SUBPREFIX}include/postgresql/server/pgtime.h
278${PG_SUBPREFIX}include/postgresql/server/port.h 278${PG_SUBPREFIX}include/postgresql/server/port.h
279${PG_SUBPREFIX}include/postgresql/server/port/aix.h 279${PG_SUBPREFIX}include/postgresql/server/port/aix.h
280${PG_SUBPREFIX}include/postgresql/server/port/bsdi.h 280${PG_SUBPREFIX}include/postgresql/server/port/bsdi.h
281${PG_SUBPREFIX}include/postgresql/server/port/cygwin.h 281${PG_SUBPREFIX}include/postgresql/server/port/cygwin.h
282${PG_SUBPREFIX}include/postgresql/server/port/darwin.h 282${PG_SUBPREFIX}include/postgresql/server/port/darwin.h
283${PG_SUBPREFIX}include/postgresql/server/port/dgux.h 283${PG_SUBPREFIX}include/postgresql/server/port/dgux.h
284${PG_SUBPREFIX}include/postgresql/server/port/dragonfly.h 284${PG_SUBPREFIX}include/postgresql/server/port/dragonfly.h
285${PG_SUBPREFIX}include/postgresql/server/port/freebsd.h 285${PG_SUBPREFIX}include/postgresql/server/port/freebsd.h
286${PG_SUBPREFIX}include/postgresql/server/port/hpux.h 286${PG_SUBPREFIX}include/postgresql/server/port/hpux.h
287${PG_SUBPREFIX}include/postgresql/server/port/irix.h 287${PG_SUBPREFIX}include/postgresql/server/port/irix.h
288${PG_SUBPREFIX}include/postgresql/server/port/linux.h 288${PG_SUBPREFIX}include/postgresql/server/port/linux.h
289${PG_SUBPREFIX}include/postgresql/server/port/netbsd.h 289${PG_SUBPREFIX}include/postgresql/server/port/netbsd.h
290${PG_SUBPREFIX}include/postgresql/server/port/nextstep.h 290${PG_SUBPREFIX}include/postgresql/server/port/nextstep.h
291${PG_SUBPREFIX}include/postgresql/server/port/openbsd.h 291${PG_SUBPREFIX}include/postgresql/server/port/openbsd.h
292${PG_SUBPREFIX}include/postgresql/server/port/osf.h 292${PG_SUBPREFIX}include/postgresql/server/port/osf.h
293${PG_SUBPREFIX}include/postgresql/server/port/sco.h 293${PG_SUBPREFIX}include/postgresql/server/port/sco.h
294${PG_SUBPREFIX}include/postgresql/server/port/solaris.h 294${PG_SUBPREFIX}include/postgresql/server/port/solaris.h
295${PG_SUBPREFIX}include/postgresql/server/port/sunos4.h 295${PG_SUBPREFIX}include/postgresql/server/port/sunos4.h
296${PG_SUBPREFIX}include/postgresql/server/port/svr4.h 296${PG_SUBPREFIX}include/postgresql/server/port/svr4.h
297${PG_SUBPREFIX}include/postgresql/server/port/ultrix4.h 297${PG_SUBPREFIX}include/postgresql/server/port/ultrix4.h
298${PG_SUBPREFIX}include/postgresql/server/port/univel.h 298${PG_SUBPREFIX}include/postgresql/server/port/univel.h
299${PG_SUBPREFIX}include/postgresql/server/port/unixware.h 299${PG_SUBPREFIX}include/postgresql/server/port/unixware.h
300${PG_SUBPREFIX}include/postgresql/server/port/win32.h 300${PG_SUBPREFIX}include/postgresql/server/port/win32.h
301${PG_SUBPREFIX}include/postgresql/server/port/win32/arpa/inet.h 301${PG_SUBPREFIX}include/postgresql/server/port/win32/arpa/inet.h
302${PG_SUBPREFIX}include/postgresql/server/port/win32/dlfcn.h 302${PG_SUBPREFIX}include/postgresql/server/port/win32/dlfcn.h
303${PG_SUBPREFIX}include/postgresql/server/port/win32/grp.h 303${PG_SUBPREFIX}include/postgresql/server/port/win32/grp.h
304${PG_SUBPREFIX}include/postgresql/server/port/win32/netdb.h 304${PG_SUBPREFIX}include/postgresql/server/port/win32/netdb.h
305${PG_SUBPREFIX}include/postgresql/server/port/win32/netinet/in.h 305${PG_SUBPREFIX}include/postgresql/server/port/win32/netinet/in.h
306${PG_SUBPREFIX}include/postgresql/server/port/win32/pwd.h 306${PG_SUBPREFIX}include/postgresql/server/port/win32/pwd.h
307${PG_SUBPREFIX}include/postgresql/server/port/win32/sys/socket.h 307${PG_SUBPREFIX}include/postgresql/server/port/win32/sys/socket.h
308${PG_SUBPREFIX}include/postgresql/server/port/win32/sys/wait.h 308${PG_SUBPREFIX}include/postgresql/server/port/win32/sys/wait.h
309${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/dirent.h 309${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/dirent.h
310${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/sys/file.h 310${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/sys/file.h
311${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/sys/param.h 311${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/sys/param.h
312${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/sys/time.h 312${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/sys/time.h
313${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/unistd.h 313${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/unistd.h
314${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/utime.h 314${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/utime.h
315${PG_SUBPREFIX}include/postgresql/server/postgres.h 315${PG_SUBPREFIX}include/postgresql/server/postgres.h
316${PG_SUBPREFIX}include/postgresql/server/postgres_ext.h 316${PG_SUBPREFIX}include/postgresql/server/postgres_ext.h
317${PG_SUBPREFIX}include/postgresql/server/postgres_fe.h 317${PG_SUBPREFIX}include/postgresql/server/postgres_fe.h
318${PG_SUBPREFIX}include/postgresql/server/postmaster/autovacuum.h 318${PG_SUBPREFIX}include/postgresql/server/postmaster/autovacuum.h
319${PG_SUBPREFIX}include/postgresql/server/postmaster/bgwriter.h 319${PG_SUBPREFIX}include/postgresql/server/postmaster/bgwriter.h
320${PG_SUBPREFIX}include/postgresql/server/postmaster/fork_process.h 320${PG_SUBPREFIX}include/postgresql/server/postmaster/fork_process.h
321${PG_SUBPREFIX}include/postgresql/server/postmaster/pgarch.h 321${PG_SUBPREFIX}include/postgresql/server/postmaster/pgarch.h
322${PG_SUBPREFIX}include/postgresql/server/postmaster/postmaster.h 322${PG_SUBPREFIX}include/postgresql/server/postmaster/postmaster.h
323${PG_SUBPREFIX}include/postgresql/server/postmaster/syslogger.h 323${PG_SUBPREFIX}include/postgresql/server/postmaster/syslogger.h
324${PG_SUBPREFIX}include/postgresql/server/postmaster/walwriter.h 324${PG_SUBPREFIX}include/postgresql/server/postmaster/walwriter.h
325${PG_SUBPREFIX}include/postgresql/server/regex/regcustom.h 325${PG_SUBPREFIX}include/postgresql/server/regex/regcustom.h
326${PG_SUBPREFIX}include/postgresql/server/regex/regerrs.h 326${PG_SUBPREFIX}include/postgresql/server/regex/regerrs.h
327${PG_SUBPREFIX}include/postgresql/server/regex/regex.h 327${PG_SUBPREFIX}include/postgresql/server/regex/regex.h
328${PG_SUBPREFIX}include/postgresql/server/regex/regguts.h 328${PG_SUBPREFIX}include/postgresql/server/regex/regguts.h
329${PG_SUBPREFIX}include/postgresql/server/rewrite/prs2lock.h 329${PG_SUBPREFIX}include/postgresql/server/rewrite/prs2lock.h
330${PG_SUBPREFIX}include/postgresql/server/rewrite/rewriteDefine.h 330${PG_SUBPREFIX}include/postgresql/server/rewrite/rewriteDefine.h
331${PG_SUBPREFIX}include/postgresql/server/rewrite/rewriteHandler.h 331${PG_SUBPREFIX}include/postgresql/server/rewrite/rewriteHandler.h
332${PG_SUBPREFIX}include/postgresql/server/rewrite/rewriteManip.h 332${PG_SUBPREFIX}include/postgresql/server/rewrite/rewriteManip.h
333${PG_SUBPREFIX}include/postgresql/server/rewrite/rewriteRemove.h 333${PG_SUBPREFIX}include/postgresql/server/rewrite/rewriteRemove.h
334${PG_SUBPREFIX}include/postgresql/server/rewrite/rewriteSupport.h 334${PG_SUBPREFIX}include/postgresql/server/rewrite/rewriteSupport.h
335${PG_SUBPREFIX}include/postgresql/server/rusagestub.h 335${PG_SUBPREFIX}include/postgresql/server/rusagestub.h
336${PG_SUBPREFIX}include/postgresql/server/snowball/header.h 336${PG_SUBPREFIX}include/postgresql/server/snowball/header.h
337${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/api.h 337${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/api.h
338${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/header.h 338${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/header.h
339${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_danish.h 339${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_danish.h
340${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_dutch.h 340${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_dutch.h
341${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_english.h 341${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_english.h
342${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_finnish.h 342${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_finnish.h
343${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_french.h 343${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_french.h
344${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_german.h 344${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_german.h
345${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_hungarian.h 345${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_hungarian.h
346${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_italian.h 346${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_italian.h
347${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_norwegian.h 347${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_norwegian.h
348${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_porter.h 348${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_porter.h
349${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_portuguese.h 349${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_portuguese.h
350${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_spanish.h 350${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_spanish.h
351${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_swedish.h 351${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_1_swedish.h
352${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_2_romanian.h 352${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_ISO_8859_2_romanian.h
353${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_KOI8_R_russian.h 353${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_KOI8_R_russian.h
354${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_danish.h 354${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_danish.h
355${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_dutch.h 355${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_dutch.h
356${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_english.h 356${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_english.h
357${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_finnish.h 357${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_finnish.h
358${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_french.h 358${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_french.h
359${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_german.h 359${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_german.h
360${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_hungarian.h 360${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_hungarian.h
361${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_italian.h 361${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_italian.h
362${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_norwegian.h 362${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_norwegian.h
363${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_porter.h 363${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_porter.h
364${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_portuguese.h 364${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_portuguese.h
365${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_romanian.h 365${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_romanian.h
366${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_russian.h 366${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_russian.h
367${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_spanish.h 367${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_spanish.h
368${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_swedish.h 368${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_swedish.h
369${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_turkish.h 369${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer/stem_UTF_8_turkish.h
370${PG_SUBPREFIX}include/postgresql/server/storage/backendid.h 370${PG_SUBPREFIX}include/postgresql/server/storage/backendid.h
371${PG_SUBPREFIX}include/postgresql/server/storage/block.h 371${PG_SUBPREFIX}include/postgresql/server/storage/block.h
372${PG_SUBPREFIX}include/postgresql/server/storage/buf.h 372${PG_SUBPREFIX}include/postgresql/server/storage/buf.h
373${PG_SUBPREFIX}include/postgresql/server/storage/buf_internals.h 373${PG_SUBPREFIX}include/postgresql/server/storage/buf_internals.h
374${PG_SUBPREFIX}include/postgresql/server/storage/buffile.h 374${PG_SUBPREFIX}include/postgresql/server/storage/buffile.h
375${PG_SUBPREFIX}include/postgresql/server/storage/bufmgr.h 375${PG_SUBPREFIX}include/postgresql/server/storage/bufmgr.h
376${PG_SUBPREFIX}include/postgresql/server/storage/bufpage.h 376${PG_SUBPREFIX}include/postgresql/server/storage/bufpage.h
377${PG_SUBPREFIX}include/postgresql/server/storage/fd.h 377${PG_SUBPREFIX}include/postgresql/server/storage/fd.h
378${PG_SUBPREFIX}include/postgresql/server/storage/freespace.h 378${PG_SUBPREFIX}include/postgresql/server/storage/freespace.h
379${PG_SUBPREFIX}include/postgresql/server/storage/ipc.h 379${PG_SUBPREFIX}include/postgresql/server/storage/ipc.h
380${PG_SUBPREFIX}include/postgresql/server/storage/item.h 380${PG_SUBPREFIX}include/postgresql/server/storage/item.h
381${PG_SUBPREFIX}include/postgresql/server/storage/itemid.h 381${PG_SUBPREFIX}include/postgresql/server/storage/itemid.h
382${PG_SUBPREFIX}include/postgresql/server/storage/itempos.h 382${PG_SUBPREFIX}include/postgresql/server/storage/itempos.h
383${PG_SUBPREFIX}include/postgresql/server/storage/itemptr.h 383${PG_SUBPREFIX}include/postgresql/server/storage/itemptr.h
384${PG_SUBPREFIX}include/postgresql/server/storage/large_object.h 384${PG_SUBPREFIX}include/postgresql/server/storage/large_object.h
385${PG_SUBPREFIX}include/postgresql/server/storage/lmgr.h 385${PG_SUBPREFIX}include/postgresql/server/storage/lmgr.h
386${PG_SUBPREFIX}include/postgresql/server/storage/lock.h 386${PG_SUBPREFIX}include/postgresql/server/storage/lock.h
387${PG_SUBPREFIX}include/postgresql/server/storage/lwlock.h 387${PG_SUBPREFIX}include/postgresql/server/storage/lwlock.h
388${PG_SUBPREFIX}include/postgresql/server/storage/off.h 388${PG_SUBPREFIX}include/postgresql/server/storage/off.h
389${PG_SUBPREFIX}include/postgresql/server/storage/pg_sema.h 389${PG_SUBPREFIX}include/postgresql/server/storage/pg_sema.h
390${PG_SUBPREFIX}include/postgresql/server/storage/pg_shmem.h 390${PG_SUBPREFIX}include/postgresql/server/storage/pg_shmem.h
391${PG_SUBPREFIX}include/postgresql/server/storage/pmsignal.h 391${PG_SUBPREFIX}include/postgresql/server/storage/pmsignal.h
392${PG_SUBPREFIX}include/postgresql/server/storage/pos.h 392${PG_SUBPREFIX}include/postgresql/server/storage/pos.h
393${PG_SUBPREFIX}include/postgresql/server/storage/proc.h 393${PG_SUBPREFIX}include/postgresql/server/storage/proc.h
394${PG_SUBPREFIX}include/postgresql/server/storage/procarray.h 394${PG_SUBPREFIX}include/postgresql/server/storage/procarray.h
395${PG_SUBPREFIX}include/postgresql/server/storage/relfilenode.h 395${PG_SUBPREFIX}include/postgresql/server/storage/relfilenode.h
396${PG_SUBPREFIX}include/postgresql/server/storage/s_lock.h 396${PG_SUBPREFIX}include/postgresql/server/storage/s_lock.h
397${PG_SUBPREFIX}include/postgresql/server/storage/shmem.h 397${PG_SUBPREFIX}include/postgresql/server/storage/shmem.h
398${PG_SUBPREFIX}include/postgresql/server/storage/sinval.h 398${PG_SUBPREFIX}include/postgresql/server/storage/sinval.h
399${PG_SUBPREFIX}include/postgresql/server/storage/sinvaladt.h 399${PG_SUBPREFIX}include/postgresql/server/storage/sinvaladt.h
400${PG_SUBPREFIX}include/postgresql/server/storage/smgr.h 400${PG_SUBPREFIX}include/postgresql/server/storage/smgr.h
401${PG_SUBPREFIX}include/postgresql/server/storage/spin.h 401${PG_SUBPREFIX}include/postgresql/server/storage/spin.h
402${PG_SUBPREFIX}include/postgresql/server/tcop/dest.h 402${PG_SUBPREFIX}include/postgresql/server/tcop/dest.h
403${PG_SUBPREFIX}include/postgresql/server/tcop/fastpath.h 403${PG_SUBPREFIX}include/postgresql/server/tcop/fastpath.h
404${PG_SUBPREFIX}include/postgresql/server/tcop/pquery.h 404${PG_SUBPREFIX}include/postgresql/server/tcop/pquery.h
405${PG_SUBPREFIX}include/postgresql/server/tcop/tcopdebug.h 405${PG_SUBPREFIX}include/postgresql/server/tcop/tcopdebug.h
406${PG_SUBPREFIX}include/postgresql/server/tcop/tcopprot.h 406${PG_SUBPREFIX}include/postgresql/server/tcop/tcopprot.h
407${PG_SUBPREFIX}include/postgresql/server/tcop/utility.h 407${PG_SUBPREFIX}include/postgresql/server/tcop/utility.h
408${PG_SUBPREFIX}include/postgresql/server/tsearch/dicts/regis.h 408${PG_SUBPREFIX}include/postgresql/server/tsearch/dicts/regis.h
409${PG_SUBPREFIX}include/postgresql/server/tsearch/dicts/spell.h 409${PG_SUBPREFIX}include/postgresql/server/tsearch/dicts/spell.h
410${PG_SUBPREFIX}include/postgresql/server/tsearch/ts_cache.h 410${PG_SUBPREFIX}include/postgresql/server/tsearch/ts_cache.h
411${PG_SUBPREFIX}include/postgresql/server/tsearch/ts_locale.h 411${PG_SUBPREFIX}include/postgresql/server/tsearch/ts_locale.h
412${PG_SUBPREFIX}include/postgresql/server/tsearch/ts_public.h 412${PG_SUBPREFIX}include/postgresql/server/tsearch/ts_public.h
413${PG_SUBPREFIX}include/postgresql/server/tsearch/ts_type.h 413${PG_SUBPREFIX}include/postgresql/server/tsearch/ts_type.h
414${PG_SUBPREFIX}include/postgresql/server/tsearch/ts_utils.h 414${PG_SUBPREFIX}include/postgresql/server/tsearch/ts_utils.h
415${PG_SUBPREFIX}include/postgresql/server/utils/acl.h 415${PG_SUBPREFIX}include/postgresql/server/utils/acl.h
416${PG_SUBPREFIX}include/postgresql/server/utils/array.h 416${PG_SUBPREFIX}include/postgresql/server/utils/array.h
417${PG_SUBPREFIX}include/postgresql/server/utils/ascii.h 417${PG_SUBPREFIX}include/postgresql/server/utils/ascii.h
418${PG_SUBPREFIX}include/postgresql/server/utils/builtins.h 418${PG_SUBPREFIX}include/postgresql/server/utils/builtins.h
419${PG_SUBPREFIX}include/postgresql/server/utils/cash.h 419${PG_SUBPREFIX}include/postgresql/server/utils/cash.h
420${PG_SUBPREFIX}include/postgresql/server/utils/catcache.h 420${PG_SUBPREFIX}include/postgresql/server/utils/catcache.h
421${PG_SUBPREFIX}include/postgresql/server/utils/combocid.h 421${PG_SUBPREFIX}include/postgresql/server/utils/combocid.h
422${PG_SUBPREFIX}include/postgresql/server/utils/date.h 422${PG_SUBPREFIX}include/postgresql/server/utils/date.h
423${PG_SUBPREFIX}include/postgresql/server/utils/datetime.h 423${PG_SUBPREFIX}include/postgresql/server/utils/datetime.h
424${PG_SUBPREFIX}include/postgresql/server/utils/datum.h 424${PG_SUBPREFIX}include/postgresql/server/utils/datum.h
425${PG_SUBPREFIX}include/postgresql/server/utils/dynahash.h 425${PG_SUBPREFIX}include/postgresql/server/utils/dynahash.h
426${PG_SUBPREFIX}include/postgresql/server/utils/dynamic_loader.h 426${PG_SUBPREFIX}include/postgresql/server/utils/dynamic_loader.h
427${PG_SUBPREFIX}include/postgresql/server/utils/elog.h 427${PG_SUBPREFIX}include/postgresql/server/utils/elog.h
428${PG_SUBPREFIX}include/postgresql/server/utils/errcodes.h 428${PG_SUBPREFIX}include/postgresql/server/utils/errcodes.h
429${PG_SUBPREFIX}include/postgresql/server/utils/flatfiles.h 429${PG_SUBPREFIX}include/postgresql/server/utils/flatfiles.h
430${PG_SUBPREFIX}include/postgresql/server/utils/fmgroids.h 430${PG_SUBPREFIX}include/postgresql/server/utils/fmgroids.h
431${PG_SUBPREFIX}include/postgresql/server/utils/fmgrtab.h 431${PG_SUBPREFIX}include/postgresql/server/utils/fmgrtab.h
432${PG_SUBPREFIX}include/postgresql/server/utils/formatting.h 432${PG_SUBPREFIX}include/postgresql/server/utils/formatting.h
433${PG_SUBPREFIX}include/postgresql/server/utils/geo_decls.h 433${PG_SUBPREFIX}include/postgresql/server/utils/geo_decls.h
434${PG_SUBPREFIX}include/postgresql/server/utils/guc.h 434${PG_SUBPREFIX}include/postgresql/server/utils/guc.h
435${PG_SUBPREFIX}include/postgresql/server/utils/guc_tables.h 435${PG_SUBPREFIX}include/postgresql/server/utils/guc_tables.h
436${PG_SUBPREFIX}include/postgresql/server/utils/help_config.h 436${PG_SUBPREFIX}include/postgresql/server/utils/help_config.h
437${PG_SUBPREFIX}include/postgresql/server/utils/hsearch.h 437${PG_SUBPREFIX}include/postgresql/server/utils/hsearch.h
438${PG_SUBPREFIX}include/postgresql/server/utils/inet.h 438${PG_SUBPREFIX}include/postgresql/server/utils/inet.h
439${PG_SUBPREFIX}include/postgresql/server/utils/int8.h 439${PG_SUBPREFIX}include/postgresql/server/utils/int8.h
440${PG_SUBPREFIX}include/postgresql/server/utils/inval.h 440${PG_SUBPREFIX}include/postgresql/server/utils/inval.h
441${PG_SUBPREFIX}include/postgresql/server/utils/logtape.h 441${PG_SUBPREFIX}include/postgresql/server/utils/logtape.h
442${PG_SUBPREFIX}include/postgresql/server/utils/lsyscache.h 442${PG_SUBPREFIX}include/postgresql/server/utils/lsyscache.h
443${PG_SUBPREFIX}include/postgresql/server/utils/memutils.h 443${PG_SUBPREFIX}include/postgresql/server/utils/memutils.h
444${PG_SUBPREFIX}include/postgresql/server/utils/nabstime.h 444${PG_SUBPREFIX}include/postgresql/server/utils/nabstime.h
445${PG_SUBPREFIX}include/postgresql/server/utils/numeric.h 445${PG_SUBPREFIX}include/postgresql/server/utils/numeric.h
446${PG_SUBPREFIX}include/postgresql/server/utils/palloc.h 446${PG_SUBPREFIX}include/postgresql/server/utils/palloc.h
447${PG_SUBPREFIX}include/postgresql/server/utils/pg_crc.h 447${PG_SUBPREFIX}include/postgresql/server/utils/pg_crc.h
448${PG_SUBPREFIX}include/postgresql/server/utils/pg_locale.h 448${PG_SUBPREFIX}include/postgresql/server/utils/pg_locale.h
449${PG_SUBPREFIX}include/postgresql/server/utils/pg_lzcompress.h 449${PG_SUBPREFIX}include/postgresql/server/utils/pg_lzcompress.h
450${PG_SUBPREFIX}include/postgresql/server/utils/pg_rusage.h 450${PG_SUBPREFIX}include/postgresql/server/utils/pg_rusage.h
451${PG_SUBPREFIX}include/postgresql/server/utils/plancache.h 451${PG_SUBPREFIX}include/postgresql/server/utils/plancache.h
452${PG_SUBPREFIX}include/postgresql/server/utils/portal.h 452${PG_SUBPREFIX}include/postgresql/server/utils/portal.h
453${PG_SUBPREFIX}include/postgresql/server/utils/ps_status.h 453${PG_SUBPREFIX}include/postgresql/server/utils/ps_status.h
454${PG_SUBPREFIX}include/postgresql/server/utils/rel.h 454${PG_SUBPREFIX}include/postgresql/server/utils/rel.h
455${PG_SUBPREFIX}include/postgresql/server/utils/relcache.h 455${PG_SUBPREFIX}include/postgresql/server/utils/relcache.h
456${PG_SUBPREFIX}include/postgresql/server/utils/resowner.h 456${PG_SUBPREFIX}include/postgresql/server/utils/resowner.h
457${PG_SUBPREFIX}include/postgresql/server/utils/selfuncs.h 457${PG_SUBPREFIX}include/postgresql/server/utils/selfuncs.h
458${PG_SUBPREFIX}include/postgresql/server/utils/syscache.h 458${PG_SUBPREFIX}include/postgresql/server/utils/syscache.h
459${PG_SUBPREFIX}include/postgresql/server/utils/timestamp.h 459${PG_SUBPREFIX}include/postgresql/server/utils/timestamp.h
460${PG_SUBPREFIX}include/postgresql/server/utils/tqual.h 460${PG_SUBPREFIX}include/postgresql/server/utils/tqual.h
461${PG_SUBPREFIX}include/postgresql/server/utils/tuplesort.h 461${PG_SUBPREFIX}include/postgresql/server/utils/tuplesort.h
462${PG_SUBPREFIX}include/postgresql/server/utils/tuplestore.h 462${PG_SUBPREFIX}include/postgresql/server/utils/tuplestore.h
463${PG_SUBPREFIX}include/postgresql/server/utils/typcache.h 463${PG_SUBPREFIX}include/postgresql/server/utils/typcache.h
464${PG_SUBPREFIX}include/postgresql/server/utils/tzparser.h 464${PG_SUBPREFIX}include/postgresql/server/utils/tzparser.h
465${PG_SUBPREFIX}include/postgresql/server/utils/uuid.h 465${PG_SUBPREFIX}include/postgresql/server/utils/uuid.h
466${PG_SUBPREFIX}include/postgresql/server/utils/varbit.h 466${PG_SUBPREFIX}include/postgresql/server/utils/varbit.h
467${PG_SUBPREFIX}include/postgresql/server/utils/xml.h 467${PG_SUBPREFIX}include/postgresql/server/utils/xml.h
468${PG_SUBPREFIX}include/sql3types.h 468${PG_SUBPREFIX}include/sql3types.h
469${PG_SUBPREFIX}include/sqlca.h 469${PG_SUBPREFIX}include/sqlca.h
470${PG_SUBPREFIX}lib/libecpg.la 470${PG_SUBPREFIX}lib/libecpg.la
471${PG_SUBPREFIX}lib/libecpg_compat.la 471${PG_SUBPREFIX}lib/libecpg_compat.la
472${PG_SUBPREFIX}lib/libpgtypes.la 472${PG_SUBPREFIX}lib/libpgtypes.la
473${PG_SUBPREFIX}lib/libpq.la 473${PG_SUBPREFIX}lib/libpq.la
474${PG_SUBPREFIX}man/man1/clusterdb.1 474${PG_SUBPREFIX}man/man1/clusterdb.1
475${PG_SUBPREFIX}man/man1/createdb.1 475${PG_SUBPREFIX}man/man1/createdb.1
476${PG_SUBPREFIX}man/man1/createlang.1 476${PG_SUBPREFIX}man/man1/createlang.1
477${PG_SUBPREFIX}man/man1/createuser.1 477${PG_SUBPREFIX}man/man1/createuser.1
478${PG_SUBPREFIX}man/man1/dropdb.1 478${PG_SUBPREFIX}man/man1/dropdb.1
479${PG_SUBPREFIX}man/man1/droplang.1 479${PG_SUBPREFIX}man/man1/droplang.1
480${PG_SUBPREFIX}man/man1/dropuser.1 480${PG_SUBPREFIX}man/man1/dropuser.1
481${PG_SUBPREFIX}man/man1/ecpg.1 481${PG_SUBPREFIX}man/man1/ecpg.1
482${PG_SUBPREFIX}man/man1/initdb.1 482${PG_SUBPREFIX}man/man1/initdb.1
483${PG_SUBPREFIX}man/man1/ipcclean.1 483${PG_SUBPREFIX}man/man1/ipcclean.1
484${PG_SUBPREFIX}man/man1/pg_config.1 484${PG_SUBPREFIX}man/man1/pg_config.1
485${PG_SUBPREFIX}man/man1/pg_controldata.1 485${PG_SUBPREFIX}man/man1/pg_controldata.1
486${PG_SUBPREFIX}man/man1/pg_ctl.1 486${PG_SUBPREFIX}man/man1/pg_ctl.1
487${PG_SUBPREFIX}man/man1/pg_dump.1 487${PG_SUBPREFIX}man/man1/pg_dump.1
488${PG_SUBPREFIX}man/man1/pg_dumpall.1 488${PG_SUBPREFIX}man/man1/pg_dumpall.1
489${PG_SUBPREFIX}man/man1/pg_resetxlog.1 489${PG_SUBPREFIX}man/man1/pg_resetxlog.1
490${PG_SUBPREFIX}man/man1/pg_restore.1 490${PG_SUBPREFIX}man/man1/pg_restore.1
491${PG_SUBPREFIX}man/man1/postgres.1 491${PG_SUBPREFIX}man/man1/postgres.1
492${PG_SUBPREFIX}man/man1/postmaster.1 492${PG_SUBPREFIX}man/man1/postmaster.1
493${PG_SUBPREFIX}man/man1/psql.1 493${PG_SUBPREFIX}man/man1/psql.1
494${PG_SUBPREFIX}man/man1/reindexdb.1 494${PG_SUBPREFIX}man/man1/reindexdb.1
495${PG_SUBPREFIX}man/man1/vacuumdb.1 495${PG_SUBPREFIX}man/man1/vacuumdb.1
496${PG_SUBPREFIX}man/man7/abort.7 496${PG_SUBPREFIX}man/man7/abort.7
497${PG_SUBPREFIX}man/man7/alter_aggregate.7 497${PG_SUBPREFIX}man/man7/alter_aggregate.7
498${PG_SUBPREFIX}man/man7/alter_conversion.7 498${PG_SUBPREFIX}man/man7/alter_conversion.7
499${PG_SUBPREFIX}man/man7/alter_database.7 499${PG_SUBPREFIX}man/man7/alter_database.7
500${PG_SUBPREFIX}man/man7/alter_domain.7 500${PG_SUBPREFIX}man/man7/alter_domain.7
501${PG_SUBPREFIX}man/man7/alter_function.7 501${PG_SUBPREFIX}man/man7/alter_function.7
502${PG_SUBPREFIX}man/man7/alter_group.7 502${PG_SUBPREFIX}man/man7/alter_group.7
503${PG_SUBPREFIX}man/man7/alter_index.7 503${PG_SUBPREFIX}man/man7/alter_index.7
504${PG_SUBPREFIX}man/man7/alter_language.7 504${PG_SUBPREFIX}man/man7/alter_language.7
505${PG_SUBPREFIX}man/man7/alter_operator.7 505${PG_SUBPREFIX}man/man7/alter_operator.7
506${PG_SUBPREFIX}man/man7/alter_operator_class.7 506${PG_SUBPREFIX}man/man7/alter_operator_class.7
507${PG_SUBPREFIX}man/man7/alter_operator_family.7 507${PG_SUBPREFIX}man/man7/alter_operator_family.7
508${PG_SUBPREFIX}man/man7/alter_role.7 508${PG_SUBPREFIX}man/man7/alter_role.7
509${PG_SUBPREFIX}man/man7/alter_schema.7 509${PG_SUBPREFIX}man/man7/alter_schema.7
510${PG_SUBPREFIX}man/man7/alter_sequence.7 510${PG_SUBPREFIX}man/man7/alter_sequence.7
511${PG_SUBPREFIX}man/man7/alter_table.7 511${PG_SUBPREFIX}man/man7/alter_table.7
512${PG_SUBPREFIX}man/man7/alter_tablespace.7 512${PG_SUBPREFIX}man/man7/alter_tablespace.7
513${PG_SUBPREFIX}man/man7/alter_text_search_configuration.7 513${PG_SUBPREFIX}man/man7/alter_text_search_configuration.7
514${PG_SUBPREFIX}man/man7/alter_text_search_dictionary.7 514${PG_SUBPREFIX}man/man7/alter_text_search_dictionary.7
515${PG_SUBPREFIX}man/man7/alter_text_search_parser.7 515${PG_SUBPREFIX}man/man7/alter_text_search_parser.7
516${PG_SUBPREFIX}man/man7/alter_text_search_template.7 516${PG_SUBPREFIX}man/man7/alter_text_search_template.7
517${PG_SUBPREFIX}man/man7/alter_trigger.7 517${PG_SUBPREFIX}man/man7/alter_trigger.7
518${PG_SUBPREFIX}man/man7/alter_type.7 518${PG_SUBPREFIX}man/man7/alter_type.7
519${PG_SUBPREFIX}man/man7/alter_user.7 519${PG_SUBPREFIX}man/man7/alter_user.7
520${PG_SUBPREFIX}man/man7/alter_view.7 520${PG_SUBPREFIX}man/man7/alter_view.7
521${PG_SUBPREFIX}man/man7/analyze.7 521${PG_SUBPREFIX}man/man7/analyze.7
522${PG_SUBPREFIX}man/man7/begin.7 522${PG_SUBPREFIX}man/man7/begin.7
523${PG_SUBPREFIX}man/man7/checkpoint.7 523${PG_SUBPREFIX}man/man7/checkpoint.7
524${PG_SUBPREFIX}man/man7/close.7 524${PG_SUBPREFIX}man/man7/close.7
525${PG_SUBPREFIX}man/man7/cluster.7 525${PG_SUBPREFIX}man/man7/cluster.7
526${PG_SUBPREFIX}man/man7/comment.7 526${PG_SUBPREFIX}man/man7/comment.7
527${PG_SUBPREFIX}man/man7/commit.7 527${PG_SUBPREFIX}man/man7/commit.7
528${PG_SUBPREFIX}man/man7/commit_prepared.7 528${PG_SUBPREFIX}man/man7/commit_prepared.7
529${PG_SUBPREFIX}man/man7/copy.7 529${PG_SUBPREFIX}man/man7/copy.7
530${PG_SUBPREFIX}man/man7/create_aggregate.7 530${PG_SUBPREFIX}man/man7/create_aggregate.7
531${PG_SUBPREFIX}man/man7/create_cast.7 531${PG_SUBPREFIX}man/man7/create_cast.7
532${PG_SUBPREFIX}man/man7/create_constraint_trigger.7 532${PG_SUBPREFIX}man/man7/create_constraint_trigger.7
533${PG_SUBPREFIX}man/man7/create_conversion.7 533${PG_SUBPREFIX}man/man7/create_conversion.7
534${PG_SUBPREFIX}man/man7/create_database.7 534${PG_SUBPREFIX}man/man7/create_database.7
535${PG_SUBPREFIX}man/man7/create_domain.7 535${PG_SUBPREFIX}man/man7/create_domain.7
536${PG_SUBPREFIX}man/man7/create_function.7 536${PG_SUBPREFIX}man/man7/create_function.7
537${PG_SUBPREFIX}man/man7/create_group.7 537${PG_SUBPREFIX}man/man7/create_group.7
538${PG_SUBPREFIX}man/man7/create_index.7 538${PG_SUBPREFIX}man/man7/create_index.7
539${PG_SUBPREFIX}man/man7/create_language.7 539${PG_SUBPREFIX}man/man7/create_language.7
540${PG_SUBPREFIX}man/man7/create_operator.7 540${PG_SUBPREFIX}man/man7/create_operator.7
541${PG_SUBPREFIX}man/man7/create_operator_class.7 541${PG_SUBPREFIX}man/man7/create_operator_class.7
542${PG_SUBPREFIX}man/man7/create_operator_family.7 542${PG_SUBPREFIX}man/man7/create_operator_family.7
543${PG_SUBPREFIX}man/man7/create_role.7 543${PG_SUBPREFIX}man/man7/create_role.7
544${PG_SUBPREFIX}man/man7/create_rule.7 544${PG_SUBPREFIX}man/man7/create_rule.7
545${PG_SUBPREFIX}man/man7/create_schema.7 545${PG_SUBPREFIX}man/man7/create_schema.7
546${PG_SUBPREFIX}man/man7/create_sequence.7 546${PG_SUBPREFIX}man/man7/create_sequence.7
547${PG_SUBPREFIX}man/man7/create_table.7 547${PG_SUBPREFIX}man/man7/create_table.7
548${PG_SUBPREFIX}man/man7/create_table_as.7 548${PG_SUBPREFIX}man/man7/create_table_as.7
549${PG_SUBPREFIX}man/man7/create_tablespace.7 549${PG_SUBPREFIX}man/man7/create_tablespace.7
550${PG_SUBPREFIX}man/man7/create_text_search_configuration.7 550${PG_SUBPREFIX}man/man7/create_text_search_configuration.7
551${PG_SUBPREFIX}man/man7/create_text_search_dictionary.7 551${PG_SUBPREFIX}man/man7/create_text_search_dictionary.7
552${PG_SUBPREFIX}man/man7/create_text_search_parser.7 552${PG_SUBPREFIX}man/man7/create_text_search_parser.7
553${PG_SUBPREFIX}man/man7/create_text_search_template.7 553${PG_SUBPREFIX}man/man7/create_text_search_template.7
554${PG_SUBPREFIX}man/man7/create_trigger.7 554${PG_SUBPREFIX}man/man7/create_trigger.7
555${PG_SUBPREFIX}man/man7/create_type.7 555${PG_SUBPREFIX}man/man7/create_type.7
556${PG_SUBPREFIX}man/man7/create_user.7 556${PG_SUBPREFIX}man/man7/create_user.7
557${PG_SUBPREFIX}man/man7/create_view.7 557${PG_SUBPREFIX}man/man7/create_view.7
558${PG_SUBPREFIX}man/man7/deallocate.7 558${PG_SUBPREFIX}man/man7/deallocate.7
559${PG_SUBPREFIX}man/man7/declare.7 559${PG_SUBPREFIX}man/man7/declare.7
560${PG_SUBPREFIX}man/man7/delete.7 560${PG_SUBPREFIX}man/man7/delete.7
561${PG_SUBPREFIX}man/man7/discard.7 561${PG_SUBPREFIX}man/man7/discard.7
562${PG_SUBPREFIX}man/man7/drop_aggregate.7 562${PG_SUBPREFIX}man/man7/drop_aggregate.7
563${PG_SUBPREFIX}man/man7/drop_cast.7 563${PG_SUBPREFIX}man/man7/drop_cast.7
564${PG_SUBPREFIX}man/man7/drop_conversion.7 564${PG_SUBPREFIX}man/man7/drop_conversion.7
565${PG_SUBPREFIX}man/man7/drop_database.7 565${PG_SUBPREFIX}man/man7/drop_database.7
566${PG_SUBPREFIX}man/man7/drop_domain.7 566${PG_SUBPREFIX}man/man7/drop_domain.7
567${PG_SUBPREFIX}man/man7/drop_function.7 567${PG_SUBPREFIX}man/man7/drop_function.7
568${PG_SUBPREFIX}man/man7/drop_group.7 568${PG_SUBPREFIX}man/man7/drop_group.7
569${PG_SUBPREFIX}man/man7/drop_index.7 569${PG_SUBPREFIX}man/man7/drop_index.7
570${PG_SUBPREFIX}man/man7/drop_language.7 570${PG_SUBPREFIX}man/man7/drop_language.7
571${PG_SUBPREFIX}man/man7/drop_operator.7 571${PG_SUBPREFIX}man/man7/drop_operator.7
572${PG_SUBPREFIX}man/man7/drop_operator_class.7 572${PG_SUBPREFIX}man/man7/drop_operator_class.7
573${PG_SUBPREFIX}man/man7/drop_operator_family.7 573${PG_SUBPREFIX}man/man7/drop_operator_family.7
574${PG_SUBPREFIX}man/man7/drop_owned.7 574${PG_SUBPREFIX}man/man7/drop_owned.7
575${PG_SUBPREFIX}man/man7/drop_role.7 575${PG_SUBPREFIX}man/man7/drop_role.7
576${PG_SUBPREFIX}man/man7/drop_rule.7 576${PG_SUBPREFIX}man/man7/drop_rule.7
577${PG_SUBPREFIX}man/man7/drop_schema.7 577${PG_SUBPREFIX}man/man7/drop_schema.7
578${PG_SUBPREFIX}man/man7/drop_sequence.7 578${PG_SUBPREFIX}man/man7/drop_sequence.7
579${PG_SUBPREFIX}man/man7/drop_table.7 579${PG_SUBPREFIX}man/man7/drop_table.7
580${PG_SUBPREFIX}man/man7/drop_tablespace.7 580${PG_SUBPREFIX}man/man7/drop_tablespace.7
581${PG_SUBPREFIX}man/man7/drop_text_search_configuration.7 581${PG_SUBPREFIX}man/man7/drop_text_search_configuration.7
582${PG_SUBPREFIX}man/man7/drop_text_search_dictionary.7 582${PG_SUBPREFIX}man/man7/drop_text_search_dictionary.7
583${PG_SUBPREFIX}man/man7/drop_text_search_parser.7 583${PG_SUBPREFIX}man/man7/drop_text_search_parser.7
584${PG_SUBPREFIX}man/man7/drop_text_search_template.7 584${PG_SUBPREFIX}man/man7/drop_text_search_template.7
585${PG_SUBPREFIX}man/man7/drop_trigger.7 585${PG_SUBPREFIX}man/man7/drop_trigger.7
586${PG_SUBPREFIX}man/man7/drop_type.7 586${PG_SUBPREFIX}man/man7/drop_type.7
587${PG_SUBPREFIX}man/man7/drop_user.7 587${PG_SUBPREFIX}man/man7/drop_user.7
588${PG_SUBPREFIX}man/man7/drop_view.7 588${PG_SUBPREFIX}man/man7/drop_view.7
589${PG_SUBPREFIX}man/man7/end.7 589${PG_SUBPREFIX}man/man7/end.7
590${PG_SUBPREFIX}man/man7/execute.7 590${PG_SUBPREFIX}man/man7/execute.7
591${PG_SUBPREFIX}man/man7/explain.7 591${PG_SUBPREFIX}man/man7/explain.7
592${PG_SUBPREFIX}man/man7/fetch.7 592${PG_SUBPREFIX}man/man7/fetch.7
593${PG_SUBPREFIX}man/man7/grant.7 593${PG_SUBPREFIX}man/man7/grant.7
594${PG_SUBPREFIX}man/man7/insert.7 594${PG_SUBPREFIX}man/man7/insert.7
595${PG_SUBPREFIX}man/man7/listen.7 595${PG_SUBPREFIX}man/man7/listen.7
596${PG_SUBPREFIX}man/man7/load.7 596${PG_SUBPREFIX}man/man7/load.7
597${PG_SUBPREFIX}man/man7/lock.7 597${PG_SUBPREFIX}man/man7/lock.7
598${PG_SUBPREFIX}man/man7/move.7 598${PG_SUBPREFIX}man/man7/move.7
599${PG_SUBPREFIX}man/man7/notify.7 599${PG_SUBPREFIX}man/man7/notify.7
600${PG_SUBPREFIX}man/man7/prepare.7 600${PG_SUBPREFIX}man/man7/prepare.7
601${PG_SUBPREFIX}man/man7/prepare_transaction.7 601${PG_SUBPREFIX}man/man7/prepare_transaction.7
602${PG_SUBPREFIX}man/man7/reassign_owned.7 602${PG_SUBPREFIX}man/man7/reassign_owned.7
603${PG_SUBPREFIX}man/man7/reindex.7 603${PG_SUBPREFIX}man/man7/reindex.7
604${PG_SUBPREFIX}man/man7/release_savepoint.7 604${PG_SUBPREFIX}man/man7/release_savepoint.7
605${PG_SUBPREFIX}man/man7/reset.7 605${PG_SUBPREFIX}man/man7/reset.7
606${PG_SUBPREFIX}man/man7/revoke.7 606${PG_SUBPREFIX}man/man7/revoke.7
607${PG_SUBPREFIX}man/man7/rollback.7 607${PG_SUBPREFIX}man/man7/rollback.7
608${PG_SUBPREFIX}man/man7/rollback_prepared.7 608${PG_SUBPREFIX}man/man7/rollback_prepared.7
609${PG_SUBPREFIX}man/man7/rollback_to_savepoint.7 609${PG_SUBPREFIX}man/man7/rollback_to_savepoint.7
610${PG_SUBPREFIX}man/man7/savepoint.7 610${PG_SUBPREFIX}man/man7/savepoint.7
611${PG_SUBPREFIX}man/man7/select.7 611${PG_SUBPREFIX}man/man7/select.7
612${PG_SUBPREFIX}man/man7/select_into.7 612${PG_SUBPREFIX}man/man7/select_into.7
613${PG_SUBPREFIX}man/man7/set.7 613${PG_SUBPREFIX}man/man7/set.7
614${PG_SUBPREFIX}man/man7/set_constraints.7 614${PG_SUBPREFIX}man/man7/set_constraints.7
615${PG_SUBPREFIX}man/man7/set_role.7 615${PG_SUBPREFIX}man/man7/set_role.7
616${PG_SUBPREFIX}man/man7/set_session_authorization.7 616${PG_SUBPREFIX}man/man7/set_session_authorization.7
617${PG_SUBPREFIX}man/man7/set_transaction.7 617${PG_SUBPREFIX}man/man7/set_transaction.7
618${PG_SUBPREFIX}man/man7/show.7 618${PG_SUBPREFIX}man/man7/show.7
619${PG_SUBPREFIX}man/man7/start_transaction.7 619${PG_SUBPREFIX}man/man7/start_transaction.7
620${PG_SUBPREFIX}man/man7/truncate.7 620${PG_SUBPREFIX}man/man7/truncate.7
621${PG_SUBPREFIX}man/man7/unlisten.7 621${PG_SUBPREFIX}man/man7/unlisten.7
622${PG_SUBPREFIX}man/man7/update.7 622${PG_SUBPREFIX}man/man7/update.7
623${PG_SUBPREFIX}man/man7/vacuum.7 623${PG_SUBPREFIX}man/man7/vacuum.7
624${PG_SUBPREFIX}man/man7/values.7 624${PG_SUBPREFIX}man/man7/values.7
625${PG_SUBPREFIX}share/doc/postgresql/FAQ 625${PG_SUBPREFIX}share/doc/postgresql/FAQ
626${PG_SUBPREFIX}share/doc/postgresql/FAQ_AIX 626${PG_SUBPREFIX}share/doc/postgresql/FAQ_AIX
627${PG_SUBPREFIX}share/doc/postgresql/FAQ_CYGWIN 627${PG_SUBPREFIX}share/doc/postgresql/FAQ_CYGWIN
628${PG_SUBPREFIX}share/doc/postgresql/FAQ_DEV 628${PG_SUBPREFIX}share/doc/postgresql/FAQ_DEV
629${PG_SUBPREFIX}share/doc/postgresql/FAQ_HPUX 629${PG_SUBPREFIX}share/doc/postgresql/FAQ_HPUX
630${PG_SUBPREFIX}share/doc/postgresql/FAQ_IRIX 630${PG_SUBPREFIX}share/doc/postgresql/FAQ_IRIX
631${PG_SUBPREFIX}share/doc/postgresql/FAQ_MINGW 631${PG_SUBPREFIX}share/doc/postgresql/FAQ_MINGW
632${PG_SUBPREFIX}share/doc/postgresql/FAQ_SCO 632${PG_SUBPREFIX}share/doc/postgresql/FAQ_SCO
633${PG_SUBPREFIX}share/doc/postgresql/FAQ_Solaris 633${PG_SUBPREFIX}share/doc/postgresql/FAQ_Solaris
634${PG_SUBPREFIX}share/doc/postgresql/FAQ_brazilian 634${PG_SUBPREFIX}share/doc/postgresql/FAQ_brazilian
635${PG_SUBPREFIX}share/doc/postgresql/FAQ_chinese_simp 635${PG_SUBPREFIX}share/doc/postgresql/FAQ_chinese_simp
636${PG_SUBPREFIX}share/doc/postgresql/FAQ_chinese_trad 636${PG_SUBPREFIX}share/doc/postgresql/FAQ_chinese_trad
637${PG_SUBPREFIX}share/doc/postgresql/FAQ_czech 637${PG_SUBPREFIX}share/doc/postgresql/FAQ_czech
638${PG_SUBPREFIX}share/doc/postgresql/FAQ_farsi 638${PG_SUBPREFIX}share/doc/postgresql/FAQ_farsi
639${PG_SUBPREFIX}share/doc/postgresql/FAQ_french 639${PG_SUBPREFIX}share/doc/postgresql/FAQ_french
640${PG_SUBPREFIX}share/doc/postgresql/FAQ_german 640${PG_SUBPREFIX}share/doc/postgresql/FAQ_german
641${PG_SUBPREFIX}share/doc/postgresql/FAQ_hungarian 641${PG_SUBPREFIX}share/doc/postgresql/FAQ_hungarian
642${PG_SUBPREFIX}share/doc/postgresql/FAQ_japanese 642${PG_SUBPREFIX}share/doc/postgresql/FAQ_japanese
643${PG_SUBPREFIX}share/doc/postgresql/FAQ_polish 643${PG_SUBPREFIX}share/doc/postgresql/FAQ_polish
644${PG_SUBPREFIX}share/doc/postgresql/FAQ_russian 644${PG_SUBPREFIX}share/doc/postgresql/FAQ_russian
645${PG_SUBPREFIX}share/doc/postgresql/FAQ_turkish 645${PG_SUBPREFIX}share/doc/postgresql/FAQ_turkish
646${PG_SUBPREFIX}share/doc/postgresql/KNOWN_BUGS 646${PG_SUBPREFIX}share/doc/postgresql/KNOWN_BUGS
647${PG_SUBPREFIX}share/doc/postgresql/MISSING_FEATURES 647${PG_SUBPREFIX}share/doc/postgresql/MISSING_FEATURES
648${PG_SUBPREFIX}share/doc/postgresql/README.mb.big5 648${PG_SUBPREFIX}share/doc/postgresql/README.mb.big5
649${PG_SUBPREFIX}share/doc/postgresql/README.mb.jp 649${PG_SUBPREFIX}share/doc/postgresql/README.mb.jp
650${PG_SUBPREFIX}share/doc/postgresql/TODO 650${PG_SUBPREFIX}share/doc/postgresql/TODO
651${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/README 651${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/README
652${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/locale 652${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/locale
653${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/merge 653${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/merge
654${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/pitr 654${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/pitr
655${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/psql 655${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/psql
656${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/thread 656${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/thread
657${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/timezone 657${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/timezone
658${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/wal 658${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/wal
659${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/walcontrol 659${PG_SUBPREFIX}share/doc/postgresql/TODO.detail/walcontrol
660${PG_SUBPREFIX}share/doc/postgresql/bug.template 660${PG_SUBPREFIX}share/doc/postgresql/bug.template
661${PG_SUBPREFIX}share/doc/postgresql/html/LEGALNOTICE.html 661${PG_SUBPREFIX}share/doc/postgresql/html/LEGALNOTICE.html
662${PG_SUBPREFIX}share/doc/postgresql/html/acronyms.html 662${PG_SUBPREFIX}share/doc/postgresql/html/acronyms.html
663${PG_SUBPREFIX}share/doc/postgresql/html/admin.html 663${PG_SUBPREFIX}share/doc/postgresql/html/admin.html
664${PG_SUBPREFIX}share/doc/postgresql/html/adminpack.html 664${PG_SUBPREFIX}share/doc/postgresql/html/adminpack.html
665${PG_SUBPREFIX}share/doc/postgresql/html/anoncvs.html 665${PG_SUBPREFIX}share/doc/postgresql/html/anoncvs.html
666${PG_SUBPREFIX}share/doc/postgresql/html/app-clusterdb.html 666${PG_SUBPREFIX}share/doc/postgresql/html/app-clusterdb.html
667${PG_SUBPREFIX}share/doc/postgresql/html/app-createdb.html 667${PG_SUBPREFIX}share/doc/postgresql/html/app-createdb.html
668${PG_SUBPREFIX}share/doc/postgresql/html/app-createlang.html 668${PG_SUBPREFIX}share/doc/postgresql/html/app-createlang.html
669${PG_SUBPREFIX}share/doc/postgresql/html/app-createuser.html 669${PG_SUBPREFIX}share/doc/postgresql/html/app-createuser.html
670${PG_SUBPREFIX}share/doc/postgresql/html/app-dropdb.html 670${PG_SUBPREFIX}share/doc/postgresql/html/app-dropdb.html
671${PG_SUBPREFIX}share/doc/postgresql/html/app-droplang.html 671${PG_SUBPREFIX}share/doc/postgresql/html/app-droplang.html
672${PG_SUBPREFIX}share/doc/postgresql/html/app-dropuser.html 672${PG_SUBPREFIX}share/doc/postgresql/html/app-dropuser.html
673${PG_SUBPREFIX}share/doc/postgresql/html/app-ecpg.html 673${PG_SUBPREFIX}share/doc/postgresql/html/app-ecpg.html
674${PG_SUBPREFIX}share/doc/postgresql/html/app-initdb.html 674${PG_SUBPREFIX}share/doc/postgresql/html/app-initdb.html
675${PG_SUBPREFIX}share/doc/postgresql/html/app-ipcclean.html 675${PG_SUBPREFIX}share/doc/postgresql/html/app-ipcclean.html
676${PG_SUBPREFIX}share/doc/postgresql/html/app-pg-ctl.html 676${PG_SUBPREFIX}share/doc/postgresql/html/app-pg-ctl.html
677${PG_SUBPREFIX}share/doc/postgresql/html/app-pg-dumpall.html 677${PG_SUBPREFIX}share/doc/postgresql/html/app-pg-dumpall.html
678${PG_SUBPREFIX}share/doc/postgresql/html/app-pgconfig.html 678${PG_SUBPREFIX}share/doc/postgresql/html/app-pgconfig.html
679${PG_SUBPREFIX}share/doc/postgresql/html/app-pgcontroldata.html 679${PG_SUBPREFIX}share/doc/postgresql/html/app-pgcontroldata.html
680${PG_SUBPREFIX}share/doc/postgresql/html/app-pgdump.html 680${PG_SUBPREFIX}share/doc/postgresql/html/app-pgdump.html
681${PG_SUBPREFIX}share/doc/postgresql/html/app-pgresetxlog.html 681${PG_SUBPREFIX}share/doc/postgresql/html/app-pgresetxlog.html
682${PG_SUBPREFIX}share/doc/postgresql/html/app-pgrestore.html 682${PG_SUBPREFIX}share/doc/postgresql/html/app-pgrestore.html
683${PG_SUBPREFIX}share/doc/postgresql/html/app-postgres.html 683${PG_SUBPREFIX}share/doc/postgresql/html/app-postgres.html
684${PG_SUBPREFIX}share/doc/postgresql/html/app-postmaster.html 684${PG_SUBPREFIX}share/doc/postgresql/html/app-postmaster.html
685${PG_SUBPREFIX}share/doc/postgresql/html/app-psql.html 685${PG_SUBPREFIX}share/doc/postgresql/html/app-psql.html
686${PG_SUBPREFIX}share/doc/postgresql/html/app-reindexdb.html 686${PG_SUBPREFIX}share/doc/postgresql/html/app-reindexdb.html
687${PG_SUBPREFIX}share/doc/postgresql/html/app-vacuumdb.html 687${PG_SUBPREFIX}share/doc/postgresql/html/app-vacuumdb.html
688${PG_SUBPREFIX}share/doc/postgresql/html/appendixes.html 688${PG_SUBPREFIX}share/doc/postgresql/html/appendixes.html
689${PG_SUBPREFIX}share/doc/postgresql/html/applevel-consistency.html 689${PG_SUBPREFIX}share/doc/postgresql/html/applevel-consistency.html
690${PG_SUBPREFIX}share/doc/postgresql/html/arrays.html 690${PG_SUBPREFIX}share/doc/postgresql/html/arrays.html
691${PG_SUBPREFIX}share/doc/postgresql/html/auth-methods.html 691${PG_SUBPREFIX}share/doc/postgresql/html/auth-methods.html
692${PG_SUBPREFIX}share/doc/postgresql/html/auth-pg-hba-conf.html 692${PG_SUBPREFIX}share/doc/postgresql/html/auth-pg-hba-conf.html
693${PG_SUBPREFIX}share/doc/postgresql/html/backup-dump.html 693${PG_SUBPREFIX}share/doc/postgresql/html/backup-dump.html
694${PG_SUBPREFIX}share/doc/postgresql/html/backup-file.html 694${PG_SUBPREFIX}share/doc/postgresql/html/backup-file.html
695${PG_SUBPREFIX}share/doc/postgresql/html/backup.html 695${PG_SUBPREFIX}share/doc/postgresql/html/backup.html
696${PG_SUBPREFIX}share/doc/postgresql/html/biblio.html 696${PG_SUBPREFIX}share/doc/postgresql/html/biblio.html
697${PG_SUBPREFIX}share/doc/postgresql/html/bki-commands.html 697${PG_SUBPREFIX}share/doc/postgresql/html/bki-commands.html
698${PG_SUBPREFIX}share/doc/postgresql/html/bki-example.html 698${PG_SUBPREFIX}share/doc/postgresql/html/bki-example.html
699${PG_SUBPREFIX}share/doc/postgresql/html/bki-format.html 699${PG_SUBPREFIX}share/doc/postgresql/html/bki-format.html
700${PG_SUBPREFIX}share/doc/postgresql/html/bki-structure.html 700${PG_SUBPREFIX}share/doc/postgresql/html/bki-structure.html
701${PG_SUBPREFIX}share/doc/postgresql/html/bki.html 701${PG_SUBPREFIX}share/doc/postgresql/html/bki.html
702${PG_SUBPREFIX}share/doc/postgresql/html/bookindex.html 702${PG_SUBPREFIX}share/doc/postgresql/html/bookindex.html
703${PG_SUBPREFIX}share/doc/postgresql/html/btree-gist.html 703${PG_SUBPREFIX}share/doc/postgresql/html/btree-gist.html
704${PG_SUBPREFIX}share/doc/postgresql/html/bug-reporting.html 704${PG_SUBPREFIX}share/doc/postgresql/html/bug-reporting.html
705${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-aggregate.html 705${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-aggregate.html
706${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-am.html 706${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-am.html
707${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-amop.html 707${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-amop.html
708${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-amproc.html 708${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-amproc.html
709${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-attrdef.html 709${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-attrdef.html
710${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-attribute.html 710${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-attribute.html
711${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-auth-members.html 711${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-auth-members.html
712${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-authid.html 712${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-authid.html
713${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-autovacuum.html 713${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-autovacuum.html
714${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-cast.html 714${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-cast.html
715${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-class.html 715${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-class.html
716${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-constraint.html 716${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-constraint.html
717${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-conversion.html 717${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-conversion.html
718${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-database.html 718${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-database.html
719${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-depend.html 719${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-depend.html
720${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-description.html 720${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-description.html
721${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-enum.html 721${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-enum.html
722${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-index.html 722${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-index.html
723${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-inherits.html 723${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-inherits.html
724${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-language.html 724${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-language.html
725${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-largeobject.html 725${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-largeobject.html
726${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-listener.html 726${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-listener.html
727${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-namespace.html 727${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-namespace.html
728${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-opclass.html 728${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-opclass.html
729${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-operator.html 729${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-operator.html
730${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-opfamily.html 730${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-opfamily.html
731${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-pltemplate.html 731${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-pltemplate.html
732${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-proc.html 732${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-proc.html
733${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-rewrite.html 733${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-rewrite.html
734${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-shdepend.html 734${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-shdepend.html
735${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-shdescription.html 735${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-shdescription.html
736${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-statistic.html 736${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-statistic.html
737${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-tablespace.html 737${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-tablespace.html
738${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-trigger.html 738${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-trigger.html
739${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-ts-config-map.html 739${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-ts-config-map.html
740${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-ts-config.html 740${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-ts-config.html
741${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-ts-dict.html 741${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-ts-dict.html
742${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-ts-parser.html 742${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-ts-parser.html
743${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-ts-template.html 743${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-ts-template.html
744${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-type.html 744${PG_SUBPREFIX}share/doc/postgresql/html/catalog-pg-type.html
745${PG_SUBPREFIX}share/doc/postgresql/html/catalogs-overview.html 745${PG_SUBPREFIX}share/doc/postgresql/html/catalogs-overview.html
746${PG_SUBPREFIX}share/doc/postgresql/html/catalogs.html 746${PG_SUBPREFIX}share/doc/postgresql/html/catalogs.html
747${PG_SUBPREFIX}share/doc/postgresql/html/charset.html 747${PG_SUBPREFIX}share/doc/postgresql/html/charset.html
748${PG_SUBPREFIX}share/doc/postgresql/html/chkpass.html 748${PG_SUBPREFIX}share/doc/postgresql/html/chkpass.html
749${PG_SUBPREFIX}share/doc/postgresql/html/client-authentication-problems.html 749${PG_SUBPREFIX}share/doc/postgresql/html/client-authentication-problems.html
750${PG_SUBPREFIX}share/doc/postgresql/html/client-authentication.html 750${PG_SUBPREFIX}share/doc/postgresql/html/client-authentication.html
751${PG_SUBPREFIX}share/doc/postgresql/html/client-interfaces.html 751${PG_SUBPREFIX}share/doc/postgresql/html/client-interfaces.html
752${PG_SUBPREFIX}share/doc/postgresql/html/config-setting.html 752${PG_SUBPREFIX}share/doc/postgresql/html/config-setting.html
753${PG_SUBPREFIX}share/doc/postgresql/html/connect-estab.html 753${PG_SUBPREFIX}share/doc/postgresql/html/connect-estab.html
754${PG_SUBPREFIX}share/doc/postgresql/html/continuous-archiving.html 754${PG_SUBPREFIX}share/doc/postgresql/html/continuous-archiving.html
755${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-build-sql-delete.html 755${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-build-sql-delete.html
756${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-build-sql-insert.html 756${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-build-sql-insert.html
757${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-build-sql-update.html 757${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-build-sql-update.html
758${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-cancel-query.html 758${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-cancel-query.html
759${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-close.html 759${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-close.html
760${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-connect-u.html 760${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-connect-u.html
761${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-connect.html 761${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-connect.html
762${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-current-query.html 762${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-current-query.html
763${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-disconnect.html 763${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-disconnect.html
764${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-error-message.html 764${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-error-message.html
765${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-exec.html 765${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-exec.html
766${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-fetch.html 766${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-fetch.html
767${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-get-connections.html 767${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-get-connections.html
768${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-get-pkey.html 768${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-get-pkey.html
769${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-get-result.html 769${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-get-result.html
770${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-is-busy.html 770${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-is-busy.html
771${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-open.html 771${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-open.html
772${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-send-query.html 772${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink-send-query.html
773${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink.html 773${PG_SUBPREFIX}share/doc/postgresql/html/contrib-dblink.html
774${PG_SUBPREFIX}share/doc/postgresql/html/contrib-spi.html 774${PG_SUBPREFIX}share/doc/postgresql/html/contrib-spi.html
775${PG_SUBPREFIX}share/doc/postgresql/html/contrib.html 775${PG_SUBPREFIX}share/doc/postgresql/html/contrib.html
776${PG_SUBPREFIX}share/doc/postgresql/html/creating-cluster.html 776${PG_SUBPREFIX}share/doc/postgresql/html/creating-cluster.html
777${PG_SUBPREFIX}share/doc/postgresql/html/cube.html 777${PG_SUBPREFIX}share/doc/postgresql/html/cube.html
778${PG_SUBPREFIX}share/doc/postgresql/html/cvs-tree.html 778${PG_SUBPREFIX}share/doc/postgresql/html/cvs-tree.html
779${PG_SUBPREFIX}share/doc/postgresql/html/cvs.html 779${PG_SUBPREFIX}share/doc/postgresql/html/cvs.html
780${PG_SUBPREFIX}share/doc/postgresql/html/cvsup.html 780${PG_SUBPREFIX}share/doc/postgresql/html/cvsup.html
781${PG_SUBPREFIX}share/doc/postgresql/html/database-roles.html 781${PG_SUBPREFIX}share/doc/postgresql/html/database-roles.html
782${PG_SUBPREFIX}share/doc/postgresql/html/datatype-binary.html 782${PG_SUBPREFIX}share/doc/postgresql/html/datatype-binary.html
783${PG_SUBPREFIX}share/doc/postgresql/html/datatype-bit.html 783${PG_SUBPREFIX}share/doc/postgresql/html/datatype-bit.html
784${PG_SUBPREFIX}share/doc/postgresql/html/datatype-boolean.html 784${PG_SUBPREFIX}share/doc/postgresql/html/datatype-boolean.html
785${PG_SUBPREFIX}share/doc/postgresql/html/datatype-character.html 785${PG_SUBPREFIX}share/doc/postgresql/html/datatype-character.html
786${PG_SUBPREFIX}share/doc/postgresql/html/datatype-datetime.html 786${PG_SUBPREFIX}share/doc/postgresql/html/datatype-datetime.html
787${PG_SUBPREFIX}share/doc/postgresql/html/datatype-enum.html 787${PG_SUBPREFIX}share/doc/postgresql/html/datatype-enum.html
788${PG_SUBPREFIX}share/doc/postgresql/html/datatype-geometric.html 788${PG_SUBPREFIX}share/doc/postgresql/html/datatype-geometric.html
789${PG_SUBPREFIX}share/doc/postgresql/html/datatype-money.html 789${PG_SUBPREFIX}share/doc/postgresql/html/datatype-money.html
790${PG_SUBPREFIX}share/doc/postgresql/html/datatype-net-types.html 790${PG_SUBPREFIX}share/doc/postgresql/html/datatype-net-types.html
791${PG_SUBPREFIX}share/doc/postgresql/html/datatype-numeric.html 791${PG_SUBPREFIX}share/doc/postgresql/html/datatype-numeric.html
792${PG_SUBPREFIX}share/doc/postgresql/html/datatype-oid.html 792${PG_SUBPREFIX}share/doc/postgresql/html/datatype-oid.html
793${PG_SUBPREFIX}share/doc/postgresql/html/datatype-pseudo.html 793${PG_SUBPREFIX}share/doc/postgresql/html/datatype-pseudo.html
794${PG_SUBPREFIX}share/doc/postgresql/html/datatype-textsearch.html 794${PG_SUBPREFIX}share/doc/postgresql/html/datatype-textsearch.html
795${PG_SUBPREFIX}share/doc/postgresql/html/datatype-uuid.html 795${PG_SUBPREFIX}share/doc/postgresql/html/datatype-uuid.html
796${PG_SUBPREFIX}share/doc/postgresql/html/datatype-xml.html 796${PG_SUBPREFIX}share/doc/postgresql/html/datatype-xml.html
797${PG_SUBPREFIX}share/doc/postgresql/html/datatype.html 797${PG_SUBPREFIX}share/doc/postgresql/html/datatype.html
798${PG_SUBPREFIX}share/doc/postgresql/html/datetime-appendix.html 798${PG_SUBPREFIX}share/doc/postgresql/html/datetime-appendix.html
799${PG_SUBPREFIX}share/doc/postgresql/html/datetime-config-files.html 799${PG_SUBPREFIX}share/doc/postgresql/html/datetime-config-files.html
800${PG_SUBPREFIX}share/doc/postgresql/html/datetime-input-rules.html 800${PG_SUBPREFIX}share/doc/postgresql/html/datetime-input-rules.html
801${PG_SUBPREFIX}share/doc/postgresql/html/datetime-keywords.html 801${PG_SUBPREFIX}share/doc/postgresql/html/datetime-keywords.html
802${PG_SUBPREFIX}share/doc/postgresql/html/datetime-units-history.html 802${PG_SUBPREFIX}share/doc/postgresql/html/datetime-units-history.html
803${PG_SUBPREFIX}share/doc/postgresql/html/dblink.html 803${PG_SUBPREFIX}share/doc/postgresql/html/dblink.html
804${PG_SUBPREFIX}share/doc/postgresql/html/ddl-alter.html 804${PG_SUBPREFIX}share/doc/postgresql/html/ddl-alter.html
805${PG_SUBPREFIX}share/doc/postgresql/html/ddl-basics.html 805${PG_SUBPREFIX}share/doc/postgresql/html/ddl-basics.html
806${PG_SUBPREFIX}share/doc/postgresql/html/ddl-constraints.html 806${PG_SUBPREFIX}share/doc/postgresql/html/ddl-constraints.html
807${PG_SUBPREFIX}share/doc/postgresql/html/ddl-default.html 807${PG_SUBPREFIX}share/doc/postgresql/html/ddl-default.html
808${PG_SUBPREFIX}share/doc/postgresql/html/ddl-depend.html 808${PG_SUBPREFIX}share/doc/postgresql/html/ddl-depend.html
809${PG_SUBPREFIX}share/doc/postgresql/html/ddl-inherit.html 809${PG_SUBPREFIX}share/doc/postgresql/html/ddl-inherit.html
810${PG_SUBPREFIX}share/doc/postgresql/html/ddl-others.html 810${PG_SUBPREFIX}share/doc/postgresql/html/ddl-others.html
811${PG_SUBPREFIX}share/doc/postgresql/html/ddl-partitioning.html 811${PG_SUBPREFIX}share/doc/postgresql/html/ddl-partitioning.html
812${PG_SUBPREFIX}share/doc/postgresql/html/ddl-priv.html 812${PG_SUBPREFIX}share/doc/postgresql/html/ddl-priv.html
813${PG_SUBPREFIX}share/doc/postgresql/html/ddl-schemas.html 813${PG_SUBPREFIX}share/doc/postgresql/html/ddl-schemas.html
814${PG_SUBPREFIX}share/doc/postgresql/html/ddl-system-columns.html 814${PG_SUBPREFIX}share/doc/postgresql/html/ddl-system-columns.html
815${PG_SUBPREFIX}share/doc/postgresql/html/ddl.html 815${PG_SUBPREFIX}share/doc/postgresql/html/ddl.html
816${PG_SUBPREFIX}share/doc/postgresql/html/dict-int.html 816${PG_SUBPREFIX}share/doc/postgresql/html/dict-int.html
817${PG_SUBPREFIX}share/doc/postgresql/html/dict-xsyn.html 817${PG_SUBPREFIX}share/doc/postgresql/html/dict-xsyn.html
818${PG_SUBPREFIX}share/doc/postgresql/html/disk-full.html 818${PG_SUBPREFIX}share/doc/postgresql/html/disk-full.html
819${PG_SUBPREFIX}share/doc/postgresql/html/disk-usage.html 819${PG_SUBPREFIX}share/doc/postgresql/html/disk-usage.html
820${PG_SUBPREFIX}share/doc/postgresql/html/diskusage.html 820${PG_SUBPREFIX}share/doc/postgresql/html/diskusage.html
821${PG_SUBPREFIX}share/doc/postgresql/html/dml-delete.html 821${PG_SUBPREFIX}share/doc/postgresql/html/dml-delete.html
822${PG_SUBPREFIX}share/doc/postgresql/html/dml-insert.html 822${PG_SUBPREFIX}share/doc/postgresql/html/dml-insert.html
823${PG_SUBPREFIX}share/doc/postgresql/html/dml-update.html 823${PG_SUBPREFIX}share/doc/postgresql/html/dml-update.html
824${PG_SUBPREFIX}share/doc/postgresql/html/dml.html 824${PG_SUBPREFIX}share/doc/postgresql/html/dml.html
825${PG_SUBPREFIX}share/doc/postgresql/html/docguide-authoring.html 825${PG_SUBPREFIX}share/doc/postgresql/html/docguide-authoring.html
826${PG_SUBPREFIX}share/doc/postgresql/html/docguide-build.html 826${PG_SUBPREFIX}share/doc/postgresql/html/docguide-build.html
827${PG_SUBPREFIX}share/doc/postgresql/html/docguide-docbook.html 827${PG_SUBPREFIX}share/doc/postgresql/html/docguide-docbook.html
828${PG_SUBPREFIX}share/doc/postgresql/html/docguide-style.html 828${PG_SUBPREFIX}share/doc/postgresql/html/docguide-style.html
829${PG_SUBPREFIX}share/doc/postgresql/html/docguide-toolsets.html 829${PG_SUBPREFIX}share/doc/postgresql/html/docguide-toolsets.html
830${PG_SUBPREFIX}share/doc/postgresql/html/docguide.html 830${PG_SUBPREFIX}share/doc/postgresql/html/docguide.html
831${PG_SUBPREFIX}share/doc/postgresql/html/dynamic-trace.html 831${PG_SUBPREFIX}share/doc/postgresql/html/dynamic-trace.html
832${PG_SUBPREFIX}share/doc/postgresql/html/earthdistance.html 832${PG_SUBPREFIX}share/doc/postgresql/html/earthdistance.html
833${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-commands.html 833${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-commands.html
834${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-concept.html 834${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-concept.html
835${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-connect.html 835${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-connect.html
836${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-descriptors.html 836${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-descriptors.html
837${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-develop.html 837${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-develop.html
838${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-disconnect.html 838${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-disconnect.html
839${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-dynamic.html 839${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-dynamic.html
840${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-errors.html 840${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-errors.html
841${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-informix-compat.html 841${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-informix-compat.html
842${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-library.html 842${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-library.html
843${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-pgtypes.html 843${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-pgtypes.html
844${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-preproc.html 844${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-preproc.html
845${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-process.html 845${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-process.html
846${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-set-connection.html 846${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-set-connection.html
847${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-variables.html 847${PG_SUBPREFIX}share/doc/postgresql/html/ecpg-variables.html
848${PG_SUBPREFIX}share/doc/postgresql/html/ecpg.html 848${PG_SUBPREFIX}share/doc/postgresql/html/ecpg.html
849${PG_SUBPREFIX}share/doc/postgresql/html/encryption-options.html 849${PG_SUBPREFIX}share/doc/postgresql/html/encryption-options.html
850${PG_SUBPREFIX}share/doc/postgresql/html/errcodes-appendix.html 850${PG_SUBPREFIX}share/doc/postgresql/html/errcodes-appendix.html
851${PG_SUBPREFIX}share/doc/postgresql/html/error-message-reporting.html 851${PG_SUBPREFIX}share/doc/postgresql/html/error-message-reporting.html
852${PG_SUBPREFIX}share/doc/postgresql/html/error-style-guide.html 852${PG_SUBPREFIX}share/doc/postgresql/html/error-style-guide.html
853${PG_SUBPREFIX}share/doc/postgresql/html/executor.html 853${PG_SUBPREFIX}share/doc/postgresql/html/executor.html
854${PG_SUBPREFIX}share/doc/postgresql/html/explicit-joins.html 854${PG_SUBPREFIX}share/doc/postgresql/html/explicit-joins.html
855${PG_SUBPREFIX}share/doc/postgresql/html/explicit-locking.html 855${PG_SUBPREFIX}share/doc/postgresql/html/explicit-locking.html
856${PG_SUBPREFIX}share/doc/postgresql/html/extend-how.html 856${PG_SUBPREFIX}share/doc/postgresql/html/extend-how.html
857${PG_SUBPREFIX}share/doc/postgresql/html/extend-type-system.html 857${PG_SUBPREFIX}share/doc/postgresql/html/extend-type-system.html
858${PG_SUBPREFIX}share/doc/postgresql/html/extend.html 858${PG_SUBPREFIX}share/doc/postgresql/html/extend.html
859${PG_SUBPREFIX}share/doc/postgresql/html/external-extensions.html 859${PG_SUBPREFIX}share/doc/postgresql/html/external-extensions.html
860${PG_SUBPREFIX}share/doc/postgresql/html/external-interfaces.html 860${PG_SUBPREFIX}share/doc/postgresql/html/external-interfaces.html
861${PG_SUBPREFIX}share/doc/postgresql/html/external-pl.html 861${PG_SUBPREFIX}share/doc/postgresql/html/external-pl.html
862${PG_SUBPREFIX}share/doc/postgresql/html/external-projects.html 862${PG_SUBPREFIX}share/doc/postgresql/html/external-projects.html
863${PG_SUBPREFIX}share/doc/postgresql/html/features-sql-standard.html 863${PG_SUBPREFIX}share/doc/postgresql/html/features-sql-standard.html
864${PG_SUBPREFIX}share/doc/postgresql/html/features.html 864${PG_SUBPREFIX}share/doc/postgresql/html/features.html
865${PG_SUBPREFIX}share/doc/postgresql/html/functions-admin.html 865${PG_SUBPREFIX}share/doc/postgresql/html/functions-admin.html
866${PG_SUBPREFIX}share/doc/postgresql/html/functions-aggregate.html 866${PG_SUBPREFIX}share/doc/postgresql/html/functions-aggregate.html
867${PG_SUBPREFIX}share/doc/postgresql/html/functions-array.html 867${PG_SUBPREFIX}share/doc/postgresql/html/functions-array.html
868${PG_SUBPREFIX}share/doc/postgresql/html/functions-binarystring.html 868${PG_SUBPREFIX}share/doc/postgresql/html/functions-binarystring.html
869${PG_SUBPREFIX}share/doc/postgresql/html/functions-bitstring.html 869${PG_SUBPREFIX}share/doc/postgresql/html/functions-bitstring.html
870${PG_SUBPREFIX}share/doc/postgresql/html/functions-comparison.html 870${PG_SUBPREFIX}share/doc/postgresql/html/functions-comparison.html
871${PG_SUBPREFIX}share/doc/postgresql/html/functions-comparisons.html 871${PG_SUBPREFIX}share/doc/postgresql/html/functions-comparisons.html
872${PG_SUBPREFIX}share/doc/postgresql/html/functions-conditional.html 872${PG_SUBPREFIX}share/doc/postgresql/html/functions-conditional.html
873${PG_SUBPREFIX}share/doc/postgresql/html/functions-datetime.html 873${PG_SUBPREFIX}share/doc/postgresql/html/functions-datetime.html
874${PG_SUBPREFIX}share/doc/postgresql/html/functions-enum.html 874${PG_SUBPREFIX}share/doc/postgresql/html/functions-enum.html
875${PG_SUBPREFIX}share/doc/postgresql/html/functions-formatting.html 875${PG_SUBPREFIX}share/doc/postgresql/html/functions-formatting.html
876${PG_SUBPREFIX}share/doc/postgresql/html/functions-geometry.html 876${PG_SUBPREFIX}share/doc/postgresql/html/functions-geometry.html
877${PG_SUBPREFIX}share/doc/postgresql/html/functions-info.html 877${PG_SUBPREFIX}share/doc/postgresql/html/functions-info.html
878${PG_SUBPREFIX}share/doc/postgresql/html/functions-logical.html 878${PG_SUBPREFIX}share/doc/postgresql/html/functions-logical.html
879${PG_SUBPREFIX}share/doc/postgresql/html/functions-matching.html 879${PG_SUBPREFIX}share/doc/postgresql/html/functions-matching.html
880${PG_SUBPREFIX}share/doc/postgresql/html/functions-math.html 880${PG_SUBPREFIX}share/doc/postgresql/html/functions-math.html
881${PG_SUBPREFIX}share/doc/postgresql/html/functions-net.html 881${PG_SUBPREFIX}share/doc/postgresql/html/functions-net.html
882${PG_SUBPREFIX}share/doc/postgresql/html/functions-sequence.html 882${PG_SUBPREFIX}share/doc/postgresql/html/functions-sequence.html
883${PG_SUBPREFIX}share/doc/postgresql/html/functions-srf.html 883${PG_SUBPREFIX}share/doc/postgresql/html/functions-srf.html
884${PG_SUBPREFIX}share/doc/postgresql/html/functions-string.html 884${PG_SUBPREFIX}share/doc/postgresql/html/functions-string.html
885${PG_SUBPREFIX}share/doc/postgresql/html/functions-subquery.html 885${PG_SUBPREFIX}share/doc/postgresql/html/functions-subquery.html
886${PG_SUBPREFIX}share/doc/postgresql/html/functions-textsearch.html 886${PG_SUBPREFIX}share/doc/postgresql/html/functions-textsearch.html
887${PG_SUBPREFIX}share/doc/postgresql/html/functions-xml.html 887${PG_SUBPREFIX}share/doc/postgresql/html/functions-xml.html
888${PG_SUBPREFIX}share/doc/postgresql/html/functions.html 888${PG_SUBPREFIX}share/doc/postgresql/html/functions.html
889${PG_SUBPREFIX}share/doc/postgresql/html/fuzzystrmatch.html 889${PG_SUBPREFIX}share/doc/postgresql/html/fuzzystrmatch.html
890${PG_SUBPREFIX}share/doc/postgresql/html/geqo-biblio.html 890${PG_SUBPREFIX}share/doc/postgresql/html/geqo-biblio.html
891${PG_SUBPREFIX}share/doc/postgresql/html/geqo-intro.html 891${PG_SUBPREFIX}share/doc/postgresql/html/geqo-intro.html
892${PG_SUBPREFIX}share/doc/postgresql/html/geqo-intro2.html 892${PG_SUBPREFIX}share/doc/postgresql/html/geqo-intro2.html
893${PG_SUBPREFIX}share/doc/postgresql/html/geqo-pg-intro.html 893${PG_SUBPREFIX}share/doc/postgresql/html/geqo-pg-intro.html
894${PG_SUBPREFIX}share/doc/postgresql/html/geqo.html 894${PG_SUBPREFIX}share/doc/postgresql/html/geqo.html
895${PG_SUBPREFIX}share/doc/postgresql/html/gin-examples.html 895${PG_SUBPREFIX}share/doc/postgresql/html/gin-examples.html
896${PG_SUBPREFIX}share/doc/postgresql/html/gin-extensibility.html 896${PG_SUBPREFIX}share/doc/postgresql/html/gin-extensibility.html
897${PG_SUBPREFIX}share/doc/postgresql/html/gin-implementation.html 897${PG_SUBPREFIX}share/doc/postgresql/html/gin-implementation.html
898${PG_SUBPREFIX}share/doc/postgresql/html/gin-intro.html 898${PG_SUBPREFIX}share/doc/postgresql/html/gin-intro.html
899${PG_SUBPREFIX}share/doc/postgresql/html/gin-limit.html 899${PG_SUBPREFIX}share/doc/postgresql/html/gin-limit.html
900${PG_SUBPREFIX}share/doc/postgresql/html/gin-tips.html 900${PG_SUBPREFIX}share/doc/postgresql/html/gin-tips.html
901${PG_SUBPREFIX}share/doc/postgresql/html/gin.html 901${PG_SUBPREFIX}share/doc/postgresql/html/gin.html
902${PG_SUBPREFIX}share/doc/postgresql/html/gist-examples.html 902${PG_SUBPREFIX}share/doc/postgresql/html/gist-examples.html
903${PG_SUBPREFIX}share/doc/postgresql/html/gist-extensibility.html 903${PG_SUBPREFIX}share/doc/postgresql/html/gist-extensibility.html
904${PG_SUBPREFIX}share/doc/postgresql/html/gist-implementation.html 904${PG_SUBPREFIX}share/doc/postgresql/html/gist-implementation.html
905${PG_SUBPREFIX}share/doc/postgresql/html/gist-intro.html 905${PG_SUBPREFIX}share/doc/postgresql/html/gist-intro.html
906${PG_SUBPREFIX}share/doc/postgresql/html/gist-recovery.html 906${PG_SUBPREFIX}share/doc/postgresql/html/gist-recovery.html
907${PG_SUBPREFIX}share/doc/postgresql/html/gist.html 907${PG_SUBPREFIX}share/doc/postgresql/html/gist.html
908${PG_SUBPREFIX}share/doc/postgresql/html/high-availability.html 908${PG_SUBPREFIX}share/doc/postgresql/html/high-availability.html
909${PG_SUBPREFIX}share/doc/postgresql/html/history.html 909${PG_SUBPREFIX}share/doc/postgresql/html/history.html
910${PG_SUBPREFIX}share/doc/postgresql/html/hstore.html 910${PG_SUBPREFIX}share/doc/postgresql/html/hstore.html
911${PG_SUBPREFIX}share/doc/postgresql/html/index-catalog.html 911${PG_SUBPREFIX}share/doc/postgresql/html/index-catalog.html
912${PG_SUBPREFIX}share/doc/postgresql/html/index-cost-estimation.html 912${PG_SUBPREFIX}share/doc/postgresql/html/index-cost-estimation.html
913${PG_SUBPREFIX}share/doc/postgresql/html/index-functions.html 913${PG_SUBPREFIX}share/doc/postgresql/html/index-functions.html
914${PG_SUBPREFIX}share/doc/postgresql/html/index-locking.html 914${PG_SUBPREFIX}share/doc/postgresql/html/index-locking.html
915${PG_SUBPREFIX}share/doc/postgresql/html/index-scanning.html 915${PG_SUBPREFIX}share/doc/postgresql/html/index-scanning.html
916${PG_SUBPREFIX}share/doc/postgresql/html/index-unique-checks.html 916${PG_SUBPREFIX}share/doc/postgresql/html/index-unique-checks.html
917${PG_SUBPREFIX}share/doc/postgresql/html/index.html 917${PG_SUBPREFIX}share/doc/postgresql/html/index.html
918${PG_SUBPREFIX}share/doc/postgresql/html/indexam.html 918${PG_SUBPREFIX}share/doc/postgresql/html/indexam.html
919${PG_SUBPREFIX}share/doc/postgresql/html/indexes-bitmap-scans.html 919${PG_SUBPREFIX}share/doc/postgresql/html/indexes-bitmap-scans.html
920${PG_SUBPREFIX}share/doc/postgresql/html/indexes-examine.html 920${PG_SUBPREFIX}share/doc/postgresql/html/indexes-examine.html
921${PG_SUBPREFIX}share/doc/postgresql/html/indexes-expressional.html 921${PG_SUBPREFIX}share/doc/postgresql/html/indexes-expressional.html
922${PG_SUBPREFIX}share/doc/postgresql/html/indexes-intro.html 922${PG_SUBPREFIX}share/doc/postgresql/html/indexes-intro.html
923${PG_SUBPREFIX}share/doc/postgresql/html/indexes-multicolumn.html 923${PG_SUBPREFIX}share/doc/postgresql/html/indexes-multicolumn.html
924${PG_SUBPREFIX}share/doc/postgresql/html/indexes-opclass.html 924${PG_SUBPREFIX}share/doc/postgresql/html/indexes-opclass.html
925${PG_SUBPREFIX}share/doc/postgresql/html/indexes-ordering.html 925${PG_SUBPREFIX}share/doc/postgresql/html/indexes-ordering.html
926${PG_SUBPREFIX}share/doc/postgresql/html/indexes-partial.html 926${PG_SUBPREFIX}share/doc/postgresql/html/indexes-partial.html
927${PG_SUBPREFIX}share/doc/postgresql/html/indexes-types.html 927${PG_SUBPREFIX}share/doc/postgresql/html/indexes-types.html
928${PG_SUBPREFIX}share/doc/postgresql/html/indexes-unique.html 928${PG_SUBPREFIX}share/doc/postgresql/html/indexes-unique.html
929${PG_SUBPREFIX}share/doc/postgresql/html/indexes.html 929${PG_SUBPREFIX}share/doc/postgresql/html/indexes.html
930${PG_SUBPREFIX}share/doc/postgresql/html/information-schema.html 930${PG_SUBPREFIX}share/doc/postgresql/html/information-schema.html
931${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-administrable-role-authorizations.html 931${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-administrable-role-authorizations.html
932${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-applicable-roles.html 932${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-applicable-roles.html
933${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-attributes.html 933${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-attributes.html
934${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-check-constraint-routine-usage.html 934${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-check-constraint-routine-usage.html
935${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-check-constraints.html 935${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-check-constraints.html
936${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-column-domain-usage.html 936${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-column-domain-usage.html
937${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-column-privileges.html 937${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-column-privileges.html
938${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-column-udt-usage.html 938${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-column-udt-usage.html
939${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-columns.html 939${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-columns.html
940${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-constraint-column-usage.html 940${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-constraint-column-usage.html
941${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-constraint-table-usage.html 941${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-constraint-table-usage.html
942${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-data-type-privileges.html 942${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-data-type-privileges.html
943${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-datatypes.html 943${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-datatypes.html
944${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-domain-constraints.html 944${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-domain-constraints.html
945${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-domain-udt-usage.html 945${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-domain-udt-usage.html
946${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-domains.html 946${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-domains.html
947${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-element-types.html 947${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-element-types.html
948${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-enabled-roles.html 948${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-enabled-roles.html
949${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-information-schema-catalog-name.html 949${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-information-schema-catalog-name.html
950${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-key-column-usage.html 950${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-key-column-usage.html
951${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-parameters.html 951${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-parameters.html
952${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-referential-constraints.html 952${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-referential-constraints.html
953${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-role-column-grants.html 953${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-role-column-grants.html
954${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-role-routine-grants.html 954${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-role-routine-grants.html
955${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-role-table-grants.html 955${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-role-table-grants.html
956${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-role-usage-grants.html 956${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-role-usage-grants.html
957${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-routine-privileges.html 957${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-routine-privileges.html
958${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-routines.html 958${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-routines.html
959${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-schema.html 959${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-schema.html
960${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-schemata.html 960${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-schemata.html
961${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sequences.html 961${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sequences.html
962${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-features.html 962${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-features.html
963${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-implementation-info.html 963${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-implementation-info.html
964${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-languages.html 964${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-languages.html
965${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-packages.html 965${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-packages.html
966${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-parts.html 966${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-parts.html
967${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-sizing-profiles.html 967${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-sizing-profiles.html
968${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-sizing.html 968${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-sql-sizing.html
969${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-table-constraints.html 969${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-table-constraints.html
970${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-table-privileges.html 970${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-table-privileges.html
971${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-tables.html 971${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-tables.html
972${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-triggers.html 972${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-triggers.html
973${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-usage-privileges.html 973${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-usage-privileges.html
974${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-view-column-usage.html 974${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-view-column-usage.html
975${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-view-routine-usage.html 975${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-view-routine-usage.html
976${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-view-table-usage.html 976${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-view-table-usage.html
977${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-views.html 977${PG_SUBPREFIX}share/doc/postgresql/html/infoschema-views.html
978${PG_SUBPREFIX}share/doc/postgresql/html/install-getsource.html 978${PG_SUBPREFIX}share/doc/postgresql/html/install-getsource.html
979${PG_SUBPREFIX}share/doc/postgresql/html/install-post.html 979${PG_SUBPREFIX}share/doc/postgresql/html/install-post.html
980${PG_SUBPREFIX}share/doc/postgresql/html/install-procedure.html 980${PG_SUBPREFIX}share/doc/postgresql/html/install-procedure.html
981${PG_SUBPREFIX}share/doc/postgresql/html/install-requirements.html 981${PG_SUBPREFIX}share/doc/postgresql/html/install-requirements.html
982${PG_SUBPREFIX}share/doc/postgresql/html/install-short.html 982${PG_SUBPREFIX}share/doc/postgresql/html/install-short.html
983${PG_SUBPREFIX}share/doc/postgresql/html/install-upgrading.html 983${PG_SUBPREFIX}share/doc/postgresql/html/install-upgrading.html
984${PG_SUBPREFIX}share/doc/postgresql/html/install-win32-full.html 984${PG_SUBPREFIX}share/doc/postgresql/html/install-win32-full.html
985${PG_SUBPREFIX}share/doc/postgresql/html/install-win32-libpq.html 985${PG_SUBPREFIX}share/doc/postgresql/html/install-win32-libpq.html
986${PG_SUBPREFIX}share/doc/postgresql/html/install-win32.html 986${PG_SUBPREFIX}share/doc/postgresql/html/install-win32.html
987${PG_SUBPREFIX}share/doc/postgresql/html/installation.html 987${PG_SUBPREFIX}share/doc/postgresql/html/installation.html
988${PG_SUBPREFIX}share/doc/postgresql/html/intagg.html 988${PG_SUBPREFIX}share/doc/postgresql/html/intagg.html
989${PG_SUBPREFIX}share/doc/postgresql/html/intarray.html 989${PG_SUBPREFIX}share/doc/postgresql/html/intarray.html
990${PG_SUBPREFIX}share/doc/postgresql/html/internals.html 990${PG_SUBPREFIX}share/doc/postgresql/html/internals.html
991${PG_SUBPREFIX}share/doc/postgresql/html/intro-whatis.html 991${PG_SUBPREFIX}share/doc/postgresql/html/intro-whatis.html
992${PG_SUBPREFIX}share/doc/postgresql/html/isn.html 992${PG_SUBPREFIX}share/doc/postgresql/html/isn.html
993${PG_SUBPREFIX}share/doc/postgresql/html/kernel-resources.html 993${PG_SUBPREFIX}share/doc/postgresql/html/kernel-resources.html
994${PG_SUBPREFIX}share/doc/postgresql/html/largeobjects.html 994${PG_SUBPREFIX}share/doc/postgresql/html/largeobjects.html
995${PG_SUBPREFIX}share/doc/postgresql/html/libpq-async.html 995${PG_SUBPREFIX}share/doc/postgresql/html/libpq-async.html
996${PG_SUBPREFIX}share/doc/postgresql/html/libpq-build.html 996${PG_SUBPREFIX}share/doc/postgresql/html/libpq-build.html
997${PG_SUBPREFIX}share/doc/postgresql/html/libpq-cancel.html 997${PG_SUBPREFIX}share/doc/postgresql/html/libpq-cancel.html
998${PG_SUBPREFIX}share/doc/postgresql/html/libpq-connect.html 998${PG_SUBPREFIX}share/doc/postgresql/html/libpq-connect.html
999${PG_SUBPREFIX}share/doc/postgresql/html/libpq-control.html 999${PG_SUBPREFIX}share/doc/postgresql/html/libpq-control.html
1000${PG_SUBPREFIX}share/doc/postgresql/html/libpq-copy.html 1000${PG_SUBPREFIX}share/doc/postgresql/html/libpq-copy.html
1001${PG_SUBPREFIX}share/doc/postgresql/html/libpq-envars.html 1001${PG_SUBPREFIX}share/doc/postgresql/html/libpq-envars.html
1002${PG_SUBPREFIX}share/doc/postgresql/html/libpq-example.html 1002${PG_SUBPREFIX}share/doc/postgresql/html/libpq-example.html
1003${PG_SUBPREFIX}share/doc/postgresql/html/libpq-exec.html 1003${PG_SUBPREFIX}share/doc/postgresql/html/libpq-exec.html
1004${PG_SUBPREFIX}share/doc/postgresql/html/libpq-fastpath.html 1004${PG_SUBPREFIX}share/doc/postgresql/html/libpq-fastpath.html
1005${PG_SUBPREFIX}share/doc/postgresql/html/libpq-ldap.html 1005${PG_SUBPREFIX}share/doc/postgresql/html/libpq-ldap.html
1006${PG_SUBPREFIX}share/doc/postgresql/html/libpq-misc.html 1006${PG_SUBPREFIX}share/doc/postgresql/html/libpq-misc.html
1007${PG_SUBPREFIX}share/doc/postgresql/html/libpq-notice-processing.html 1007${PG_SUBPREFIX}share/doc/postgresql/html/libpq-notice-processing.html
1008${PG_SUBPREFIX}share/doc/postgresql/html/libpq-notify.html 1008${PG_SUBPREFIX}share/doc/postgresql/html/libpq-notify.html
1009${PG_SUBPREFIX}share/doc/postgresql/html/libpq-pgpass.html 1009${PG_SUBPREFIX}share/doc/postgresql/html/libpq-pgpass.html
1010${PG_SUBPREFIX}share/doc/postgresql/html/libpq-pgservice.html 1010${PG_SUBPREFIX}share/doc/postgresql/html/libpq-pgservice.html
1011${PG_SUBPREFIX}share/doc/postgresql/html/libpq-ssl.html 1011${PG_SUBPREFIX}share/doc/postgresql/html/libpq-ssl.html
1012${PG_SUBPREFIX}share/doc/postgresql/html/libpq-status.html 1012${PG_SUBPREFIX}share/doc/postgresql/html/libpq-status.html
1013${PG_SUBPREFIX}share/doc/postgresql/html/libpq-threading.html 1013${PG_SUBPREFIX}share/doc/postgresql/html/libpq-threading.html
1014${PG_SUBPREFIX}share/doc/postgresql/html/libpq.html 1014${PG_SUBPREFIX}share/doc/postgresql/html/libpq.html
1015${PG_SUBPREFIX}share/doc/postgresql/html/lo-examplesect.html 1015${PG_SUBPREFIX}share/doc/postgresql/html/lo-examplesect.html
1016${PG_SUBPREFIX}share/doc/postgresql/html/lo-funcs.html 1016${PG_SUBPREFIX}share/doc/postgresql/html/lo-funcs.html
1017${PG_SUBPREFIX}share/doc/postgresql/html/lo-implementation.html 1017${PG_SUBPREFIX}share/doc/postgresql/html/lo-implementation.html
1018${PG_SUBPREFIX}share/doc/postgresql/html/lo-interfaces.html 1018${PG_SUBPREFIX}share/doc/postgresql/html/lo-interfaces.html
1019${PG_SUBPREFIX}share/doc/postgresql/html/lo-intro.html 1019${PG_SUBPREFIX}share/doc/postgresql/html/lo-intro.html
1020${PG_SUBPREFIX}share/doc/postgresql/html/lo.html 1020${PG_SUBPREFIX}share/doc/postgresql/html/lo.html
1021${PG_SUBPREFIX}share/doc/postgresql/html/locale.html 1021${PG_SUBPREFIX}share/doc/postgresql/html/locale.html
1022${PG_SUBPREFIX}share/doc/postgresql/html/locking-indexes.html 1022${PG_SUBPREFIX}share/doc/postgresql/html/locking-indexes.html
1023${PG_SUBPREFIX}share/doc/postgresql/html/logfile-maintenance.html 1023${PG_SUBPREFIX}share/doc/postgresql/html/logfile-maintenance.html
1024${PG_SUBPREFIX}share/doc/postgresql/html/ltree.html 1024${PG_SUBPREFIX}share/doc/postgresql/html/ltree.html
1025${PG_SUBPREFIX}share/doc/postgresql/html/maintenance.html 1025${PG_SUBPREFIX}share/doc/postgresql/html/maintenance.html
1026${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-config.html 1026${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-config.html
1027${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-createdb.html 1027${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-createdb.html
1028${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-dropdb.html 1028${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-dropdb.html
1029${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-overview.html 1029${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-overview.html
1030${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-tablespaces.html 1030${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-tablespaces.html
1031${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-templatedbs.html 1031${PG_SUBPREFIX}share/doc/postgresql/html/manage-ag-templatedbs.html
1032${PG_SUBPREFIX}share/doc/postgresql/html/managing-databases.html 1032${PG_SUBPREFIX}share/doc/postgresql/html/managing-databases.html
1033${PG_SUBPREFIX}share/doc/postgresql/html/migration.html 1033${PG_SUBPREFIX}share/doc/postgresql/html/migration.html
1034${PG_SUBPREFIX}share/doc/postgresql/html/monitoring-locks.html 1034${PG_SUBPREFIX}share/doc/postgresql/html/monitoring-locks.html
1035${PG_SUBPREFIX}share/doc/postgresql/html/monitoring-ps.html 1035${PG_SUBPREFIX}share/doc/postgresql/html/monitoring-ps.html
1036${PG_SUBPREFIX}share/doc/postgresql/html/monitoring-stats.html 1036${PG_SUBPREFIX}share/doc/postgresql/html/monitoring-stats.html
1037${PG_SUBPREFIX}share/doc/postgresql/html/monitoring.html 1037${PG_SUBPREFIX}share/doc/postgresql/html/monitoring.html
1038${PG_SUBPREFIX}share/doc/postgresql/html/multibyte.html 1038${PG_SUBPREFIX}share/doc/postgresql/html/multibyte.html
1039${PG_SUBPREFIX}share/doc/postgresql/html/mvcc-intro.html 1039${PG_SUBPREFIX}share/doc/postgresql/html/mvcc-intro.html
1040${PG_SUBPREFIX}share/doc/postgresql/html/mvcc.html 1040${PG_SUBPREFIX}share/doc/postgresql/html/mvcc.html
1041${PG_SUBPREFIX}share/doc/postgresql/html/nls-programmer.html 1041${PG_SUBPREFIX}share/doc/postgresql/html/nls-programmer.html
1042${PG_SUBPREFIX}share/doc/postgresql/html/nls-translator.html 1042${PG_SUBPREFIX}share/doc/postgresql/html/nls-translator.html
1043${PG_SUBPREFIX}share/doc/postgresql/html/nls.html 1043${PG_SUBPREFIX}share/doc/postgresql/html/nls.html
1044${PG_SUBPREFIX}share/doc/postgresql/html/notation.html 1044${PG_SUBPREFIX}share/doc/postgresql/html/notation.html
1045${PG_SUBPREFIX}share/doc/postgresql/html/oid2name.html 1045${PG_SUBPREFIX}share/doc/postgresql/html/oid2name.html
1046${PG_SUBPREFIX}share/doc/postgresql/html/overview.html 1046${PG_SUBPREFIX}share/doc/postgresql/html/overview.html
1047${PG_SUBPREFIX}share/doc/postgresql/html/pageinspect.html 1047${PG_SUBPREFIX}share/doc/postgresql/html/pageinspect.html
1048${PG_SUBPREFIX}share/doc/postgresql/html/parser-stage.html 1048${PG_SUBPREFIX}share/doc/postgresql/html/parser-stage.html
1049${PG_SUBPREFIX}share/doc/postgresql/html/performance-tips.html 1049${PG_SUBPREFIX}share/doc/postgresql/html/performance-tips.html
1050${PG_SUBPREFIX}share/doc/postgresql/html/perm-functions.html 1050${PG_SUBPREFIX}share/doc/postgresql/html/perm-functions.html
1051${PG_SUBPREFIX}share/doc/postgresql/html/pgbench.html 1051${PG_SUBPREFIX}share/doc/postgresql/html/pgbench.html
1052${PG_SUBPREFIX}share/doc/postgresql/html/pgbuffercache.html 1052${PG_SUBPREFIX}share/doc/postgresql/html/pgbuffercache.html
1053${PG_SUBPREFIX}share/doc/postgresql/html/pgcrypto.html 1053${PG_SUBPREFIX}share/doc/postgresql/html/pgcrypto.html
1054${PG_SUBPREFIX}share/doc/postgresql/html/pgfreespacemap.html 1054${PG_SUBPREFIX}share/doc/postgresql/html/pgfreespacemap.html
1055${PG_SUBPREFIX}share/doc/postgresql/html/pgrowlocks.html 1055${PG_SUBPREFIX}share/doc/postgresql/html/pgrowlocks.html
1056${PG_SUBPREFIX}share/doc/postgresql/html/pgstandby.html 1056${PG_SUBPREFIX}share/doc/postgresql/html/pgstandby.html
1057${PG_SUBPREFIX}share/doc/postgresql/html/pgstattuple.html 1057${PG_SUBPREFIX}share/doc/postgresql/html/pgstattuple.html
1058${PG_SUBPREFIX}share/doc/postgresql/html/pgtrgm.html 1058${PG_SUBPREFIX}share/doc/postgresql/html/pgtrgm.html
1059${PG_SUBPREFIX}share/doc/postgresql/html/planner-optimizer.html 1059${PG_SUBPREFIX}share/doc/postgresql/html/planner-optimizer.html
1060${PG_SUBPREFIX}share/doc/postgresql/html/planner-stats-details.html 1060${PG_SUBPREFIX}share/doc/postgresql/html/planner-stats-details.html
1061${PG_SUBPREFIX}share/doc/postgresql/html/planner-stats.html 1061${PG_SUBPREFIX}share/doc/postgresql/html/planner-stats.html
1062${PG_SUBPREFIX}share/doc/postgresql/html/plhandler.html 1062${PG_SUBPREFIX}share/doc/postgresql/html/plhandler.html
1063${PG_SUBPREFIX}share/doc/postgresql/html/plperl-data.html 1063${PG_SUBPREFIX}share/doc/postgresql/html/plperl-data.html
1064${PG_SUBPREFIX}share/doc/postgresql/html/plperl-database.html 1064${PG_SUBPREFIX}share/doc/postgresql/html/plperl-database.html
1065${PG_SUBPREFIX}share/doc/postgresql/html/plperl-funcs.html 1065${PG_SUBPREFIX}share/doc/postgresql/html/plperl-funcs.html
1066${PG_SUBPREFIX}share/doc/postgresql/html/plperl-global.html 1066${PG_SUBPREFIX}share/doc/postgresql/html/plperl-global.html
1067${PG_SUBPREFIX}share/doc/postgresql/html/plperl-missing.html 1067${PG_SUBPREFIX}share/doc/postgresql/html/plperl-missing.html
1068${PG_SUBPREFIX}share/doc/postgresql/html/plperl-triggers.html 1068${PG_SUBPREFIX}share/doc/postgresql/html/plperl-triggers.html
1069${PG_SUBPREFIX}share/doc/postgresql/html/plperl-trusted.html 1069${PG_SUBPREFIX}share/doc/postgresql/html/plperl-trusted.html
1070${PG_SUBPREFIX}share/doc/postgresql/html/plperl.html 1070${PG_SUBPREFIX}share/doc/postgresql/html/plperl.html
1071${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-control-structures.html 1071${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-control-structures.html
1072${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-cursors.html 1072${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-cursors.html
1073${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-declarations.html 1073${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-declarations.html
1074${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-development-tips.html 1074${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-development-tips.html
1075${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-errors-and-messages.html 1075${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-errors-and-messages.html
1076${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-expressions.html 1076${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-expressions.html
1077${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-implementation.html 1077${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-implementation.html
1078${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-overview.html 1078${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-overview.html
1079${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-porting.html 1079${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-porting.html
1080${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-statements.html 1080${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-statements.html
1081${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-structure.html 1081${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-structure.html
1082${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-trigger.html 1082${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql-trigger.html
1083${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql.html 1083${PG_SUBPREFIX}share/doc/postgresql/html/plpgsql.html
1084${PG_SUBPREFIX}share/doc/postgresql/html/plpython-database.html 1084${PG_SUBPREFIX}share/doc/postgresql/html/plpython-database.html
1085${PG_SUBPREFIX}share/doc/postgresql/html/plpython-funcs.html 1085${PG_SUBPREFIX}share/doc/postgresql/html/plpython-funcs.html
1086${PG_SUBPREFIX}share/doc/postgresql/html/plpython-trigger.html 1086${PG_SUBPREFIX}share/doc/postgresql/html/plpython-trigger.html
1087${PG_SUBPREFIX}share/doc/postgresql/html/plpython.html 1087${PG_SUBPREFIX}share/doc/postgresql/html/plpython.html
1088${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-data.html 1088${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-data.html
1089${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-dbaccess.html 1089${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-dbaccess.html
1090${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-functions.html 1090${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-functions.html
1091${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-global.html 1091${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-global.html
1092${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-overview.html 1092${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-overview.html
1093${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-procnames.html 1093${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-procnames.html
1094${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-trigger.html 1094${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-trigger.html
1095${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-unknown.html 1095${PG_SUBPREFIX}share/doc/postgresql/html/pltcl-unknown.html
1096${PG_SUBPREFIX}share/doc/postgresql/html/pltcl.html 1096${PG_SUBPREFIX}share/doc/postgresql/html/pltcl.html
1097${PG_SUBPREFIX}share/doc/postgresql/html/populate.html 1097${PG_SUBPREFIX}share/doc/postgresql/html/populate.html
1098${PG_SUBPREFIX}share/doc/postgresql/html/postgres-user.html 1098${PG_SUBPREFIX}share/doc/postgresql/html/postgres-user.html
1099${PG_SUBPREFIX}share/doc/postgresql/html/preface.html 1099${PG_SUBPREFIX}share/doc/postgresql/html/preface.html
1100${PG_SUBPREFIX}share/doc/postgresql/html/preventing-server-spoofing.html 1100${PG_SUBPREFIX}share/doc/postgresql/html/preventing-server-spoofing.html
1101${PG_SUBPREFIX}share/doc/postgresql/html/privileges.html 1101${PG_SUBPREFIX}share/doc/postgresql/html/privileges.html
1102${PG_SUBPREFIX}share/doc/postgresql/html/protocol-changes.html 1102${PG_SUBPREFIX}share/doc/postgresql/html/protocol-changes.html
1103${PG_SUBPREFIX}share/doc/postgresql/html/protocol-error-fields.html 1103${PG_SUBPREFIX}share/doc/postgresql/html/protocol-error-fields.html
1104${PG_SUBPREFIX}share/doc/postgresql/html/protocol-flow.html 1104${PG_SUBPREFIX}share/doc/postgresql/html/protocol-flow.html
1105${PG_SUBPREFIX}share/doc/postgresql/html/protocol-message-formats.html 1105${PG_SUBPREFIX}share/doc/postgresql/html/protocol-message-formats.html
1106${PG_SUBPREFIX}share/doc/postgresql/html/protocol-message-types.html 1106${PG_SUBPREFIX}share/doc/postgresql/html/protocol-message-types.html
1107${PG_SUBPREFIX}share/doc/postgresql/html/protocol-overview.html 1107${PG_SUBPREFIX}share/doc/postgresql/html/protocol-overview.html
1108${PG_SUBPREFIX}share/doc/postgresql/html/protocol.html 1108${PG_SUBPREFIX}share/doc/postgresql/html/protocol.html
1109${PG_SUBPREFIX}share/doc/postgresql/html/queries-limit.html 1109${PG_SUBPREFIX}share/doc/postgresql/html/queries-limit.html
1110${PG_SUBPREFIX}share/doc/postgresql/html/queries-order.html 1110${PG_SUBPREFIX}share/doc/postgresql/html/queries-order.html
1111${PG_SUBPREFIX}share/doc/postgresql/html/queries-overview.html 1111${PG_SUBPREFIX}share/doc/postgresql/html/queries-overview.html
1112${PG_SUBPREFIX}share/doc/postgresql/html/queries-select-lists.html 1112${PG_SUBPREFIX}share/doc/postgresql/html/queries-select-lists.html
1113${PG_SUBPREFIX}share/doc/postgresql/html/queries-table-expressions.html 1113${PG_SUBPREFIX}share/doc/postgresql/html/queries-table-expressions.html
1114${PG_SUBPREFIX}share/doc/postgresql/html/queries-union.html 1114${PG_SUBPREFIX}share/doc/postgresql/html/queries-union.html
1115${PG_SUBPREFIX}share/doc/postgresql/html/queries-values.html 1115${PG_SUBPREFIX}share/doc/postgresql/html/queries-values.html
1116${PG_SUBPREFIX}share/doc/postgresql/html/queries.html 1116${PG_SUBPREFIX}share/doc/postgresql/html/queries.html
1117${PG_SUBPREFIX}share/doc/postgresql/html/query-path.html 1117${PG_SUBPREFIX}share/doc/postgresql/html/query-path.html
1118${PG_SUBPREFIX}share/doc/postgresql/html/querytree.html 1118${PG_SUBPREFIX}share/doc/postgresql/html/querytree.html
1119${PG_SUBPREFIX}share/doc/postgresql/html/reference-client.html 1119${PG_SUBPREFIX}share/doc/postgresql/html/reference-client.html
1120${PG_SUBPREFIX}share/doc/postgresql/html/reference-server.html 1120${PG_SUBPREFIX}share/doc/postgresql/html/reference-server.html
1121${PG_SUBPREFIX}share/doc/postgresql/html/reference.html 1121${PG_SUBPREFIX}share/doc/postgresql/html/reference.html
1122${PG_SUBPREFIX}share/doc/postgresql/html/regress-evaluation.html 1122${PG_SUBPREFIX}share/doc/postgresql/html/regress-evaluation.html
1123${PG_SUBPREFIX}share/doc/postgresql/html/regress-run.html 1123${PG_SUBPREFIX}share/doc/postgresql/html/regress-run.html
1124${PG_SUBPREFIX}share/doc/postgresql/html/regress-variant.html 1124${PG_SUBPREFIX}share/doc/postgresql/html/regress-variant.html
1125${PG_SUBPREFIX}share/doc/postgresql/html/regress.html 1125${PG_SUBPREFIX}share/doc/postgresql/html/regress.html
1126${PG_SUBPREFIX}share/doc/postgresql/html/release-0-01.html 1126${PG_SUBPREFIX}share/doc/postgresql/html/release-0-01.html
1127${PG_SUBPREFIX}share/doc/postgresql/html/release-0-02.html 1127${PG_SUBPREFIX}share/doc/postgresql/html/release-0-02.html
1128${PG_SUBPREFIX}share/doc/postgresql/html/release-0-03.html 1128${PG_SUBPREFIX}share/doc/postgresql/html/release-0-03.html
1129${PG_SUBPREFIX}share/doc/postgresql/html/release-1-0.html 1129${PG_SUBPREFIX}share/doc/postgresql/html/release-1-0.html
1130${PG_SUBPREFIX}share/doc/postgresql/html/release-1-01.html 1130${PG_SUBPREFIX}share/doc/postgresql/html/release-1-01.html
1131${PG_SUBPREFIX}share/doc/postgresql/html/release-1-02.html 1131${PG_SUBPREFIX}share/doc/postgresql/html/release-1-02.html
1132${PG_SUBPREFIX}share/doc/postgresql/html/release-1-09.html 1132${PG_SUBPREFIX}share/doc/postgresql/html/release-1-09.html
1133${PG_SUBPREFIX}share/doc/postgresql/html/release-6-0.html 1133${PG_SUBPREFIX}share/doc/postgresql/html/release-6-0.html
1134${PG_SUBPREFIX}share/doc/postgresql/html/release-6-1-1.html 1134${PG_SUBPREFIX}share/doc/postgresql/html/release-6-1-1.html
1135${PG_SUBPREFIX}share/doc/postgresql/html/release-6-1.html 1135${PG_SUBPREFIX}share/doc/postgresql/html/release-6-1.html
1136${PG_SUBPREFIX}share/doc/postgresql/html/release-6-2-1.html 1136${PG_SUBPREFIX}share/doc/postgresql/html/release-6-2-1.html
1137${PG_SUBPREFIX}share/doc/postgresql/html/release-6-2.html 1137${PG_SUBPREFIX}share/doc/postgresql/html/release-6-2.html
1138${PG_SUBPREFIX}share/doc/postgresql/html/release-6-3-1.html 1138${PG_SUBPREFIX}share/doc/postgresql/html/release-6-3-1.html
1139${PG_SUBPREFIX}share/doc/postgresql/html/release-6-3-2.html 1139${PG_SUBPREFIX}share/doc/postgresql/html/release-6-3-2.html
1140${PG_SUBPREFIX}share/doc/postgresql/html/release-6-3.html 1140${PG_SUBPREFIX}share/doc/postgresql/html/release-6-3.html
1141${PG_SUBPREFIX}share/doc/postgresql/html/release-6-4-1.html 1141${PG_SUBPREFIX}share/doc/postgresql/html/release-6-4-1.html
1142${PG_SUBPREFIX}share/doc/postgresql/html/release-6-4-2.html 1142${PG_SUBPREFIX}share/doc/postgresql/html/release-6-4-2.html
1143${PG_SUBPREFIX}share/doc/postgresql/html/release-6-4.html 1143${PG_SUBPREFIX}share/doc/postgresql/html/release-6-4.html
1144${PG_SUBPREFIX}share/doc/postgresql/html/release-6-5-1.html 1144${PG_SUBPREFIX}share/doc/postgresql/html/release-6-5-1.html
1145${PG_SUBPREFIX}share/doc/postgresql/html/release-6-5-2.html 1145${PG_SUBPREFIX}share/doc/postgresql/html/release-6-5-2.html
1146${PG_SUBPREFIX}share/doc/postgresql/html/release-6-5-3.html 1146${PG_SUBPREFIX}share/doc/postgresql/html/release-6-5-3.html
1147${PG_SUBPREFIX}share/doc/postgresql/html/release-6-5.html 1147${PG_SUBPREFIX}share/doc/postgresql/html/release-6-5.html
1148${PG_SUBPREFIX}share/doc/postgresql/html/release-7-0-1.html 1148${PG_SUBPREFIX}share/doc/postgresql/html/release-7-0-1.html
1149${PG_SUBPREFIX}share/doc/postgresql/html/release-7-0-2.html 1149${PG_SUBPREFIX}share/doc/postgresql/html/release-7-0-2.html
1150${PG_SUBPREFIX}share/doc/postgresql/html/release-7-0-3.html 1150${PG_SUBPREFIX}share/doc/postgresql/html/release-7-0-3.html
1151${PG_SUBPREFIX}share/doc/postgresql/html/release-7-0.html 1151${PG_SUBPREFIX}share/doc/postgresql/html/release-7-0.html
1152${PG_SUBPREFIX}share/doc/postgresql/html/release-7-1-1.html 1152${PG_SUBPREFIX}share/doc/postgresql/html/release-7-1-1.html
1153${PG_SUBPREFIX}share/doc/postgresql/html/release-7-1-2.html 1153${PG_SUBPREFIX}share/doc/postgresql/html/release-7-1-2.html
1154${PG_SUBPREFIX}share/doc/postgresql/html/release-7-1-3.html 1154${PG_SUBPREFIX}share/doc/postgresql/html/release-7-1-3.html
1155${PG_SUBPREFIX}share/doc/postgresql/html/release-7-1.html 1155${PG_SUBPREFIX}share/doc/postgresql/html/release-7-1.html
1156${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-1.html 1156${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-1.html
1157${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-2.html 1157${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-2.html
1158${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-3.html 1158${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-3.html
1159${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-4.html 1159${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-4.html
1160${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-5.html 1160${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-5.html
1161${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-6.html 1161${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-6.html
1162${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-7.html 1162${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-7.html
1163${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-8.html 1163${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2-8.html
1164${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2.html 1164${PG_SUBPREFIX}share/doc/postgresql/html/release-7-2.html
1165${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-1.html 1165${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-1.html
1166${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-10.html 1166${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-10.html
1167${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-11.html 1167${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-11.html
1168${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-12.html 1168${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-12.html
1169${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-13.html 1169${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-13.html
1170${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-14.html 1170${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-14.html
1171${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-15.html 1171${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-15.html
1172${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-16.html 1172${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-16.html
1173${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-17.html 1173${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-17.html
1174${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-18.html 1174${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-18.html
1175${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-19.html 1175${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-19.html
1176${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-2.html 1176${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-2.html
1177${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-20.html 1177${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-20.html
1178${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-21.html 1178${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-21.html
1179${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-3.html 1179${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-3.html
1180${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-4.html 1180${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-4.html
1181${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-5.html 1181${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-5.html
1182${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-6.html 1182${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-6.html
1183${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-7.html 1183${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-7.html
1184${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-8.html 1184${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-8.html
1185${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-9.html 1185${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3-9.html
1186${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3.html 1186${PG_SUBPREFIX}share/doc/postgresql/html/release-7-3.html
1187${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-1.html 1187${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-1.html
1188${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-10.html 1188${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-10.html
1189${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-11.html 1189${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-11.html
1190${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-12.html 1190${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-12.html
1191${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-13.html 1191${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-13.html
1192${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-14.html 1192${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-14.html
1193${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-15.html 1193${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-15.html
1194${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-16.html 1194${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-16.html
1195${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-17.html 1195${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-17.html
1196${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-18.html 1196${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-18.html
1197${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-19.html 1197${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-19.html
1198${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-2.html 1198${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-2.html
1199${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-3.html 1199${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-3.html
1200${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-4.html 1200${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-4.html
1201${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-5.html 1201${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-5.html
1202${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-6.html 1202${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-6.html
1203${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-7.html 1203${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-7.html
1204${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-8.html 1204${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-8.html
1205${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-9.html 1205${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4-9.html
1206${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4.html 1206${PG_SUBPREFIX}share/doc/postgresql/html/release-7-4.html
1207${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-1.html 1207${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-1.html
1208${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-10.html 1208${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-10.html
1209${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-11.html 1209${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-11.html
1210${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-12.html 1210${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-12.html
1211${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-13.html 1211${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-13.html
1212${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-14.html 1212${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-14.html
1213${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-15.html 1213${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-15.html
1214${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-2.html 1214${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-2.html
1215${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-3.html 1215${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-3.html
1216${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-4.html 1216${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-4.html
1217${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-5.html 1217${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-5.html
1218${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-6.html 1218${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-6.html
1219${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-7.html 1219${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-7.html
1220${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-8.html 1220${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-8.html
1221${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-9.html 1221${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0-9.html
1222${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0.html 1222${PG_SUBPREFIX}share/doc/postgresql/html/release-8-0.html
1223${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-1.html 1223${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-1.html
1224${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-10.html 1224${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-10.html
1225${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-11.html 1225${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-11.html
1226${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-2.html 1226${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-2.html
1227${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-3.html 1227${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-3.html
1228${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-4.html 1228${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-4.html
1229${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-5.html 1229${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-5.html
1230${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-6.html 1230${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-6.html
1231${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-7.html 1231${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-7.html
1232${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-8.html 1232${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-8.html
1233${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-9.html 1233${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1-9.html
1234${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1.html 1234${PG_SUBPREFIX}share/doc/postgresql/html/release-8-1.html
1235${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-1.html 1235${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-1.html
1236${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-2.html 1236${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-2.html
1237${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-3.html 1237${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-3.html
1238${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-4.html 1238${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-4.html
1239${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-5.html 1239${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-5.html
1240${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-6.html 1240${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-6.html
 1241${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2-7.html
1241${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2.html 1242${PG_SUBPREFIX}share/doc/postgresql/html/release-8-2.html
 1243${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3-1.html
1242${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3.html 1244${PG_SUBPREFIX}share/doc/postgresql/html/release-8-3.html
1243${PG_SUBPREFIX}share/doc/postgresql/html/release.html 1245${PG_SUBPREFIX}share/doc/postgresql/html/release.html
1244${PG_SUBPREFIX}share/doc/postgresql/html/resources.html 1246${PG_SUBPREFIX}share/doc/postgresql/html/resources.html
1245${PG_SUBPREFIX}share/doc/postgresql/html/role-attributes.html 1247${PG_SUBPREFIX}share/doc/postgresql/html/role-attributes.html
1246${PG_SUBPREFIX}share/doc/postgresql/html/role-membership.html 1248${PG_SUBPREFIX}share/doc/postgresql/html/role-membership.html
1247${PG_SUBPREFIX}share/doc/postgresql/html/routine-reindex.html 1249${PG_SUBPREFIX}share/doc/postgresql/html/routine-reindex.html
1248${PG_SUBPREFIX}share/doc/postgresql/html/routine-vacuuming.html 1250${PG_SUBPREFIX}share/doc/postgresql/html/routine-vacuuming.html
1249${PG_SUBPREFIX}share/doc/postgresql/html/row-estimation-examples.html 1251${PG_SUBPREFIX}share/doc/postgresql/html/row-estimation-examples.html
1250${PG_SUBPREFIX}share/doc/postgresql/html/rowtypes.html 1252${PG_SUBPREFIX}share/doc/postgresql/html/rowtypes.html
1251${PG_SUBPREFIX}share/doc/postgresql/html/rsync.html 1253${PG_SUBPREFIX}share/doc/postgresql/html/rsync.html
1252${PG_SUBPREFIX}share/doc/postgresql/html/rule-system.html 1254${PG_SUBPREFIX}share/doc/postgresql/html/rule-system.html
1253${PG_SUBPREFIX}share/doc/postgresql/html/rules-privileges.html 1255${PG_SUBPREFIX}share/doc/postgresql/html/rules-privileges.html
1254${PG_SUBPREFIX}share/doc/postgresql/html/rules-status.html 1256${PG_SUBPREFIX}share/doc/postgresql/html/rules-status.html
1255${PG_SUBPREFIX}share/doc/postgresql/html/rules-triggers.html 1257${PG_SUBPREFIX}share/doc/postgresql/html/rules-triggers.html
1256${PG_SUBPREFIX}share/doc/postgresql/html/rules-update.html 1258${PG_SUBPREFIX}share/doc/postgresql/html/rules-update.html
1257${PG_SUBPREFIX}share/doc/postgresql/html/rules-views.html 1259${PG_SUBPREFIX}share/doc/postgresql/html/rules-views.html
1258${PG_SUBPREFIX}share/doc/postgresql/html/rules.html 1260${PG_SUBPREFIX}share/doc/postgresql/html/rules.html
1259${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-autovacuum.html 1261${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-autovacuum.html
1260${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-client.html 1262${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-client.html
1261${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-compatible.html 1263${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-compatible.html
1262${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-connection.html 1264${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-connection.html
1263${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-custom.html 1265${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-custom.html
1264${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-developer.html 1266${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-developer.html
1265${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-file-locations.html 1267${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-file-locations.html
1266${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-locks.html 1268${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-locks.html
1267${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-logging.html 1269${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-logging.html
1268${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-preset.html 1270${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-preset.html
1269${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-query.html 1271${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-query.html
1270${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-resource.html 1272${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-resource.html
1271${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-short.html 1273${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-short.html
1272${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-statistics.html 1274${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-statistics.html
1273${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-wal.html 1275${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config-wal.html
1274${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config.html 1276${PG_SUBPREFIX}share/doc/postgresql/html/runtime-config.html
1275${PG_SUBPREFIX}share/doc/postgresql/html/runtime.html 1277${PG_SUBPREFIX}share/doc/postgresql/html/runtime.html
1276${PG_SUBPREFIX}share/doc/postgresql/html/seg.html 1278${PG_SUBPREFIX}share/doc/postgresql/html/seg.html
1277${PG_SUBPREFIX}share/doc/postgresql/html/server-programming.html 1279${PG_SUBPREFIX}share/doc/postgresql/html/server-programming.html
1278${PG_SUBPREFIX}share/doc/postgresql/html/server-shutdown.html 1280${PG_SUBPREFIX}share/doc/postgresql/html/server-shutdown.html
1279${PG_SUBPREFIX}share/doc/postgresql/html/server-start.html 1281${PG_SUBPREFIX}share/doc/postgresql/html/server-start.html
1280${PG_SUBPREFIX}share/doc/postgresql/html/source-format.html 1282${PG_SUBPREFIX}share/doc/postgresql/html/source-format.html
1281${PG_SUBPREFIX}share/doc/postgresql/html/source.html 1283${PG_SUBPREFIX}share/doc/postgresql/html/source.html
1282${PG_SUBPREFIX}share/doc/postgresql/html/spi-examples.html 1284${PG_SUBPREFIX}share/doc/postgresql/html/spi-examples.html
1283${PG_SUBPREFIX}share/doc/postgresql/html/spi-interface-support.html 1285${PG_SUBPREFIX}share/doc/postgresql/html/spi-interface-support.html
1284${PG_SUBPREFIX}share/doc/postgresql/html/spi-interface.html 1286${PG_SUBPREFIX}share/doc/postgresql/html/spi-interface.html
1285${PG_SUBPREFIX}share/doc/postgresql/html/spi-memory.html 1287${PG_SUBPREFIX}share/doc/postgresql/html/spi-memory.html
1286${PG_SUBPREFIX}share/doc/postgresql/html/spi-realloc.html 1288${PG_SUBPREFIX}share/doc/postgresql/html/spi-realloc.html
1287${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-connect.html 1289${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-connect.html
1288${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-copytuple.html 1290${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-copytuple.html
1289${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-cursor-close.html 1291${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-cursor-close.html
1290${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-cursor-fetch.html 1292${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-cursor-fetch.html
1291${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-cursor-find.html 1293${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-cursor-find.html
1292${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-cursor-move.html 1294${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-cursor-move.html
1293${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-cursor-open.html 1295${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-cursor-open.html
1294${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-exec.html 1296${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-exec.html
1295${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-execp.html 1297${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-execp.html
1296${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-execute-plan.html 1298${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-execute-plan.html
1297${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-execute.html 1299${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-execute.html
1298${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-finish.html 1300${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-finish.html
1299${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-fname.html 1301${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-fname.html
1300${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-fnumber.html 1302${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-fnumber.html
1301${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-freeplan.html 1303${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-freeplan.html
1302${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-freetuple.html 1304${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-freetuple.html
1303${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-freetupletable.html 1305${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-freetupletable.html
1304${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getargcount.html 1306${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getargcount.html
1305${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getargtypeid.html 1307${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getargtypeid.html
1306${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getbinval.html 1308${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getbinval.html
1307${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getnspname.html 1309${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getnspname.html
1308${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getrelname.html 1310${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getrelname.html
1309${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-gettype.html 1311${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-gettype.html
1310${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-gettypeid.html 1312${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-gettypeid.html
1311${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getvalue.html 1313${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-getvalue.html
1312${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-is-cursor-plan.html 1314${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-is-cursor-plan.html
1313${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-modifytuple.html 1315${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-modifytuple.html
1314${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-palloc.html 1316${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-palloc.html
1315${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-pfree.html 1317${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-pfree.html
1316${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-pop.html 1318${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-pop.html
1317${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-prepare-cursor.html 1319${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-prepare-cursor.html
1318${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-prepare.html 1320${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-prepare.html
1319${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-push.html 1321${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-push.html
1320${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-returntuple.html 1322${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-returntuple.html
1321${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-saveplan.html 1323${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-saveplan.html
1322${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-scroll-cursor-fetch.html 1324${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-scroll-cursor-fetch.html
1323${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-scroll-cursor-move.html 1325${PG_SUBPREFIX}share/doc/postgresql/html/spi-spi-scroll-cursor-move.html
1324${PG_SUBPREFIX}share/doc/postgresql/html/spi-visibility.html 1326${PG_SUBPREFIX}share/doc/postgresql/html/spi-visibility.html
1325${PG_SUBPREFIX}share/doc/postgresql/html/spi.html 1327${PG_SUBPREFIX}share/doc/postgresql/html/spi.html
1326${PG_SUBPREFIX}share/doc/postgresql/html/sql-abort.html 1328${PG_SUBPREFIX}share/doc/postgresql/html/sql-abort.html
1327${PG_SUBPREFIX}share/doc/postgresql/html/sql-alteraggregate.html 1329${PG_SUBPREFIX}share/doc/postgresql/html/sql-alteraggregate.html
1328${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterconversion.html 1330${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterconversion.html
1329${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterdatabase.html 1331${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterdatabase.html
1330${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterdomain.html 1332${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterdomain.html
1331${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterfunction.html 1333${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterfunction.html
1332${PG_SUBPREFIX}share/doc/postgresql/html/sql-altergroup.html 1334${PG_SUBPREFIX}share/doc/postgresql/html/sql-altergroup.html
1333${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterindex.html 1335${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterindex.html
1334${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterlanguage.html 1336${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterlanguage.html
1335${PG_SUBPREFIX}share/doc/postgresql/html/sql-alteropclass.html 1337${PG_SUBPREFIX}share/doc/postgresql/html/sql-alteropclass.html
1336${PG_SUBPREFIX}share/doc/postgresql/html/sql-alteroperator.html 1338${PG_SUBPREFIX}share/doc/postgresql/html/sql-alteroperator.html
1337${PG_SUBPREFIX}share/doc/postgresql/html/sql-alteropfamily.html 1339${PG_SUBPREFIX}share/doc/postgresql/html/sql-alteropfamily.html
1338${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterrole.html 1340${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterrole.html
1339${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterschema.html 1341${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterschema.html
1340${PG_SUBPREFIX}share/doc/postgresql/html/sql-altersequence.html 1342${PG_SUBPREFIX}share/doc/postgresql/html/sql-altersequence.html
1341${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertable.html 1343${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertable.html
1342${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertablespace.html 1344${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertablespace.html
1343${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertrigger.html 1345${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertrigger.html
1344${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertsconfig.html 1346${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertsconfig.html
1345${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertsdictionary.html 1347${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertsdictionary.html
1346${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertsparser.html 1348${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertsparser.html
1347${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertstemplate.html 1349${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertstemplate.html
1348${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertype.html 1350${PG_SUBPREFIX}share/doc/postgresql/html/sql-altertype.html
1349${PG_SUBPREFIX}share/doc/postgresql/html/sql-alteruser.html 1351${PG_SUBPREFIX}share/doc/postgresql/html/sql-alteruser.html
1350${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterview.html 1352${PG_SUBPREFIX}share/doc/postgresql/html/sql-alterview.html
1351${PG_SUBPREFIX}share/doc/postgresql/html/sql-analyze.html 1353${PG_SUBPREFIX}share/doc/postgresql/html/sql-analyze.html
1352${PG_SUBPREFIX}share/doc/postgresql/html/sql-begin.html 1354${PG_SUBPREFIX}share/doc/postgresql/html/sql-begin.html
1353${PG_SUBPREFIX}share/doc/postgresql/html/sql-checkpoint.html 1355${PG_SUBPREFIX}share/doc/postgresql/html/sql-checkpoint.html
1354${PG_SUBPREFIX}share/doc/postgresql/html/sql-close.html 1356${PG_SUBPREFIX}share/doc/postgresql/html/sql-close.html
1355${PG_SUBPREFIX}share/doc/postgresql/html/sql-cluster.html 1357${PG_SUBPREFIX}share/doc/postgresql/html/sql-cluster.html
1356${PG_SUBPREFIX}share/doc/postgresql/html/sql-commands.html 1358${PG_SUBPREFIX}share/doc/postgresql/html/sql-commands.html
1357${PG_SUBPREFIX}share/doc/postgresql/html/sql-comment.html 1359${PG_SUBPREFIX}share/doc/postgresql/html/sql-comment.html
1358${PG_SUBPREFIX}share/doc/postgresql/html/sql-commit-prepared.html 1360${PG_SUBPREFIX}share/doc/postgresql/html/sql-commit-prepared.html
1359${PG_SUBPREFIX}share/doc/postgresql/html/sql-commit.html 1361${PG_SUBPREFIX}share/doc/postgresql/html/sql-commit.html
1360${PG_SUBPREFIX}share/doc/postgresql/html/sql-copy.html 1362${PG_SUBPREFIX}share/doc/postgresql/html/sql-copy.html
1361${PG_SUBPREFIX}share/doc/postgresql/html/sql-createaggregate.html 1363${PG_SUBPREFIX}share/doc/postgresql/html/sql-createaggregate.html
1362${PG_SUBPREFIX}share/doc/postgresql/html/sql-createcast.html 1364${PG_SUBPREFIX}share/doc/postgresql/html/sql-createcast.html
1363${PG_SUBPREFIX}share/doc/postgresql/html/sql-createconstraint.html 1365${PG_SUBPREFIX}share/doc/postgresql/html/sql-createconstraint.html
1364${PG_SUBPREFIX}share/doc/postgresql/html/sql-createconversion.html 1366${PG_SUBPREFIX}share/doc/postgresql/html/sql-createconversion.html
1365${PG_SUBPREFIX}share/doc/postgresql/html/sql-createdatabase.html 1367${PG_SUBPREFIX}share/doc/postgresql/html/sql-createdatabase.html
1366${PG_SUBPREFIX}share/doc/postgresql/html/sql-createdomain.html 1368${PG_SUBPREFIX}share/doc/postgresql/html/sql-createdomain.html
1367${PG_SUBPREFIX}share/doc/postgresql/html/sql-createfunction.html 1369${PG_SUBPREFIX}share/doc/postgresql/html/sql-createfunction.html
1368${PG_SUBPREFIX}share/doc/postgresql/html/sql-creategroup.html 1370${PG_SUBPREFIX}share/doc/postgresql/html/sql-creategroup.html
1369${PG_SUBPREFIX}share/doc/postgresql/html/sql-createindex.html 1371${PG_SUBPREFIX}share/doc/postgresql/html/sql-createindex.html
1370${PG_SUBPREFIX}share/doc/postgresql/html/sql-createlanguage.html 1372${PG_SUBPREFIX}share/doc/postgresql/html/sql-createlanguage.html
1371${PG_SUBPREFIX}share/doc/postgresql/html/sql-createopclass.html 1373${PG_SUBPREFIX}share/doc/postgresql/html/sql-createopclass.html
1372${PG_SUBPREFIX}share/doc/postgresql/html/sql-createoperator.html 1374${PG_SUBPREFIX}share/doc/postgresql/html/sql-createoperator.html
1373${PG_SUBPREFIX}share/doc/postgresql/html/sql-createopfamily.html 1375${PG_SUBPREFIX}share/doc/postgresql/html/sql-createopfamily.html
1374${PG_SUBPREFIX}share/doc/postgresql/html/sql-createrole.html 1376${PG_SUBPREFIX}share/doc/postgresql/html/sql-createrole.html
1375${PG_SUBPREFIX}share/doc/postgresql/html/sql-createrule.html 1377${PG_SUBPREFIX}share/doc/postgresql/html/sql-createrule.html
1376${PG_SUBPREFIX}share/doc/postgresql/html/sql-createschema.html 1378${PG_SUBPREFIX}share/doc/postgresql/html/sql-createschema.html
1377${PG_SUBPREFIX}share/doc/postgresql/html/sql-createsequence.html 1379${PG_SUBPREFIX}share/doc/postgresql/html/sql-createsequence.html
1378${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtable.html 1380${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtable.html
1379${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtableas.html 1381${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtableas.html
1380${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtablespace.html 1382${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtablespace.html
1381${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtrigger.html 1383${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtrigger.html
1382${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtsconfig.html 1384${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtsconfig.html
1383${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtsdictionary.html 1385${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtsdictionary.html
1384${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtsparser.html 1386${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtsparser.html
1385${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtstemplate.html 1387${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtstemplate.html
1386${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtype.html 1388${PG_SUBPREFIX}share/doc/postgresql/html/sql-createtype.html
1387${PG_SUBPREFIX}share/doc/postgresql/html/sql-createuser.html 1389${PG_SUBPREFIX}share/doc/postgresql/html/sql-createuser.html
1388${PG_SUBPREFIX}share/doc/postgresql/html/sql-createview.html 1390${PG_SUBPREFIX}share/doc/postgresql/html/sql-createview.html
1389${PG_SUBPREFIX}share/doc/postgresql/html/sql-deallocate.html 1391${PG_SUBPREFIX}share/doc/postgresql/html/sql-deallocate.html
1390${PG_SUBPREFIX}share/doc/postgresql/html/sql-declare.html 1392${PG_SUBPREFIX}share/doc/postgresql/html/sql-declare.html
1391${PG_SUBPREFIX}share/doc/postgresql/html/sql-delete.html 1393${PG_SUBPREFIX}share/doc/postgresql/html/sql-delete.html
1392${PG_SUBPREFIX}share/doc/postgresql/html/sql-discard.html 1394${PG_SUBPREFIX}share/doc/postgresql/html/sql-discard.html
1393${PG_SUBPREFIX}share/doc/postgresql/html/sql-drop-owned.html 1395${PG_SUBPREFIX}share/doc/postgresql/html/sql-drop-owned.html
1394${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropaggregate.html 1396${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropaggregate.html
1395${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropcast.html 1397${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropcast.html
1396${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropconversion.html 1398${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropconversion.html
1397${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropdatabase.html 1399${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropdatabase.html
1398${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropdomain.html 1400${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropdomain.html
1399${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropfunction.html 1401${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropfunction.html
1400${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropgroup.html 1402${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropgroup.html
1401${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropindex.html 1403${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropindex.html
1402${PG_SUBPREFIX}share/doc/postgresql/html/sql-droplanguage.html 1404${PG_SUBPREFIX}share/doc/postgresql/html/sql-droplanguage.html
1403${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropopclass.html 1405${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropopclass.html
1404${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropoperator.html 1406${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropoperator.html
1405${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropopfamily.html 1407${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropopfamily.html
1406${PG_SUBPREFIX}share/doc/postgresql/html/sql-droprole.html 1408${PG_SUBPREFIX}share/doc/postgresql/html/sql-droprole.html
1407${PG_SUBPREFIX}share/doc/postgresql/html/sql-droprule.html 1409${PG_SUBPREFIX}share/doc/postgresql/html/sql-droprule.html
1408${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropschema.html 1410${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropschema.html
1409${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropsequence.html 1411${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropsequence.html
1410${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptable.html 1412${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptable.html
1411${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptablespace.html 1413${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptablespace.html
1412${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptrigger.html 1414${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptrigger.html
1413${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptsconfig.html 1415${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptsconfig.html
1414${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptsdictionary.html 1416${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptsdictionary.html
1415${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptsparser.html 1417${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptsparser.html
1416${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptstemplate.html 1418${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptstemplate.html
1417${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptype.html 1419${PG_SUBPREFIX}share/doc/postgresql/html/sql-droptype.html
1418${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropuser.html 1420${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropuser.html
1419${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropview.html 1421${PG_SUBPREFIX}share/doc/postgresql/html/sql-dropview.html
1420${PG_SUBPREFIX}share/doc/postgresql/html/sql-end.html 1422${PG_SUBPREFIX}share/doc/postgresql/html/sql-end.html
1421${PG_SUBPREFIX}share/doc/postgresql/html/sql-execute.html 1423${PG_SUBPREFIX}share/doc/postgresql/html/sql-execute.html
1422${PG_SUBPREFIX}share/doc/postgresql/html/sql-explain.html 1424${PG_SUBPREFIX}share/doc/postgresql/html/sql-explain.html
1423${PG_SUBPREFIX}share/doc/postgresql/html/sql-expressions.html 1425${PG_SUBPREFIX}share/doc/postgresql/html/sql-expressions.html
1424${PG_SUBPREFIX}share/doc/postgresql/html/sql-fetch.html 1426${PG_SUBPREFIX}share/doc/postgresql/html/sql-fetch.html
1425${PG_SUBPREFIX}share/doc/postgresql/html/sql-grant.html 1427${PG_SUBPREFIX}share/doc/postgresql/html/sql-grant.html
1426${PG_SUBPREFIX}share/doc/postgresql/html/sql-insert.html 1428${PG_SUBPREFIX}share/doc/postgresql/html/sql-insert.html
1427${PG_SUBPREFIX}share/doc/postgresql/html/sql-keywords-appendix.html 1429${PG_SUBPREFIX}share/doc/postgresql/html/sql-keywords-appendix.html
1428${PG_SUBPREFIX}share/doc/postgresql/html/sql-listen.html 1430${PG_SUBPREFIX}share/doc/postgresql/html/sql-listen.html
1429${PG_SUBPREFIX}share/doc/postgresql/html/sql-load.html 1431${PG_SUBPREFIX}share/doc/postgresql/html/sql-load.html
1430${PG_SUBPREFIX}share/doc/postgresql/html/sql-lock.html 1432${PG_SUBPREFIX}share/doc/postgresql/html/sql-lock.html
1431${PG_SUBPREFIX}share/doc/postgresql/html/sql-move.html 1433${PG_SUBPREFIX}share/doc/postgresql/html/sql-move.html
1432${PG_SUBPREFIX}share/doc/postgresql/html/sql-notify.html 1434${PG_SUBPREFIX}share/doc/postgresql/html/sql-notify.html
1433${PG_SUBPREFIX}share/doc/postgresql/html/sql-prepare-transaction.html 1435${PG_SUBPREFIX}share/doc/postgresql/html/sql-prepare-transaction.html
1434${PG_SUBPREFIX}share/doc/postgresql/html/sql-prepare.html 1436${PG_SUBPREFIX}share/doc/postgresql/html/sql-prepare.html
1435${PG_SUBPREFIX}share/doc/postgresql/html/sql-reassign-owned.html 1437${PG_SUBPREFIX}share/doc/postgresql/html/sql-reassign-owned.html
1436${PG_SUBPREFIX}share/doc/postgresql/html/sql-reindex.html 1438${PG_SUBPREFIX}share/doc/postgresql/html/sql-reindex.html
1437${PG_SUBPREFIX}share/doc/postgresql/html/sql-release-savepoint.html 1439${PG_SUBPREFIX}share/doc/postgresql/html/sql-release-savepoint.html
1438${PG_SUBPREFIX}share/doc/postgresql/html/sql-reset.html 1440${PG_SUBPREFIX}share/doc/postgresql/html/sql-reset.html
1439${PG_SUBPREFIX}share/doc/postgresql/html/sql-revoke.html 1441${PG_SUBPREFIX}share/doc/postgresql/html/sql-revoke.html
1440${PG_SUBPREFIX}share/doc/postgresql/html/sql-rollback-prepared.html 1442${PG_SUBPREFIX}share/doc/postgresql/html/sql-rollback-prepared.html
1441${PG_SUBPREFIX}share/doc/postgresql/html/sql-rollback-to.html 1443${PG_SUBPREFIX}share/doc/postgresql/html/sql-rollback-to.html
1442${PG_SUBPREFIX}share/doc/postgresql/html/sql-rollback.html 1444${PG_SUBPREFIX}share/doc/postgresql/html/sql-rollback.html
1443${PG_SUBPREFIX}share/doc/postgresql/html/sql-savepoint.html 1445${PG_SUBPREFIX}share/doc/postgresql/html/sql-savepoint.html
1444${PG_SUBPREFIX}share/doc/postgresql/html/sql-select.html 1446${PG_SUBPREFIX}share/doc/postgresql/html/sql-select.html
1445${PG_SUBPREFIX}share/doc/postgresql/html/sql-selectinto.html 1447${PG_SUBPREFIX}share/doc/postgresql/html/sql-selectinto.html
1446${PG_SUBPREFIX}share/doc/postgresql/html/sql-set-constraints.html 1448${PG_SUBPREFIX}share/doc/postgresql/html/sql-set-constraints.html
1447${PG_SUBPREFIX}share/doc/postgresql/html/sql-set-role.html 1449${PG_SUBPREFIX}share/doc/postgresql/html/sql-set-role.html
1448${PG_SUBPREFIX}share/doc/postgresql/html/sql-set-session-authorization.html 1450${PG_SUBPREFIX}share/doc/postgresql/html/sql-set-session-authorization.html
1449${PG_SUBPREFIX}share/doc/postgresql/html/sql-set-transaction.html 1451${PG_SUBPREFIX}share/doc/postgresql/html/sql-set-transaction.html
1450${PG_SUBPREFIX}share/doc/postgresql/html/sql-set.html 1452${PG_SUBPREFIX}share/doc/postgresql/html/sql-set.html
1451${PG_SUBPREFIX}share/doc/postgresql/html/sql-show.html 1453${PG_SUBPREFIX}share/doc/postgresql/html/sql-show.html
1452${PG_SUBPREFIX}share/doc/postgresql/html/sql-start-transaction.html 1454${PG_SUBPREFIX}share/doc/postgresql/html/sql-start-transaction.html
1453${PG_SUBPREFIX}share/doc/postgresql/html/sql-syntax-lexical.html 1455${PG_SUBPREFIX}share/doc/postgresql/html/sql-syntax-lexical.html
1454${PG_SUBPREFIX}share/doc/postgresql/html/sql-syntax.html 1456${PG_SUBPREFIX}share/doc/postgresql/html/sql-syntax.html
1455${PG_SUBPREFIX}share/doc/postgresql/html/sql-truncate.html 1457${PG_SUBPREFIX}share/doc/postgresql/html/sql-truncate.html
1456${PG_SUBPREFIX}share/doc/postgresql/html/sql-unlisten.html 1458${PG_SUBPREFIX}share/doc/postgresql/html/sql-unlisten.html
1457${PG_SUBPREFIX}share/doc/postgresql/html/sql-update.html 1459${PG_SUBPREFIX}share/doc/postgresql/html/sql-update.html
1458${PG_SUBPREFIX}share/doc/postgresql/html/sql-vacuum.html 1460${PG_SUBPREFIX}share/doc/postgresql/html/sql-vacuum.html
1459${PG_SUBPREFIX}share/doc/postgresql/html/sql-values.html 1461${PG_SUBPREFIX}share/doc/postgresql/html/sql-values.html
1460${PG_SUBPREFIX}share/doc/postgresql/html/sql.html 1462${PG_SUBPREFIX}share/doc/postgresql/html/sql.html
1461${PG_SUBPREFIX}share/doc/postgresql/html/ssh-tunnels.html 1463${PG_SUBPREFIX}share/doc/postgresql/html/ssh-tunnels.html
1462${PG_SUBPREFIX}share/doc/postgresql/html/ssl-tcp.html 1464${PG_SUBPREFIX}share/doc/postgresql/html/ssl-tcp.html
1463${PG_SUBPREFIX}share/doc/postgresql/html/sslinfo.html 1465${PG_SUBPREFIX}share/doc/postgresql/html/sslinfo.html
1464${PG_SUBPREFIX}share/doc/postgresql/html/storage-file-layout.html 1466${PG_SUBPREFIX}share/doc/postgresql/html/storage-file-layout.html
1465${PG_SUBPREFIX}share/doc/postgresql/html/storage-page-layout.html 1467${PG_SUBPREFIX}share/doc/postgresql/html/storage-page-layout.html
1466${PG_SUBPREFIX}share/doc/postgresql/html/storage-toast.html 1468${PG_SUBPREFIX}share/doc/postgresql/html/storage-toast.html
1467${PG_SUBPREFIX}share/doc/postgresql/html/storage.html 1469${PG_SUBPREFIX}share/doc/postgresql/html/storage.html
1468${PG_SUBPREFIX}share/doc/postgresql/html/stylesheet.css 1470${PG_SUBPREFIX}share/doc/postgresql/html/stylesheet.css
1469${PG_SUBPREFIX}share/doc/postgresql/html/supported-platforms.html 1471${PG_SUBPREFIX}share/doc/postgresql/html/supported-platforms.html
1470${PG_SUBPREFIX}share/doc/postgresql/html/tablefunc.html 1472${PG_SUBPREFIX}share/doc/postgresql/html/tablefunc.html
1471${PG_SUBPREFIX}share/doc/postgresql/html/test-parser.html 1473${PG_SUBPREFIX}share/doc/postgresql/html/test-parser.html
1472${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-configuration.html 1474${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-configuration.html
1473${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-controls.html 1475${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-controls.html
1474${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-debugging.html 1476${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-debugging.html
1475${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-dictionaries.html 1477${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-dictionaries.html
1476${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-features.html 1478${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-features.html
1477${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-indexes.html 1479${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-indexes.html
1478${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-intro.html 1480${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-intro.html
1479${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-limitations.html 1481${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-limitations.html
1480${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-migration.html 1482${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-migration.html
1481${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-parsers.html 1483${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-parsers.html
1482${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-psql.html 1484${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-psql.html
1483${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-tables.html 1485${PG_SUBPREFIX}share/doc/postgresql/html/textsearch-tables.html
1484${PG_SUBPREFIX}share/doc/postgresql/html/textsearch.html 1486${PG_SUBPREFIX}share/doc/postgresql/html/textsearch.html
1485${PG_SUBPREFIX}share/doc/postgresql/html/transaction-iso.html 1487${PG_SUBPREFIX}share/doc/postgresql/html/transaction-iso.html
1486${PG_SUBPREFIX}share/doc/postgresql/html/trigger-datachanges.html 1488${PG_SUBPREFIX}share/doc/postgresql/html/trigger-datachanges.html
1487${PG_SUBPREFIX}share/doc/postgresql/html/trigger-definition.html 1489${PG_SUBPREFIX}share/doc/postgresql/html/trigger-definition.html
1488${PG_SUBPREFIX}share/doc/postgresql/html/trigger-example.html 1490${PG_SUBPREFIX}share/doc/postgresql/html/trigger-example.html
1489${PG_SUBPREFIX}share/doc/postgresql/html/trigger-interface.html 1491${PG_SUBPREFIX}share/doc/postgresql/html/trigger-interface.html
1490${PG_SUBPREFIX}share/doc/postgresql/html/triggers.html 1492${PG_SUBPREFIX}share/doc/postgresql/html/triggers.html
1491${PG_SUBPREFIX}share/doc/postgresql/html/tsearch2.html 1493${PG_SUBPREFIX}share/doc/postgresql/html/tsearch2.html
1492${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-accessdb.html 1494${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-accessdb.html
1493${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-advanced-intro.html 1495${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-advanced-intro.html
1494${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-advanced.html 1496${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-advanced.html
1495${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-agg.html 1497${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-agg.html
1496${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-arch.html 1498${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-arch.html
1497${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-concepts.html 1499${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-concepts.html
1498${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-conclusion.html 1500${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-conclusion.html
1499${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-createdb.html 1501${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-createdb.html
1500${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-delete.html 1502${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-delete.html
1501${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-fk.html 1503${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-fk.html
1502${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-inheritance.html 1504${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-inheritance.html
1503${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-install.html 1505${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-install.html
1504${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-join.html 1506${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-join.html
1505${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-populate.html 1507${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-populate.html
1506${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-select.html 1508${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-select.html
1507${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-sql-intro.html 1509${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-sql-intro.html
1508${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-sql.html 1510${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-sql.html
1509${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-start.html 1511${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-start.html
1510${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-table.html 1512${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-table.html
1511${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-transactions.html 1513${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-transactions.html
1512${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-update.html 1514${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-update.html
1513${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-views.html 1515${PG_SUBPREFIX}share/doc/postgresql/html/tutorial-views.html
1514${PG_SUBPREFIX}share/doc/postgresql/html/tutorial.html 1516${PG_SUBPREFIX}share/doc/postgresql/html/tutorial.html
1515${PG_SUBPREFIX}share/doc/postgresql/html/typeconv-func.html 1517${PG_SUBPREFIX}share/doc/postgresql/html/typeconv-func.html
1516${PG_SUBPREFIX}share/doc/postgresql/html/typeconv-oper.html 1518${PG_SUBPREFIX}share/doc/postgresql/html/typeconv-oper.html
1517${PG_SUBPREFIX}share/doc/postgresql/html/typeconv-overview.html 1519${PG_SUBPREFIX}share/doc/postgresql/html/typeconv-overview.html
1518${PG_SUBPREFIX}share/doc/postgresql/html/typeconv-query.html 1520${PG_SUBPREFIX}share/doc/postgresql/html/typeconv-query.html
1519${PG_SUBPREFIX}share/doc/postgresql/html/typeconv-union-case.html 1521${PG_SUBPREFIX}share/doc/postgresql/html/typeconv-union-case.html
1520${PG_SUBPREFIX}share/doc/postgresql/html/typeconv.html 1522${PG_SUBPREFIX}share/doc/postgresql/html/typeconv.html
1521${PG_SUBPREFIX}share/doc/postgresql/html/unsupported-features-sql-standard.html 1523${PG_SUBPREFIX}share/doc/postgresql/html/unsupported-features-sql-standard.html
1522${PG_SUBPREFIX}share/doc/postgresql/html/user-manag.html 1524${PG_SUBPREFIX}share/doc/postgresql/html/user-manag.html
1523${PG_SUBPREFIX}share/doc/postgresql/html/using-explain.html 1525${PG_SUBPREFIX}share/doc/postgresql/html/using-explain.html
1524${PG_SUBPREFIX}share/doc/postgresql/html/uuid-ossp.html 1526${PG_SUBPREFIX}share/doc/postgresql/html/uuid-ossp.html
1525${PG_SUBPREFIX}share/doc/postgresql/html/vacuumlo.html 1527${PG_SUBPREFIX}share/doc/postgresql/html/vacuumlo.html
1526${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-cursors.html 1528${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-cursors.html
1527${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-group.html 1529${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-group.html
1528${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-indexes.html 1530${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-indexes.html
1529${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-locks.html 1531${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-locks.html
1530${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-prepared-statements.html 1532${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-prepared-statements.html
1531${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-prepared-xacts.html 1533${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-prepared-xacts.html
1532${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-roles.html 1534${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-roles.html
1533${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-rules.html 1535${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-rules.html
1534${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-settings.html 1536${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-settings.html
1535${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-shadow.html 1537${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-shadow.html
1536${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-stats.html 1538${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-stats.html
1537${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-tables.html 1539${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-tables.html
1538${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-timezone-abbrevs.html 1540${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-timezone-abbrevs.html
1539${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-timezone-names.html 1541${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-timezone-names.html
1540${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-user.html 1542${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-user.html
1541${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-views.html 1543${PG_SUBPREFIX}share/doc/postgresql/html/view-pg-views.html
1542${PG_SUBPREFIX}share/doc/postgresql/html/views-overview.html 1544${PG_SUBPREFIX}share/doc/postgresql/html/views-overview.html
1543${PG_SUBPREFIX}share/doc/postgresql/html/wal-async-commit.html 1545${PG_SUBPREFIX}share/doc/postgresql/html/wal-async-commit.html
1544${PG_SUBPREFIX}share/doc/postgresql/html/wal-configuration.html 1546${PG_SUBPREFIX}share/doc/postgresql/html/wal-configuration.html
1545${PG_SUBPREFIX}share/doc/postgresql/html/wal-internals.html 1547${PG_SUBPREFIX}share/doc/postgresql/html/wal-internals.html
1546${PG_SUBPREFIX}share/doc/postgresql/html/wal-intro.html 1548${PG_SUBPREFIX}share/doc/postgresql/html/wal-intro.html
1547${PG_SUBPREFIX}share/doc/postgresql/html/wal-reliability.html 1549${PG_SUBPREFIX}share/doc/postgresql/html/wal-reliability.html
1548${PG_SUBPREFIX}share/doc/postgresql/html/wal.html 1550${PG_SUBPREFIX}share/doc/postgresql/html/wal.html
1549${PG_SUBPREFIX}share/doc/postgresql/html/warm-standby.html 1551${PG_SUBPREFIX}share/doc/postgresql/html/warm-standby.html
1550${PG_SUBPREFIX}share/doc/postgresql/html/xaggr.html 1552${PG_SUBPREFIX}share/doc/postgresql/html/xaggr.html
1551${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-c.html 1553${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-c.html
1552${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-internal.html 1554${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-internal.html
1553${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-overload.html 1555${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-overload.html
1554${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-pl.html 1556${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-pl.html
1555${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-sql.html 1557${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-sql.html
1556${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-volatility.html 1558${PG_SUBPREFIX}share/doc/postgresql/html/xfunc-volatility.html
1557${PG_SUBPREFIX}share/doc/postgresql/html/xfunc.html 1559${PG_SUBPREFIX}share/doc/postgresql/html/xfunc.html
1558${PG_SUBPREFIX}share/doc/postgresql/html/xindex.html 1560${PG_SUBPREFIX}share/doc/postgresql/html/xindex.html
1559${PG_SUBPREFIX}share/doc/postgresql/html/xml2.html 1561${PG_SUBPREFIX}share/doc/postgresql/html/xml2.html
1560${PG_SUBPREFIX}share/doc/postgresql/html/xoper-optimization.html 1562${PG_SUBPREFIX}share/doc/postgresql/html/xoper-optimization.html
1561${PG_SUBPREFIX}share/doc/postgresql/html/xoper.html 1563${PG_SUBPREFIX}share/doc/postgresql/html/xoper.html
1562${PG_SUBPREFIX}share/doc/postgresql/html/xplang-install.html 1564${PG_SUBPREFIX}share/doc/postgresql/html/xplang-install.html
1563${PG_SUBPREFIX}share/doc/postgresql/html/xplang.html 1565${PG_SUBPREFIX}share/doc/postgresql/html/xplang.html
1564${PG_SUBPREFIX}share/doc/postgresql/html/xtypes.html 1566${PG_SUBPREFIX}share/doc/postgresql/html/xtypes.html
1565${PG_SUBPREFIX}share/locale/af/LC_MESSAGES/libpq.mo 1567${PG_SUBPREFIX}share/locale/af/LC_MESSAGES/libpq.mo
1566${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/initdb.mo 1568${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/initdb.mo
1567${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/libpq.mo 1569${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/libpq.mo
1568${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pg_config.mo 1570${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pg_config.mo
1569${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pg_controldata.mo 1571${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pg_controldata.mo
1570${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pg_ctl.mo 1572${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pg_ctl.mo
1571${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pg_dump.mo 1573${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pg_dump.mo
1572${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pg_resetxlog.mo 1574${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pg_resetxlog.mo
1573${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pgscripts.mo 1575${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/pgscripts.mo
1574${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/psql.mo 1576${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/psql.mo
1575${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/initdb.mo 1577${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/initdb.mo
1576${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/libpq.mo 1578${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/libpq.mo
1577${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pg_config.mo 1579${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pg_config.mo
1578${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pg_controldata.mo 1580${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pg_controldata.mo
1579${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pg_ctl.mo 1581${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pg_ctl.mo
1580${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pg_dump.mo 1582${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pg_dump.mo
1581${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pg_resetxlog.mo 1583${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pg_resetxlog.mo
1582${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pgscripts.mo 1584${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/pgscripts.mo
1583${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/psql.mo 1585${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/psql.mo
1584${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/initdb.mo 1586${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/initdb.mo
1585${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/libpq.mo 1587${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/libpq.mo
1586${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pg_config.mo 1588${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pg_config.mo
1587${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pg_controldata.mo 1589${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pg_controldata.mo
1588${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pg_ctl.mo 1590${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pg_ctl.mo
1589${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pg_dump.mo 1591${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pg_dump.mo
1590${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pg_resetxlog.mo 1592${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pg_resetxlog.mo
1591${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pgscripts.mo 1593${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/pgscripts.mo
1592${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/psql.mo 1594${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/psql.mo
1593${PG_SUBPREFIX}share/locale/fa/LC_MESSAGES/pg_controldata.mo 1595${PG_SUBPREFIX}share/locale/fa/LC_MESSAGES/pg_controldata.mo
1594${PG_SUBPREFIX}share/locale/fa/LC_MESSAGES/psql.mo 1596${PG_SUBPREFIX}share/locale/fa/LC_MESSAGES/psql.mo
1595${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/initdb.mo 1597${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/initdb.mo
1596${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/libpq.mo 1598${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/libpq.mo
1597${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pg_config.mo 1599${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pg_config.mo
1598${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pg_controldata.mo 1600${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pg_controldata.mo
1599${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pg_ctl.mo 1601${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pg_ctl.mo
1600${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pg_dump.mo 1602${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pg_dump.mo
1601${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pg_resetxlog.mo 1603${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pg_resetxlog.mo
1602${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pgscripts.mo 1604${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/pgscripts.mo
1603${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/psql.mo 1605${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/psql.mo
1604${PG_SUBPREFIX}share/locale/hr/LC_MESSAGES/libpq.mo 1606${PG_SUBPREFIX}share/locale/hr/LC_MESSAGES/libpq.mo
1605${PG_SUBPREFIX}share/locale/hu/LC_MESSAGES/pg_controldata.mo 1607${PG_SUBPREFIX}share/locale/hu/LC_MESSAGES/pg_controldata.mo
1606${PG_SUBPREFIX}share/locale/hu/LC_MESSAGES/pg_resetxlog.mo 1608${PG_SUBPREFIX}share/locale/hu/LC_MESSAGES/pg_resetxlog.mo
1607${PG_SUBPREFIX}share/locale/hu/LC_MESSAGES/psql.mo 1609${PG_SUBPREFIX}share/locale/hu/LC_MESSAGES/psql.mo
1608${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/initdb.mo 1610${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/initdb.mo
1609${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/libpq.mo 1611${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/libpq.mo
1610${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/pg_controldata.mo 1612${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/pg_controldata.mo
1611${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/pg_dump.mo 1613${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/pg_dump.mo
1612${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/pg_resetxlog.mo 1614${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/pg_resetxlog.mo
1613${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/pgscripts.mo 1615${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/pgscripts.mo
1614${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/psql.mo 1616${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/psql.mo
1615${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/initdb.mo 1617${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/initdb.mo
1616${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/libpq.mo 1618${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/libpq.mo
1617${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pg_config.mo 1619${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pg_config.mo
1618${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pg_controldata.mo 1620${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pg_controldata.mo
1619${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pg_ctl.mo 1621${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pg_ctl.mo
1620${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pg_dump.mo 1622${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pg_dump.mo
1621${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pg_resetxlog.mo 1623${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pg_resetxlog.mo
1622${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pgscripts.mo 1624${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/pgscripts.mo
1623${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/psql.mo 1625${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/psql.mo
1624${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/libpq.mo 1626${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/libpq.mo
1625${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/pg_config.mo 1627${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/pg_config.mo
1626${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/pg_controldata.mo 1628${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/pg_controldata.mo
1627${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/pg_dump.mo 1629${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/pg_dump.mo
1628${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/pg_resetxlog.mo 1630${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/pg_resetxlog.mo
1629${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/psql.mo 1631${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/psql.mo
1630${PG_SUBPREFIX}share/locale/pl/LC_MESSAGES/initdb.mo 1632${PG_SUBPREFIX}share/locale/pl/LC_MESSAGES/initdb.mo
1631${PG_SUBPREFIX}share/locale/pl/LC_MESSAGES/libpq.mo 1633${PG_SUBPREFIX}share/locale/pl/LC_MESSAGES/libpq.mo
1632${PG_SUBPREFIX}share/locale/pl/LC_MESSAGES/pg_config.mo 1634${PG_SUBPREFIX}share/locale/pl/LC_MESSAGES/pg_config.mo
1633${PG_SUBPREFIX}share/locale/pl/LC_MESSAGES/pg_controldata.mo 1635${PG_SUBPREFIX}share/locale/pl/LC_MESSAGES/pg_controldata.mo
1634${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/initdb.mo 1636${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/initdb.mo
1635${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/libpq.mo 1637${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/libpq.mo
1636${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pg_config.mo 1638${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pg_config.mo
1637${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pg_controldata.mo 1639${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pg_controldata.mo
1638${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pg_ctl.mo 1640${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pg_ctl.mo
1639${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pg_dump.mo 1641${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pg_dump.mo
1640${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pg_resetxlog.mo 1642${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pg_resetxlog.mo
1641${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pgscripts.mo 1643${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/pgscripts.mo
1642${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/psql.mo 1644${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/psql.mo
1643${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/initdb.mo 1645${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/initdb.mo
1644${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pg_config.mo 1646${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pg_config.mo
1645${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pg_controldata.mo 1647${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pg_controldata.mo
1646${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pg_ctl.mo 1648${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pg_ctl.mo
1647${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pg_dump.mo 1649${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pg_dump.mo
1648${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pg_resetxlog.mo 1650${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pg_resetxlog.mo
1649${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pgscripts.mo 1651${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/pgscripts.mo
1650${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/psql.mo 1652${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/psql.mo
1651${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/initdb.mo 1653${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/initdb.mo
1652${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/libpq.mo 1654${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/libpq.mo
1653${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pg_config.mo 1655${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pg_config.mo
1654${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pg_controldata.mo 1656${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pg_controldata.mo
1655${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pg_ctl.mo 1657${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pg_ctl.mo
1656${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pg_dump.mo 1658${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pg_dump.mo
1657${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pg_resetxlog.mo 1659${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pg_resetxlog.mo
1658${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pgscripts.mo 1660${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/pgscripts.mo
1659${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/psql.mo 1661${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/psql.mo
1660${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/initdb.mo 1662${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/initdb.mo
1661${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/libpq.mo 1663${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/libpq.mo
1662${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/pg_controldata.mo 1664${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/pg_controldata.mo
1663${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/pg_ctl.mo 1665${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/pg_ctl.mo
1664${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/pg_dump.mo 1666${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/pg_dump.mo
1665${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/pg_resetxlog.mo 1667${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/pg_resetxlog.mo
1666${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/pgscripts.mo 1668${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/pgscripts.mo
1667${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/psql.mo 1669${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/psql.mo
1668${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/initdb.mo 1670${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/initdb.mo
1669${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/libpq.mo 1671${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/libpq.mo
1670${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pg_config.mo 1672${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pg_config.mo
1671${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pg_controldata.mo 1673${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pg_controldata.mo
1672${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pg_ctl.mo 1674${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pg_ctl.mo
1673${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pg_dump.mo 1675${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pg_dump.mo
1674${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pg_resetxlog.mo 1676${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pg_resetxlog.mo
1675${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pgscripts.mo 1677${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/pgscripts.mo
1676${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/psql.mo 1678${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/psql.mo
1677${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/initdb.mo 1679${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/initdb.mo
1678${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/libpq.mo 1680${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/libpq.mo
1679${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pg_config.mo 1681${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pg_config.mo
1680${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pg_controldata.mo 1682${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pg_controldata.mo
1681${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pg_ctl.mo 1683${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pg_ctl.mo
1682${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pg_dump.mo 1684${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pg_dump.mo
1683${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pg_resetxlog.mo 1685${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pg_resetxlog.mo
1684${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pgscripts.mo 1686${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/pgscripts.mo
1685${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/psql.mo 1687${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/psql.mo
1686${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/initdb.mo 1688${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/initdb.mo
1687${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/libpq.mo 1689${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/libpq.mo
1688${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/pg_config.mo 1690${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/pg_config.mo
1689${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/pg_controldata.mo 1691${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/pg_controldata.mo
1690${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/pg_ctl.mo 1692${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/pg_ctl.mo
1691${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/pg_resetxlog.mo 1693${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/pg_resetxlog.mo
1692${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/pgscripts.mo 1694${PG_SUBPREFIX}share/locale/ta/LC_MESSAGES/pgscripts.mo
1693${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/initdb.mo 1695${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/initdb.mo
1694${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/libpq.mo 1696${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/libpq.mo
1695${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pg_config.mo 1697${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pg_config.mo
1696${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pg_controldata.mo 1698${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pg_controldata.mo
1697${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pg_ctl.mo 1699${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pg_ctl.mo
1698${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pg_dump.mo 1700${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pg_dump.mo
1699${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pg_resetxlog.mo 1701${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pg_resetxlog.mo
1700${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pgscripts.mo 1702${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/pgscripts.mo
1701${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/psql.mo 1703${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/psql.mo
1702${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/initdb.mo 1704${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/initdb.mo
1703${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/libpq.mo 1705${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/libpq.mo
1704${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pg_config.mo 1706${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pg_config.mo
1705${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pg_controldata.mo 1707${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pg_controldata.mo
1706${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pg_ctl.mo 1708${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pg_ctl.mo
1707${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pg_dump.mo 1709${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pg_dump.mo
1708${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pg_resetxlog.mo 1710${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pg_resetxlog.mo
1709${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pgscripts.mo 1711${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/pgscripts.mo
1710${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/psql.mo 1712${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/psql.mo
1711${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/initdb.mo 1713${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/initdb.mo
1712${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/libpq.mo 1714${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/libpq.mo
1713${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pg_config.mo 1715${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pg_config.mo
1714${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pg_controldata.mo 1716${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pg_controldata.mo
1715${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pg_ctl.mo 1717${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pg_ctl.mo
1716${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pg_dump.mo 1718${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pg_dump.mo
1717${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pg_resetxlog.mo 1719${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pg_resetxlog.mo
1718${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pgscripts.mo 1720${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/pgscripts.mo
1719${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/psql.mo 1721${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/psql.mo
1720${PG_SUBPREFIX}share/postgresql/pg_service.conf.sample 1722${PG_SUBPREFIX}share/postgresql/pg_service.conf.sample
1721${PG_SUBPREFIX}share/postgresql/psqlrc.sample 1723${PG_SUBPREFIX}share/postgresql/psqlrc.sample
1722${PG_DIRRM_SUBPREFIX} 1724${PG_DIRRM_SUBPREFIX}
1723@dirrm ${PG_SUBPREFIX}share/postgresql 1725@dirrm ${PG_SUBPREFIX}share/postgresql
1724@dirrm ${PG_SUBPREFIX}share/doc/postgresql/html 1726@dirrm ${PG_SUBPREFIX}share/doc/postgresql/html
1725@dirrm ${PG_SUBPREFIX}share/doc/postgresql/TODO.detail 1727@dirrm ${PG_SUBPREFIX}share/doc/postgresql/TODO.detail
1726@dirrm ${PG_SUBPREFIX}share/doc/postgresql 1728@dirrm ${PG_SUBPREFIX}share/doc/postgresql
1727@dirrm ${PG_SUBPREFIX}include/postgresql/server/utils 1729@dirrm ${PG_SUBPREFIX}include/postgresql/server/utils
1728@dirrm ${PG_SUBPREFIX}include/postgresql/server/tsearch/dicts 1730@dirrm ${PG_SUBPREFIX}include/postgresql/server/tsearch/dicts
1729@dirrm ${PG_SUBPREFIX}include/postgresql/server/tsearch 1731@dirrm ${PG_SUBPREFIX}include/postgresql/server/tsearch
1730@dirrm ${PG_SUBPREFIX}include/postgresql/server/tcop 1732@dirrm ${PG_SUBPREFIX}include/postgresql/server/tcop
1731@dirrm ${PG_SUBPREFIX}include/postgresql/server/storage 1733@dirrm ${PG_SUBPREFIX}include/postgresql/server/storage
1732@dirrm ${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer 1734@dirrm ${PG_SUBPREFIX}include/postgresql/server/snowball/libstemmer
1733@dirrm ${PG_SUBPREFIX}include/postgresql/server/snowball 1735@dirrm ${PG_SUBPREFIX}include/postgresql/server/snowball
1734@dirrm ${PG_SUBPREFIX}include/postgresql/server/rewrite 1736@dirrm ${PG_SUBPREFIX}include/postgresql/server/rewrite
1735@dirrm ${PG_SUBPREFIX}include/postgresql/server/regex 1737@dirrm ${PG_SUBPREFIX}include/postgresql/server/regex
1736@dirrm ${PG_SUBPREFIX}include/postgresql/server/postmaster 1738@dirrm ${PG_SUBPREFIX}include/postgresql/server/postmaster
1737@dirrm ${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/sys 1739@dirrm ${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc/sys
1738@dirrm ${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc 1740@dirrm ${PG_SUBPREFIX}include/postgresql/server/port/win32_msvc
1739@dirrm ${PG_SUBPREFIX}include/postgresql/server/port/win32/sys 1741@dirrm ${PG_SUBPREFIX}include/postgresql/server/port/win32/sys
1740@dirrm ${PG_SUBPREFIX}include/postgresql/server/port/win32/netinet 1742@dirrm ${PG_SUBPREFIX}include/postgresql/server/port/win32/netinet
1741@dirrm ${PG_SUBPREFIX}include/postgresql/server/port/win32/arpa 1743@dirrm ${PG_SUBPREFIX}include/postgresql/server/port/win32/arpa
1742@dirrm ${PG_SUBPREFIX}include/postgresql/server/port/win32 1744@dirrm ${PG_SUBPREFIX}include/postgresql/server/port/win32
1743@dirrm ${PG_SUBPREFIX}include/postgresql/server/port 1745@dirrm ${PG_SUBPREFIX}include/postgresql/server/port
1744@dirrm ${PG_SUBPREFIX}include/postgresql/server/parser 1746@dirrm ${PG_SUBPREFIX}include/postgresql/server/parser
1745@dirrm ${PG_SUBPREFIX}include/postgresql/server/optimizer 1747@dirrm ${PG_SUBPREFIX}include/postgresql/server/optimizer
1746@dirrm ${PG_SUBPREFIX}include/postgresql/server/nodes 1748@dirrm ${PG_SUBPREFIX}include/postgresql/server/nodes
1747@dirrm ${PG_SUBPREFIX}include/postgresql/server/mb 1749@dirrm ${PG_SUBPREFIX}include/postgresql/server/mb
1748@dirrm ${PG_SUBPREFIX}include/postgresql/server/libpq 1750@dirrm ${PG_SUBPREFIX}include/postgresql/server/libpq
1749@dirrm ${PG_SUBPREFIX}include/postgresql/server/lib 1751@dirrm ${PG_SUBPREFIX}include/postgresql/server/lib
1750@dirrm ${PG_SUBPREFIX}include/postgresql/server/executor 1752@dirrm ${PG_SUBPREFIX}include/postgresql/server/executor
1751@dirrm ${PG_SUBPREFIX}include/postgresql/server/commands 1753@dirrm ${PG_SUBPREFIX}include/postgresql/server/commands
1752@dirrm ${PG_SUBPREFIX}include/postgresql/server/catalog 1754@dirrm ${PG_SUBPREFIX}include/postgresql/server/catalog
1753@dirrm ${PG_SUBPREFIX}include/postgresql/server/bootstrap 1755@dirrm ${PG_SUBPREFIX}include/postgresql/server/bootstrap
1754@dirrm ${PG_SUBPREFIX}include/postgresql/server/access 1756@dirrm ${PG_SUBPREFIX}include/postgresql/server/access
1755@dirrm ${PG_SUBPREFIX}include/postgresql/server 1757@dirrm ${PG_SUBPREFIX}include/postgresql/server
1756@dirrm ${PG_SUBPREFIX}include/postgresql/internal/libpq 1758@dirrm ${PG_SUBPREFIX}include/postgresql/internal/libpq
1757@dirrm ${PG_SUBPREFIX}include/postgresql/internal 1759@dirrm ${PG_SUBPREFIX}include/postgresql/internal
1758@dirrm ${PG_SUBPREFIX}include/postgresql/informix/esql 1760@dirrm ${PG_SUBPREFIX}include/postgresql/informix/esql
1759@dirrm ${PG_SUBPREFIX}include/postgresql/informix 1761@dirrm ${PG_SUBPREFIX}include/postgresql/informix
1760@dirrm ${PG_SUBPREFIX}include/postgresql 1762@dirrm ${PG_SUBPREFIX}include/postgresql
1761@dirrm ${PG_SUBPREFIX}include/libpq 1763@dirrm ${PG_SUBPREFIX}include/libpq

cvs diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83-server/Attic/PLIST (switch to unified diff)

--- pkgsrc/databases/postgresql83-server/Attic/PLIST 2008/03/04 12:43:46 1.1.1.1
+++ pkgsrc/databases/postgresql83-server/Attic/PLIST 2008/04/05 16:39:27 1.2
@@ -1,683 +1,684 @@ @@ -1,683 +1,684 @@
1@comment $NetBSD: PLIST,v 1.1.1.1 2008/03/04 12:43:46 adam Exp $ 1@comment $NetBSD: PLIST,v 1.2 2008/04/05 16:39:27 adam Exp $
2${PG_SUBPREFIX}bin/postgres 2${PG_SUBPREFIX}bin/postgres
3${PG_SUBPREFIX}bin/postmaster 3${PG_SUBPREFIX}bin/postmaster
4${PG_SUBPREFIX}lib/postgresql/ascii_and_mic.la 4${PG_SUBPREFIX}lib/postgresql/ascii_and_mic.la
5${PG_SUBPREFIX}lib/postgresql/cyrillic_and_mic.la 5${PG_SUBPREFIX}lib/postgresql/cyrillic_and_mic.la
6${PG_SUBPREFIX}lib/postgresql/euc_cn_and_mic.la 6${PG_SUBPREFIX}lib/postgresql/euc_cn_and_mic.la
7${PG_SUBPREFIX}lib/postgresql/euc_jis_2004_and_shift_jis_2004.la 7${PG_SUBPREFIX}lib/postgresql/euc_jis_2004_and_shift_jis_2004.la
8${PG_SUBPREFIX}lib/postgresql/euc_jp_and_sjis.la 8${PG_SUBPREFIX}lib/postgresql/euc_jp_and_sjis.la
9${PG_SUBPREFIX}lib/postgresql/euc_kr_and_mic.la 9${PG_SUBPREFIX}lib/postgresql/euc_kr_and_mic.la
10${PG_SUBPREFIX}lib/postgresql/euc_tw_and_big5.la 10${PG_SUBPREFIX}lib/postgresql/euc_tw_and_big5.la
11${PG_SUBPREFIX}lib/postgresql/latin2_and_win1250.la 11${PG_SUBPREFIX}lib/postgresql/latin2_and_win1250.la
12${PG_SUBPREFIX}lib/postgresql/latin_and_mic.la 12${PG_SUBPREFIX}lib/postgresql/latin_and_mic.la
13${PG_SUBPREFIX}lib/postgresql/libdict_snowball.la 13${PG_SUBPREFIX}lib/postgresql/libdict_snowball.la
14${PG_SUBPREFIX}lib/postgresql/plpgsql.la 14${PG_SUBPREFIX}lib/postgresql/plpgsql.la
15${PG_SUBPREFIX}lib/postgresql/utf8_and_ascii.la 15${PG_SUBPREFIX}lib/postgresql/utf8_and_ascii.la
16${PG_SUBPREFIX}lib/postgresql/utf8_and_big5.la 16${PG_SUBPREFIX}lib/postgresql/utf8_and_big5.la
17${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_jis_2004.la 17${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_jis_2004.la
18${PG_SUBPREFIX}lib/postgresql/utf8_and_cyrillic.la 18${PG_SUBPREFIX}lib/postgresql/utf8_and_cyrillic.la
19${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_cn.la 19${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_cn.la
20${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_jp.la 20${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_jp.la
21${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_kr.la 21${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_kr.la
22${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_tw.la 22${PG_SUBPREFIX}lib/postgresql/utf8_and_euc_tw.la
23${PG_SUBPREFIX}lib/postgresql/utf8_and_gb18030.la 23${PG_SUBPREFIX}lib/postgresql/utf8_and_gb18030.la
24${PG_SUBPREFIX}lib/postgresql/utf8_and_gbk.la 24${PG_SUBPREFIX}lib/postgresql/utf8_and_gbk.la
25${PG_SUBPREFIX}lib/postgresql/utf8_and_iso8859.la 25${PG_SUBPREFIX}lib/postgresql/utf8_and_iso8859.la
26${PG_SUBPREFIX}lib/postgresql/utf8_and_iso8859_1.la 26${PG_SUBPREFIX}lib/postgresql/utf8_and_iso8859_1.la
27${PG_SUBPREFIX}lib/postgresql/utf8_and_johab.la 27${PG_SUBPREFIX}lib/postgresql/utf8_and_johab.la
28${PG_SUBPREFIX}lib/postgresql/utf8_and_shift_jis_2004.la 28${PG_SUBPREFIX}lib/postgresql/utf8_and_shift_jis_2004.la
29${PG_SUBPREFIX}lib/postgresql/utf8_and_sjis.la 29${PG_SUBPREFIX}lib/postgresql/utf8_and_sjis.la
30${PG_SUBPREFIX}lib/postgresql/utf8_and_uhc.la 30${PG_SUBPREFIX}lib/postgresql/utf8_and_uhc.la
31${PG_SUBPREFIX}lib/postgresql/utf8_and_win.la 31${PG_SUBPREFIX}lib/postgresql/utf8_and_win.la
32${PG_SUBPREFIX}share/examples/rc.d/pgsql 32${PG_SUBPREFIX}share/examples/rc.d/pgsql
33${PG_SUBPREFIX}share/locale/af/LC_MESSAGES/postgres.mo 33${PG_SUBPREFIX}share/locale/af/LC_MESSAGES/postgres.mo
34${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/postgres.mo 34${PG_SUBPREFIX}share/locale/cs/LC_MESSAGES/postgres.mo
35${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/postgres.mo 35${PG_SUBPREFIX}share/locale/de/LC_MESSAGES/postgres.mo
36${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/postgres.mo 36${PG_SUBPREFIX}share/locale/es/LC_MESSAGES/postgres.mo
37${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/postgres.mo 37${PG_SUBPREFIX}share/locale/fr/LC_MESSAGES/postgres.mo
38${PG_SUBPREFIX}share/locale/hr/LC_MESSAGES/postgres.mo 38${PG_SUBPREFIX}share/locale/hr/LC_MESSAGES/postgres.mo
39${PG_SUBPREFIX}share/locale/hu/LC_MESSAGES/postgres.mo 39${PG_SUBPREFIX}share/locale/hu/LC_MESSAGES/postgres.mo
40${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/postgres.mo 40${PG_SUBPREFIX}share/locale/it/LC_MESSAGES/postgres.mo
41${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/postgres.mo 41${PG_SUBPREFIX}share/locale/ko/LC_MESSAGES/postgres.mo
42${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/postgres.mo 42${PG_SUBPREFIX}share/locale/nb/LC_MESSAGES/postgres.mo
43${PG_SUBPREFIX}share/locale/nl/LC_MESSAGES/postgres.mo 43${PG_SUBPREFIX}share/locale/nl/LC_MESSAGES/postgres.mo
 44${PG_SUBPREFIX}share/locale/pl/LC_MESSAGES/postgres.mo
44${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/postgres.mo 45${PG_SUBPREFIX}share/locale/pt_BR/LC_MESSAGES/postgres.mo
45${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/postgres.mo 46${PG_SUBPREFIX}share/locale/ro/LC_MESSAGES/postgres.mo
46${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/postgres.mo 47${PG_SUBPREFIX}share/locale/ru/LC_MESSAGES/postgres.mo
47${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/postgres.mo 48${PG_SUBPREFIX}share/locale/sk/LC_MESSAGES/postgres.mo
48${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/postgres.mo 49${PG_SUBPREFIX}share/locale/sl/LC_MESSAGES/postgres.mo
49${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/postgres.mo 50${PG_SUBPREFIX}share/locale/sv/LC_MESSAGES/postgres.mo
50${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/postgres.mo 51${PG_SUBPREFIX}share/locale/tr/LC_MESSAGES/postgres.mo
51${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/postgres.mo 52${PG_SUBPREFIX}share/locale/zh_CN/LC_MESSAGES/postgres.mo
52${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/postgres.mo 53${PG_SUBPREFIX}share/locale/zh_TW/LC_MESSAGES/postgres.mo
53${PG_SUBPREFIX}share/postgresql/conversion_create.sql 54${PG_SUBPREFIX}share/postgresql/conversion_create.sql
54${PG_SUBPREFIX}share/postgresql/information_schema.sql 55${PG_SUBPREFIX}share/postgresql/information_schema.sql
55${PG_SUBPREFIX}share/postgresql/pg_hba.conf.sample 56${PG_SUBPREFIX}share/postgresql/pg_hba.conf.sample
56${PG_SUBPREFIX}share/postgresql/pg_ident.conf.sample 57${PG_SUBPREFIX}share/postgresql/pg_ident.conf.sample
57${PG_SUBPREFIX}share/postgresql/postgres.bki 58${PG_SUBPREFIX}share/postgresql/postgres.bki
58${PG_SUBPREFIX}share/postgresql/postgres.description 59${PG_SUBPREFIX}share/postgresql/postgres.description
59${PG_SUBPREFIX}share/postgresql/postgres.shdescription 60${PG_SUBPREFIX}share/postgresql/postgres.shdescription
60${PG_SUBPREFIX}share/postgresql/postgresql.conf.sample 61${PG_SUBPREFIX}share/postgresql/postgresql.conf.sample
61${PG_SUBPREFIX}share/postgresql/recovery.conf.sample 62${PG_SUBPREFIX}share/postgresql/recovery.conf.sample
62${PG_SUBPREFIX}share/postgresql/sql_features.txt 63${PG_SUBPREFIX}share/postgresql/sql_features.txt
63${PG_SUBPREFIX}share/postgresql/snowball_create.sql 64${PG_SUBPREFIX}share/postgresql/snowball_create.sql
64${PG_SUBPREFIX}share/postgresql/system_views.sql 65${PG_SUBPREFIX}share/postgresql/system_views.sql
65${PG_SUBPREFIX}share/postgresql/timezone/Africa/Abidjan 66${PG_SUBPREFIX}share/postgresql/timezone/Africa/Abidjan
66${PG_SUBPREFIX}share/postgresql/timezone/Africa/Accra 67${PG_SUBPREFIX}share/postgresql/timezone/Africa/Accra
67${PG_SUBPREFIX}share/postgresql/timezone/Africa/Addis_Ababa 68${PG_SUBPREFIX}share/postgresql/timezone/Africa/Addis_Ababa
68${PG_SUBPREFIX}share/postgresql/timezone/Africa/Algiers 69${PG_SUBPREFIX}share/postgresql/timezone/Africa/Algiers
69${PG_SUBPREFIX}share/postgresql/timezone/Africa/Asmara 70${PG_SUBPREFIX}share/postgresql/timezone/Africa/Asmara
70${PG_SUBPREFIX}share/postgresql/timezone/Africa/Asmera 71${PG_SUBPREFIX}share/postgresql/timezone/Africa/Asmera
71${PG_SUBPREFIX}share/postgresql/timezone/Africa/Bamako 72${PG_SUBPREFIX}share/postgresql/timezone/Africa/Bamako
72${PG_SUBPREFIX}share/postgresql/timezone/Africa/Bangui 73${PG_SUBPREFIX}share/postgresql/timezone/Africa/Bangui
73${PG_SUBPREFIX}share/postgresql/timezone/Africa/Banjul 74${PG_SUBPREFIX}share/postgresql/timezone/Africa/Banjul
74${PG_SUBPREFIX}share/postgresql/timezone/Africa/Bissau 75${PG_SUBPREFIX}share/postgresql/timezone/Africa/Bissau
75${PG_SUBPREFIX}share/postgresql/timezone/Africa/Blantyre 76${PG_SUBPREFIX}share/postgresql/timezone/Africa/Blantyre
76${PG_SUBPREFIX}share/postgresql/timezone/Africa/Brazzaville 77${PG_SUBPREFIX}share/postgresql/timezone/Africa/Brazzaville
77${PG_SUBPREFIX}share/postgresql/timezone/Africa/Bujumbura 78${PG_SUBPREFIX}share/postgresql/timezone/Africa/Bujumbura
78${PG_SUBPREFIX}share/postgresql/timezone/Africa/Cairo 79${PG_SUBPREFIX}share/postgresql/timezone/Africa/Cairo
79${PG_SUBPREFIX}share/postgresql/timezone/Africa/Casablanca 80${PG_SUBPREFIX}share/postgresql/timezone/Africa/Casablanca
80${PG_SUBPREFIX}share/postgresql/timezone/Africa/Ceuta 81${PG_SUBPREFIX}share/postgresql/timezone/Africa/Ceuta
81${PG_SUBPREFIX}share/postgresql/timezone/Africa/Conakry 82${PG_SUBPREFIX}share/postgresql/timezone/Africa/Conakry
82${PG_SUBPREFIX}share/postgresql/timezone/Africa/Dakar 83${PG_SUBPREFIX}share/postgresql/timezone/Africa/Dakar
83${PG_SUBPREFIX}share/postgresql/timezone/Africa/Dar_es_Salaam 84${PG_SUBPREFIX}share/postgresql/timezone/Africa/Dar_es_Salaam
84${PG_SUBPREFIX}share/postgresql/timezone/Africa/Djibouti 85${PG_SUBPREFIX}share/postgresql/timezone/Africa/Djibouti
85${PG_SUBPREFIX}share/postgresql/timezone/Africa/Douala 86${PG_SUBPREFIX}share/postgresql/timezone/Africa/Douala
86${PG_SUBPREFIX}share/postgresql/timezone/Africa/El_Aaiun 87${PG_SUBPREFIX}share/postgresql/timezone/Africa/El_Aaiun
87${PG_SUBPREFIX}share/postgresql/timezone/Africa/Freetown 88${PG_SUBPREFIX}share/postgresql/timezone/Africa/Freetown
88${PG_SUBPREFIX}share/postgresql/timezone/Africa/Gaborone 89${PG_SUBPREFIX}share/postgresql/timezone/Africa/Gaborone
89${PG_SUBPREFIX}share/postgresql/timezone/Africa/Harare 90${PG_SUBPREFIX}share/postgresql/timezone/Africa/Harare
90${PG_SUBPREFIX}share/postgresql/timezone/Africa/Johannesburg 91${PG_SUBPREFIX}share/postgresql/timezone/Africa/Johannesburg
91${PG_SUBPREFIX}share/postgresql/timezone/Africa/Kampala 92${PG_SUBPREFIX}share/postgresql/timezone/Africa/Kampala
92${PG_SUBPREFIX}share/postgresql/timezone/Africa/Khartoum 93${PG_SUBPREFIX}share/postgresql/timezone/Africa/Khartoum
93${PG_SUBPREFIX}share/postgresql/timezone/Africa/Kigali 94${PG_SUBPREFIX}share/postgresql/timezone/Africa/Kigali
94${PG_SUBPREFIX}share/postgresql/timezone/Africa/Kinshasa 95${PG_SUBPREFIX}share/postgresql/timezone/Africa/Kinshasa
95${PG_SUBPREFIX}share/postgresql/timezone/Africa/Lagos 96${PG_SUBPREFIX}share/postgresql/timezone/Africa/Lagos
96${PG_SUBPREFIX}share/postgresql/timezone/Africa/Libreville 97${PG_SUBPREFIX}share/postgresql/timezone/Africa/Libreville
97${PG_SUBPREFIX}share/postgresql/timezone/Africa/Lome 98${PG_SUBPREFIX}share/postgresql/timezone/Africa/Lome
98${PG_SUBPREFIX}share/postgresql/timezone/Africa/Luanda 99${PG_SUBPREFIX}share/postgresql/timezone/Africa/Luanda
99${PG_SUBPREFIX}share/postgresql/timezone/Africa/Lubumbashi 100${PG_SUBPREFIX}share/postgresql/timezone/Africa/Lubumbashi
100${PG_SUBPREFIX}share/postgresql/timezone/Africa/Lusaka 101${PG_SUBPREFIX}share/postgresql/timezone/Africa/Lusaka
101${PG_SUBPREFIX}share/postgresql/timezone/Africa/Malabo 102${PG_SUBPREFIX}share/postgresql/timezone/Africa/Malabo
102${PG_SUBPREFIX}share/postgresql/timezone/Africa/Maputo 103${PG_SUBPREFIX}share/postgresql/timezone/Africa/Maputo
103${PG_SUBPREFIX}share/postgresql/timezone/Africa/Maseru 104${PG_SUBPREFIX}share/postgresql/timezone/Africa/Maseru
104${PG_SUBPREFIX}share/postgresql/timezone/Africa/Mbabane 105${PG_SUBPREFIX}share/postgresql/timezone/Africa/Mbabane
105${PG_SUBPREFIX}share/postgresql/timezone/Africa/Mogadishu 106${PG_SUBPREFIX}share/postgresql/timezone/Africa/Mogadishu
106${PG_SUBPREFIX}share/postgresql/timezone/Africa/Monrovia 107${PG_SUBPREFIX}share/postgresql/timezone/Africa/Monrovia
107${PG_SUBPREFIX}share/postgresql/timezone/Africa/Nairobi 108${PG_SUBPREFIX}share/postgresql/timezone/Africa/Nairobi
108${PG_SUBPREFIX}share/postgresql/timezone/Africa/Ndjamena 109${PG_SUBPREFIX}share/postgresql/timezone/Africa/Ndjamena
109${PG_SUBPREFIX}share/postgresql/timezone/Africa/Niamey 110${PG_SUBPREFIX}share/postgresql/timezone/Africa/Niamey
110${PG_SUBPREFIX}share/postgresql/timezone/Africa/Nouakchott 111${PG_SUBPREFIX}share/postgresql/timezone/Africa/Nouakchott
111${PG_SUBPREFIX}share/postgresql/timezone/Africa/Ouagadougou 112${PG_SUBPREFIX}share/postgresql/timezone/Africa/Ouagadougou
112${PG_SUBPREFIX}share/postgresql/timezone/Africa/Porto-Novo 113${PG_SUBPREFIX}share/postgresql/timezone/Africa/Porto-Novo
113${PG_SUBPREFIX}share/postgresql/timezone/Africa/Sao_Tome 114${PG_SUBPREFIX}share/postgresql/timezone/Africa/Sao_Tome
114${PG_SUBPREFIX}share/postgresql/timezone/Africa/Timbuktu 115${PG_SUBPREFIX}share/postgresql/timezone/Africa/Timbuktu
115${PG_SUBPREFIX}share/postgresql/timezone/Africa/Tripoli 116${PG_SUBPREFIX}share/postgresql/timezone/Africa/Tripoli
116${PG_SUBPREFIX}share/postgresql/timezone/Africa/Tunis 117${PG_SUBPREFIX}share/postgresql/timezone/Africa/Tunis
117${PG_SUBPREFIX}share/postgresql/timezone/Africa/Windhoek 118${PG_SUBPREFIX}share/postgresql/timezone/Africa/Windhoek
118${PG_SUBPREFIX}share/postgresql/timezone/America/Adak 119${PG_SUBPREFIX}share/postgresql/timezone/America/Adak
119${PG_SUBPREFIX}share/postgresql/timezone/America/Anchorage 120${PG_SUBPREFIX}share/postgresql/timezone/America/Anchorage
120${PG_SUBPREFIX}share/postgresql/timezone/America/Anguilla 121${PG_SUBPREFIX}share/postgresql/timezone/America/Anguilla
121${PG_SUBPREFIX}share/postgresql/timezone/America/Antigua 122${PG_SUBPREFIX}share/postgresql/timezone/America/Antigua
122${PG_SUBPREFIX}share/postgresql/timezone/America/Araguaina 123${PG_SUBPREFIX}share/postgresql/timezone/America/Araguaina
123${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Buenos_Aires 124${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Buenos_Aires
124${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Catamarca 125${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Catamarca
125${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/ComodRivadavia 126${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/ComodRivadavia
126${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Cordoba 127${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Cordoba
127${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Jujuy 128${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Jujuy
128${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/La_Rioja 129${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/La_Rioja
129${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Mendoza 130${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Mendoza
130${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Rio_Gallegos 131${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Rio_Gallegos
131${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/San_Juan 132${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/San_Juan
132${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Tucuman 133${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Tucuman
133${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Ushuaia 134${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina/Ushuaia
134${PG_SUBPREFIX}share/postgresql/timezone/America/Aruba 135${PG_SUBPREFIX}share/postgresql/timezone/America/Aruba
135${PG_SUBPREFIX}share/postgresql/timezone/America/Asuncion 136${PG_SUBPREFIX}share/postgresql/timezone/America/Asuncion
136${PG_SUBPREFIX}share/postgresql/timezone/America/Atka 137${PG_SUBPREFIX}share/postgresql/timezone/America/Atka
137${PG_SUBPREFIX}share/postgresql/timezone/America/Atikokan 138${PG_SUBPREFIX}share/postgresql/timezone/America/Atikokan
138${PG_SUBPREFIX}share/postgresql/timezone/America/Bahia 139${PG_SUBPREFIX}share/postgresql/timezone/America/Bahia
139${PG_SUBPREFIX}share/postgresql/timezone/America/Barbados 140${PG_SUBPREFIX}share/postgresql/timezone/America/Barbados
140${PG_SUBPREFIX}share/postgresql/timezone/America/Belem 141${PG_SUBPREFIX}share/postgresql/timezone/America/Belem
141${PG_SUBPREFIX}share/postgresql/timezone/America/Belize 142${PG_SUBPREFIX}share/postgresql/timezone/America/Belize
142${PG_SUBPREFIX}share/postgresql/timezone/America/Blanc-Sablon 143${PG_SUBPREFIX}share/postgresql/timezone/America/Blanc-Sablon
143${PG_SUBPREFIX}share/postgresql/timezone/America/Boa_Vista 144${PG_SUBPREFIX}share/postgresql/timezone/America/Boa_Vista
144${PG_SUBPREFIX}share/postgresql/timezone/America/Bogota 145${PG_SUBPREFIX}share/postgresql/timezone/America/Bogota
145${PG_SUBPREFIX}share/postgresql/timezone/America/Boise 146${PG_SUBPREFIX}share/postgresql/timezone/America/Boise
146${PG_SUBPREFIX}share/postgresql/timezone/America/Buenos_Aires 147${PG_SUBPREFIX}share/postgresql/timezone/America/Buenos_Aires
147${PG_SUBPREFIX}share/postgresql/timezone/America/Cambridge_Bay 148${PG_SUBPREFIX}share/postgresql/timezone/America/Cambridge_Bay
148${PG_SUBPREFIX}share/postgresql/timezone/America/Campo_Grande 149${PG_SUBPREFIX}share/postgresql/timezone/America/Campo_Grande
149${PG_SUBPREFIX}share/postgresql/timezone/America/Cancun 150${PG_SUBPREFIX}share/postgresql/timezone/America/Cancun
150${PG_SUBPREFIX}share/postgresql/timezone/America/Caracas 151${PG_SUBPREFIX}share/postgresql/timezone/America/Caracas
151${PG_SUBPREFIX}share/postgresql/timezone/America/Catamarca 152${PG_SUBPREFIX}share/postgresql/timezone/America/Catamarca
152${PG_SUBPREFIX}share/postgresql/timezone/America/Cayenne 153${PG_SUBPREFIX}share/postgresql/timezone/America/Cayenne
153${PG_SUBPREFIX}share/postgresql/timezone/America/Cayman 154${PG_SUBPREFIX}share/postgresql/timezone/America/Cayman
154${PG_SUBPREFIX}share/postgresql/timezone/America/Chicago 155${PG_SUBPREFIX}share/postgresql/timezone/America/Chicago
155${PG_SUBPREFIX}share/postgresql/timezone/America/Chihuahua 156${PG_SUBPREFIX}share/postgresql/timezone/America/Chihuahua
156${PG_SUBPREFIX}share/postgresql/timezone/America/Coral_Harbour 157${PG_SUBPREFIX}share/postgresql/timezone/America/Coral_Harbour
157${PG_SUBPREFIX}share/postgresql/timezone/America/Cordoba 158${PG_SUBPREFIX}share/postgresql/timezone/America/Cordoba
158${PG_SUBPREFIX}share/postgresql/timezone/America/Costa_Rica 159${PG_SUBPREFIX}share/postgresql/timezone/America/Costa_Rica
159${PG_SUBPREFIX}share/postgresql/timezone/America/Cuiaba 160${PG_SUBPREFIX}share/postgresql/timezone/America/Cuiaba
160${PG_SUBPREFIX}share/postgresql/timezone/America/Curacao 161${PG_SUBPREFIX}share/postgresql/timezone/America/Curacao
161${PG_SUBPREFIX}share/postgresql/timezone/America/Danmarkshavn 162${PG_SUBPREFIX}share/postgresql/timezone/America/Danmarkshavn
162${PG_SUBPREFIX}share/postgresql/timezone/America/Dawson 163${PG_SUBPREFIX}share/postgresql/timezone/America/Dawson
163${PG_SUBPREFIX}share/postgresql/timezone/America/Dawson_Creek 164${PG_SUBPREFIX}share/postgresql/timezone/America/Dawson_Creek
164${PG_SUBPREFIX}share/postgresql/timezone/America/Denver 165${PG_SUBPREFIX}share/postgresql/timezone/America/Denver
165${PG_SUBPREFIX}share/postgresql/timezone/America/Detroit 166${PG_SUBPREFIX}share/postgresql/timezone/America/Detroit
166${PG_SUBPREFIX}share/postgresql/timezone/America/Dominica 167${PG_SUBPREFIX}share/postgresql/timezone/America/Dominica
167${PG_SUBPREFIX}share/postgresql/timezone/America/Edmonton 168${PG_SUBPREFIX}share/postgresql/timezone/America/Edmonton
168${PG_SUBPREFIX}share/postgresql/timezone/America/Eirunepe 169${PG_SUBPREFIX}share/postgresql/timezone/America/Eirunepe
169${PG_SUBPREFIX}share/postgresql/timezone/America/El_Salvador 170${PG_SUBPREFIX}share/postgresql/timezone/America/El_Salvador
170${PG_SUBPREFIX}share/postgresql/timezone/America/Ensenada 171${PG_SUBPREFIX}share/postgresql/timezone/America/Ensenada
171${PG_SUBPREFIX}share/postgresql/timezone/America/Fort_Wayne 172${PG_SUBPREFIX}share/postgresql/timezone/America/Fort_Wayne
172${PG_SUBPREFIX}share/postgresql/timezone/America/Fortaleza 173${PG_SUBPREFIX}share/postgresql/timezone/America/Fortaleza
173${PG_SUBPREFIX}share/postgresql/timezone/America/Glace_Bay 174${PG_SUBPREFIX}share/postgresql/timezone/America/Glace_Bay
174${PG_SUBPREFIX}share/postgresql/timezone/America/Godthab 175${PG_SUBPREFIX}share/postgresql/timezone/America/Godthab
175${PG_SUBPREFIX}share/postgresql/timezone/America/Goose_Bay 176${PG_SUBPREFIX}share/postgresql/timezone/America/Goose_Bay
176${PG_SUBPREFIX}share/postgresql/timezone/America/Grand_Turk 177${PG_SUBPREFIX}share/postgresql/timezone/America/Grand_Turk
177${PG_SUBPREFIX}share/postgresql/timezone/America/Grenada 178${PG_SUBPREFIX}share/postgresql/timezone/America/Grenada
178${PG_SUBPREFIX}share/postgresql/timezone/America/Guadeloupe 179${PG_SUBPREFIX}share/postgresql/timezone/America/Guadeloupe
179${PG_SUBPREFIX}share/postgresql/timezone/America/Guatemala 180${PG_SUBPREFIX}share/postgresql/timezone/America/Guatemala
180${PG_SUBPREFIX}share/postgresql/timezone/America/Guayaquil 181${PG_SUBPREFIX}share/postgresql/timezone/America/Guayaquil
181${PG_SUBPREFIX}share/postgresql/timezone/America/Guyana 182${PG_SUBPREFIX}share/postgresql/timezone/America/Guyana
182${PG_SUBPREFIX}share/postgresql/timezone/America/Halifax 183${PG_SUBPREFIX}share/postgresql/timezone/America/Halifax
183${PG_SUBPREFIX}share/postgresql/timezone/America/Havana 184${PG_SUBPREFIX}share/postgresql/timezone/America/Havana
184${PG_SUBPREFIX}share/postgresql/timezone/America/Hermosillo 185${PG_SUBPREFIX}share/postgresql/timezone/America/Hermosillo
185${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Indianapolis 186${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Indianapolis
186${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Knox 187${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Knox
187${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Marengo 188${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Marengo
188${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Petersburg 189${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Petersburg
189${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Tell_City 190${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Tell_City
190${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Vevay 191${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Vevay
191${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Vincennes 192${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Vincennes
192${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Winamac 193${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana/Winamac
193${PG_SUBPREFIX}share/postgresql/timezone/America/Indianapolis 194${PG_SUBPREFIX}share/postgresql/timezone/America/Indianapolis
194${PG_SUBPREFIX}share/postgresql/timezone/America/Inuvik 195${PG_SUBPREFIX}share/postgresql/timezone/America/Inuvik
195${PG_SUBPREFIX}share/postgresql/timezone/America/Iqaluit 196${PG_SUBPREFIX}share/postgresql/timezone/America/Iqaluit
196${PG_SUBPREFIX}share/postgresql/timezone/America/Jamaica 197${PG_SUBPREFIX}share/postgresql/timezone/America/Jamaica
197${PG_SUBPREFIX}share/postgresql/timezone/America/Jujuy 198${PG_SUBPREFIX}share/postgresql/timezone/America/Jujuy
198${PG_SUBPREFIX}share/postgresql/timezone/America/Juneau 199${PG_SUBPREFIX}share/postgresql/timezone/America/Juneau
199${PG_SUBPREFIX}share/postgresql/timezone/America/Kentucky/Louisville 200${PG_SUBPREFIX}share/postgresql/timezone/America/Kentucky/Louisville
200${PG_SUBPREFIX}share/postgresql/timezone/America/Kentucky/Monticello 201${PG_SUBPREFIX}share/postgresql/timezone/America/Kentucky/Monticello
201${PG_SUBPREFIX}share/postgresql/timezone/America/Knox_IN 202${PG_SUBPREFIX}share/postgresql/timezone/America/Knox_IN
202${PG_SUBPREFIX}share/postgresql/timezone/America/La_Paz 203${PG_SUBPREFIX}share/postgresql/timezone/America/La_Paz
203${PG_SUBPREFIX}share/postgresql/timezone/America/Lima 204${PG_SUBPREFIX}share/postgresql/timezone/America/Lima
204${PG_SUBPREFIX}share/postgresql/timezone/America/Los_Angeles 205${PG_SUBPREFIX}share/postgresql/timezone/America/Los_Angeles
205${PG_SUBPREFIX}share/postgresql/timezone/America/Louisville 206${PG_SUBPREFIX}share/postgresql/timezone/America/Louisville
206${PG_SUBPREFIX}share/postgresql/timezone/America/Maceio 207${PG_SUBPREFIX}share/postgresql/timezone/America/Maceio
207${PG_SUBPREFIX}share/postgresql/timezone/America/Managua 208${PG_SUBPREFIX}share/postgresql/timezone/America/Managua
208${PG_SUBPREFIX}share/postgresql/timezone/America/Manaus 209${PG_SUBPREFIX}share/postgresql/timezone/America/Manaus
209${PG_SUBPREFIX}share/postgresql/timezone/America/Marigot 210${PG_SUBPREFIX}share/postgresql/timezone/America/Marigot
210${PG_SUBPREFIX}share/postgresql/timezone/America/Martinique 211${PG_SUBPREFIX}share/postgresql/timezone/America/Martinique
211${PG_SUBPREFIX}share/postgresql/timezone/America/Mazatlan 212${PG_SUBPREFIX}share/postgresql/timezone/America/Mazatlan
212${PG_SUBPREFIX}share/postgresql/timezone/America/Mendoza 213${PG_SUBPREFIX}share/postgresql/timezone/America/Mendoza
213${PG_SUBPREFIX}share/postgresql/timezone/America/Menominee 214${PG_SUBPREFIX}share/postgresql/timezone/America/Menominee
214${PG_SUBPREFIX}share/postgresql/timezone/America/Merida 215${PG_SUBPREFIX}share/postgresql/timezone/America/Merida
215${PG_SUBPREFIX}share/postgresql/timezone/America/Mexico_City 216${PG_SUBPREFIX}share/postgresql/timezone/America/Mexico_City
216${PG_SUBPREFIX}share/postgresql/timezone/America/Miquelon 217${PG_SUBPREFIX}share/postgresql/timezone/America/Miquelon
217${PG_SUBPREFIX}share/postgresql/timezone/America/Moncton 218${PG_SUBPREFIX}share/postgresql/timezone/America/Moncton
218${PG_SUBPREFIX}share/postgresql/timezone/America/Monterrey 219${PG_SUBPREFIX}share/postgresql/timezone/America/Monterrey
219${PG_SUBPREFIX}share/postgresql/timezone/America/Montevideo 220${PG_SUBPREFIX}share/postgresql/timezone/America/Montevideo
220${PG_SUBPREFIX}share/postgresql/timezone/America/Montreal 221${PG_SUBPREFIX}share/postgresql/timezone/America/Montreal
221${PG_SUBPREFIX}share/postgresql/timezone/America/Montserrat 222${PG_SUBPREFIX}share/postgresql/timezone/America/Montserrat
222${PG_SUBPREFIX}share/postgresql/timezone/America/Nassau 223${PG_SUBPREFIX}share/postgresql/timezone/America/Nassau
223${PG_SUBPREFIX}share/postgresql/timezone/America/New_York 224${PG_SUBPREFIX}share/postgresql/timezone/America/New_York
224${PG_SUBPREFIX}share/postgresql/timezone/America/Nipigon 225${PG_SUBPREFIX}share/postgresql/timezone/America/Nipigon
225${PG_SUBPREFIX}share/postgresql/timezone/America/Nome 226${PG_SUBPREFIX}share/postgresql/timezone/America/Nome
226${PG_SUBPREFIX}share/postgresql/timezone/America/Noronha 227${PG_SUBPREFIX}share/postgresql/timezone/America/Noronha
227${PG_SUBPREFIX}share/postgresql/timezone/America/North_Dakota/Center 228${PG_SUBPREFIX}share/postgresql/timezone/America/North_Dakota/Center
228${PG_SUBPREFIX}share/postgresql/timezone/America/North_Dakota/New_Salem 229${PG_SUBPREFIX}share/postgresql/timezone/America/North_Dakota/New_Salem
229${PG_SUBPREFIX}share/postgresql/timezone/America/Panama 230${PG_SUBPREFIX}share/postgresql/timezone/America/Panama
230${PG_SUBPREFIX}share/postgresql/timezone/America/Pangnirtung 231${PG_SUBPREFIX}share/postgresql/timezone/America/Pangnirtung
231${PG_SUBPREFIX}share/postgresql/timezone/America/Paramaribo 232${PG_SUBPREFIX}share/postgresql/timezone/America/Paramaribo
232${PG_SUBPREFIX}share/postgresql/timezone/America/Phoenix 233${PG_SUBPREFIX}share/postgresql/timezone/America/Phoenix
233${PG_SUBPREFIX}share/postgresql/timezone/America/Port-au-Prince 234${PG_SUBPREFIX}share/postgresql/timezone/America/Port-au-Prince
234${PG_SUBPREFIX}share/postgresql/timezone/America/Port_of_Spain 235${PG_SUBPREFIX}share/postgresql/timezone/America/Port_of_Spain
235${PG_SUBPREFIX}share/postgresql/timezone/America/Porto_Acre 236${PG_SUBPREFIX}share/postgresql/timezone/America/Porto_Acre
236${PG_SUBPREFIX}share/postgresql/timezone/America/Porto_Velho 237${PG_SUBPREFIX}share/postgresql/timezone/America/Porto_Velho
237${PG_SUBPREFIX}share/postgresql/timezone/America/Puerto_Rico 238${PG_SUBPREFIX}share/postgresql/timezone/America/Puerto_Rico
238${PG_SUBPREFIX}share/postgresql/timezone/America/Rainy_River 239${PG_SUBPREFIX}share/postgresql/timezone/America/Rainy_River
239${PG_SUBPREFIX}share/postgresql/timezone/America/Rankin_Inlet 240${PG_SUBPREFIX}share/postgresql/timezone/America/Rankin_Inlet
240${PG_SUBPREFIX}share/postgresql/timezone/America/Recife 241${PG_SUBPREFIX}share/postgresql/timezone/America/Recife
241${PG_SUBPREFIX}share/postgresql/timezone/America/Regina 242${PG_SUBPREFIX}share/postgresql/timezone/America/Regina
242${PG_SUBPREFIX}share/postgresql/timezone/America/Resolute 243${PG_SUBPREFIX}share/postgresql/timezone/America/Resolute
243${PG_SUBPREFIX}share/postgresql/timezone/America/Rio_Branco 244${PG_SUBPREFIX}share/postgresql/timezone/America/Rio_Branco
244${PG_SUBPREFIX}share/postgresql/timezone/America/Rosario 245${PG_SUBPREFIX}share/postgresql/timezone/America/Rosario
245${PG_SUBPREFIX}share/postgresql/timezone/America/Santiago 246${PG_SUBPREFIX}share/postgresql/timezone/America/Santiago
246${PG_SUBPREFIX}share/postgresql/timezone/America/Santo_Domingo 247${PG_SUBPREFIX}share/postgresql/timezone/America/Santo_Domingo
247${PG_SUBPREFIX}share/postgresql/timezone/America/Sao_Paulo 248${PG_SUBPREFIX}share/postgresql/timezone/America/Sao_Paulo
248${PG_SUBPREFIX}share/postgresql/timezone/America/Scoresbysund 249${PG_SUBPREFIX}share/postgresql/timezone/America/Scoresbysund
249${PG_SUBPREFIX}share/postgresql/timezone/America/Shiprock 250${PG_SUBPREFIX}share/postgresql/timezone/America/Shiprock
250${PG_SUBPREFIX}share/postgresql/timezone/America/St_Barthelemy 251${PG_SUBPREFIX}share/postgresql/timezone/America/St_Barthelemy
251${PG_SUBPREFIX}share/postgresql/timezone/America/St_Johns 252${PG_SUBPREFIX}share/postgresql/timezone/America/St_Johns
252${PG_SUBPREFIX}share/postgresql/timezone/America/St_Kitts 253${PG_SUBPREFIX}share/postgresql/timezone/America/St_Kitts
253${PG_SUBPREFIX}share/postgresql/timezone/America/St_Lucia 254${PG_SUBPREFIX}share/postgresql/timezone/America/St_Lucia
254${PG_SUBPREFIX}share/postgresql/timezone/America/St_Thomas 255${PG_SUBPREFIX}share/postgresql/timezone/America/St_Thomas
255${PG_SUBPREFIX}share/postgresql/timezone/America/St_Vincent 256${PG_SUBPREFIX}share/postgresql/timezone/America/St_Vincent
256${PG_SUBPREFIX}share/postgresql/timezone/America/Swift_Current 257${PG_SUBPREFIX}share/postgresql/timezone/America/Swift_Current
257${PG_SUBPREFIX}share/postgresql/timezone/America/Tegucigalpa 258${PG_SUBPREFIX}share/postgresql/timezone/America/Tegucigalpa
258${PG_SUBPREFIX}share/postgresql/timezone/America/Thule 259${PG_SUBPREFIX}share/postgresql/timezone/America/Thule
259${PG_SUBPREFIX}share/postgresql/timezone/America/Thunder_Bay 260${PG_SUBPREFIX}share/postgresql/timezone/America/Thunder_Bay
260${PG_SUBPREFIX}share/postgresql/timezone/America/Tijuana 261${PG_SUBPREFIX}share/postgresql/timezone/America/Tijuana
261${PG_SUBPREFIX}share/postgresql/timezone/America/Toronto 262${PG_SUBPREFIX}share/postgresql/timezone/America/Toronto
262${PG_SUBPREFIX}share/postgresql/timezone/America/Tortola 263${PG_SUBPREFIX}share/postgresql/timezone/America/Tortola
263${PG_SUBPREFIX}share/postgresql/timezone/America/Vancouver 264${PG_SUBPREFIX}share/postgresql/timezone/America/Vancouver
264${PG_SUBPREFIX}share/postgresql/timezone/America/Virgin 265${PG_SUBPREFIX}share/postgresql/timezone/America/Virgin
265${PG_SUBPREFIX}share/postgresql/timezone/America/Whitehorse 266${PG_SUBPREFIX}share/postgresql/timezone/America/Whitehorse
266${PG_SUBPREFIX}share/postgresql/timezone/America/Winnipeg 267${PG_SUBPREFIX}share/postgresql/timezone/America/Winnipeg
267${PG_SUBPREFIX}share/postgresql/timezone/America/Yakutat 268${PG_SUBPREFIX}share/postgresql/timezone/America/Yakutat
268${PG_SUBPREFIX}share/postgresql/timezone/America/Yellowknife 269${PG_SUBPREFIX}share/postgresql/timezone/America/Yellowknife
269${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Casey 270${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Casey
270${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Davis 271${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Davis
271${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/DumontDUrville 272${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/DumontDUrville
272${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Mawson 273${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Mawson
273${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/McMurdo 274${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/McMurdo
274${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Palmer 275${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Palmer
275${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Rothera 276${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Rothera
276${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/South_Pole 277${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/South_Pole
277${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Syowa 278${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Syowa
278${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Vostok 279${PG_SUBPREFIX}share/postgresql/timezone/Antarctica/Vostok
279${PG_SUBPREFIX}share/postgresql/timezone/Arctic/Longyearbyen 280${PG_SUBPREFIX}share/postgresql/timezone/Arctic/Longyearbyen
280${PG_SUBPREFIX}share/postgresql/timezone/Asia/Aden 281${PG_SUBPREFIX}share/postgresql/timezone/Asia/Aden
281${PG_SUBPREFIX}share/postgresql/timezone/Asia/Almaty 282${PG_SUBPREFIX}share/postgresql/timezone/Asia/Almaty
282${PG_SUBPREFIX}share/postgresql/timezone/Asia/Amman 283${PG_SUBPREFIX}share/postgresql/timezone/Asia/Amman
283${PG_SUBPREFIX}share/postgresql/timezone/Asia/Anadyr 284${PG_SUBPREFIX}share/postgresql/timezone/Asia/Anadyr
284${PG_SUBPREFIX}share/postgresql/timezone/Asia/Aqtau 285${PG_SUBPREFIX}share/postgresql/timezone/Asia/Aqtau
285${PG_SUBPREFIX}share/postgresql/timezone/Asia/Aqtobe 286${PG_SUBPREFIX}share/postgresql/timezone/Asia/Aqtobe
286${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ashgabat 287${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ashgabat
287${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ashkhabad 288${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ashkhabad
288${PG_SUBPREFIX}share/postgresql/timezone/Asia/Baghdad 289${PG_SUBPREFIX}share/postgresql/timezone/Asia/Baghdad
289${PG_SUBPREFIX}share/postgresql/timezone/Asia/Bahrain 290${PG_SUBPREFIX}share/postgresql/timezone/Asia/Bahrain
290${PG_SUBPREFIX}share/postgresql/timezone/Asia/Baku 291${PG_SUBPREFIX}share/postgresql/timezone/Asia/Baku
291${PG_SUBPREFIX}share/postgresql/timezone/Asia/Bangkok 292${PG_SUBPREFIX}share/postgresql/timezone/Asia/Bangkok
292${PG_SUBPREFIX}share/postgresql/timezone/Asia/Beirut 293${PG_SUBPREFIX}share/postgresql/timezone/Asia/Beirut
293${PG_SUBPREFIX}share/postgresql/timezone/Asia/Bishkek 294${PG_SUBPREFIX}share/postgresql/timezone/Asia/Bishkek
294${PG_SUBPREFIX}share/postgresql/timezone/Asia/Brunei 295${PG_SUBPREFIX}share/postgresql/timezone/Asia/Brunei
295${PG_SUBPREFIX}share/postgresql/timezone/Asia/Calcutta 296${PG_SUBPREFIX}share/postgresql/timezone/Asia/Calcutta
296${PG_SUBPREFIX}share/postgresql/timezone/Asia/Choibalsan 297${PG_SUBPREFIX}share/postgresql/timezone/Asia/Choibalsan
297${PG_SUBPREFIX}share/postgresql/timezone/Asia/Chongqing 298${PG_SUBPREFIX}share/postgresql/timezone/Asia/Chongqing
298${PG_SUBPREFIX}share/postgresql/timezone/Asia/Chungking 299${PG_SUBPREFIX}share/postgresql/timezone/Asia/Chungking
299${PG_SUBPREFIX}share/postgresql/timezone/Asia/Colombo 300${PG_SUBPREFIX}share/postgresql/timezone/Asia/Colombo
300${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dacca 301${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dacca
301${PG_SUBPREFIX}share/postgresql/timezone/Asia/Damascus 302${PG_SUBPREFIX}share/postgresql/timezone/Asia/Damascus
302${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dhaka 303${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dhaka
303${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dili 304${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dili
304${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dubai 305${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dubai
305${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dushanbe 306${PG_SUBPREFIX}share/postgresql/timezone/Asia/Dushanbe
306${PG_SUBPREFIX}share/postgresql/timezone/Asia/Gaza 307${PG_SUBPREFIX}share/postgresql/timezone/Asia/Gaza
307${PG_SUBPREFIX}share/postgresql/timezone/Asia/Harbin 308${PG_SUBPREFIX}share/postgresql/timezone/Asia/Harbin
308${PG_SUBPREFIX}share/postgresql/timezone/Asia/Hong_Kong 309${PG_SUBPREFIX}share/postgresql/timezone/Asia/Hong_Kong
309${PG_SUBPREFIX}share/postgresql/timezone/Asia/Hovd 310${PG_SUBPREFIX}share/postgresql/timezone/Asia/Hovd
310${PG_SUBPREFIX}share/postgresql/timezone/Asia/Irkutsk 311${PG_SUBPREFIX}share/postgresql/timezone/Asia/Irkutsk
311${PG_SUBPREFIX}share/postgresql/timezone/Asia/Istanbul 312${PG_SUBPREFIX}share/postgresql/timezone/Asia/Istanbul
312${PG_SUBPREFIX}share/postgresql/timezone/Asia/Jakarta 313${PG_SUBPREFIX}share/postgresql/timezone/Asia/Jakarta
313${PG_SUBPREFIX}share/postgresql/timezone/Asia/Jayapura 314${PG_SUBPREFIX}share/postgresql/timezone/Asia/Jayapura
314${PG_SUBPREFIX}share/postgresql/timezone/Asia/Jerusalem 315${PG_SUBPREFIX}share/postgresql/timezone/Asia/Jerusalem
315${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kabul 316${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kabul
316${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kamchatka 317${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kamchatka
317${PG_SUBPREFIX}share/postgresql/timezone/Asia/Karachi 318${PG_SUBPREFIX}share/postgresql/timezone/Asia/Karachi
318${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kashgar 319${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kashgar
319${PG_SUBPREFIX}share/postgresql/timezone/Asia/Katmandu 320${PG_SUBPREFIX}share/postgresql/timezone/Asia/Katmandu
320${PG_SUBPREFIX}share/postgresql/timezone/Asia/Krasnoyarsk 321${PG_SUBPREFIX}share/postgresql/timezone/Asia/Krasnoyarsk
321${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kuala_Lumpur 322${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kuala_Lumpur
322${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kuching 323${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kuching
323${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kuwait 324${PG_SUBPREFIX}share/postgresql/timezone/Asia/Kuwait
324${PG_SUBPREFIX}share/postgresql/timezone/Asia/Macao 325${PG_SUBPREFIX}share/postgresql/timezone/Asia/Macao
325${PG_SUBPREFIX}share/postgresql/timezone/Asia/Macau 326${PG_SUBPREFIX}share/postgresql/timezone/Asia/Macau
326${PG_SUBPREFIX}share/postgresql/timezone/Asia/Magadan 327${PG_SUBPREFIX}share/postgresql/timezone/Asia/Magadan
327${PG_SUBPREFIX}share/postgresql/timezone/Asia/Makassar 328${PG_SUBPREFIX}share/postgresql/timezone/Asia/Makassar
328${PG_SUBPREFIX}share/postgresql/timezone/Asia/Manila 329${PG_SUBPREFIX}share/postgresql/timezone/Asia/Manila
329${PG_SUBPREFIX}share/postgresql/timezone/Asia/Muscat 330${PG_SUBPREFIX}share/postgresql/timezone/Asia/Muscat
330${PG_SUBPREFIX}share/postgresql/timezone/Asia/Nicosia 331${PG_SUBPREFIX}share/postgresql/timezone/Asia/Nicosia
331${PG_SUBPREFIX}share/postgresql/timezone/Asia/Novosibirsk 332${PG_SUBPREFIX}share/postgresql/timezone/Asia/Novosibirsk
332${PG_SUBPREFIX}share/postgresql/timezone/Asia/Omsk 333${PG_SUBPREFIX}share/postgresql/timezone/Asia/Omsk
333${PG_SUBPREFIX}share/postgresql/timezone/Asia/Oral 334${PG_SUBPREFIX}share/postgresql/timezone/Asia/Oral
334${PG_SUBPREFIX}share/postgresql/timezone/Asia/Phnom_Penh 335${PG_SUBPREFIX}share/postgresql/timezone/Asia/Phnom_Penh
335${PG_SUBPREFIX}share/postgresql/timezone/Asia/Pontianak 336${PG_SUBPREFIX}share/postgresql/timezone/Asia/Pontianak
336${PG_SUBPREFIX}share/postgresql/timezone/Asia/Pyongyang 337${PG_SUBPREFIX}share/postgresql/timezone/Asia/Pyongyang
337${PG_SUBPREFIX}share/postgresql/timezone/Asia/Qatar 338${PG_SUBPREFIX}share/postgresql/timezone/Asia/Qatar
338${PG_SUBPREFIX}share/postgresql/timezone/Asia/Qyzylorda 339${PG_SUBPREFIX}share/postgresql/timezone/Asia/Qyzylorda
339${PG_SUBPREFIX}share/postgresql/timezone/Asia/Rangoon 340${PG_SUBPREFIX}share/postgresql/timezone/Asia/Rangoon
340${PG_SUBPREFIX}share/postgresql/timezone/Asia/Riyadh 341${PG_SUBPREFIX}share/postgresql/timezone/Asia/Riyadh
341${PG_SUBPREFIX}share/postgresql/timezone/Asia/Riyadh87 342${PG_SUBPREFIX}share/postgresql/timezone/Asia/Riyadh87
342${PG_SUBPREFIX}share/postgresql/timezone/Asia/Riyadh88 343${PG_SUBPREFIX}share/postgresql/timezone/Asia/Riyadh88
343${PG_SUBPREFIX}share/postgresql/timezone/Asia/Riyadh89 344${PG_SUBPREFIX}share/postgresql/timezone/Asia/Riyadh89
344${PG_SUBPREFIX}share/postgresql/timezone/Asia/Saigon 345${PG_SUBPREFIX}share/postgresql/timezone/Asia/Saigon
345${PG_SUBPREFIX}share/postgresql/timezone/Asia/Sakhalin 346${PG_SUBPREFIX}share/postgresql/timezone/Asia/Sakhalin
346${PG_SUBPREFIX}share/postgresql/timezone/Asia/Samarkand 347${PG_SUBPREFIX}share/postgresql/timezone/Asia/Samarkand
347${PG_SUBPREFIX}share/postgresql/timezone/Asia/Seoul 348${PG_SUBPREFIX}share/postgresql/timezone/Asia/Seoul
348${PG_SUBPREFIX}share/postgresql/timezone/Asia/Shanghai 349${PG_SUBPREFIX}share/postgresql/timezone/Asia/Shanghai
349${PG_SUBPREFIX}share/postgresql/timezone/Asia/Singapore 350${PG_SUBPREFIX}share/postgresql/timezone/Asia/Singapore
350${PG_SUBPREFIX}share/postgresql/timezone/Asia/Taipei 351${PG_SUBPREFIX}share/postgresql/timezone/Asia/Taipei
351${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tashkent 352${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tashkent
352${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tbilisi 353${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tbilisi
353${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tehran 354${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tehran
354${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tel_Aviv 355${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tel_Aviv
355${PG_SUBPREFIX}share/postgresql/timezone/Asia/Thimbu 356${PG_SUBPREFIX}share/postgresql/timezone/Asia/Thimbu
356${PG_SUBPREFIX}share/postgresql/timezone/Asia/Thimphu 357${PG_SUBPREFIX}share/postgresql/timezone/Asia/Thimphu
357${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tokyo 358${PG_SUBPREFIX}share/postgresql/timezone/Asia/Tokyo
358${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ujung_Pandang 359${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ujung_Pandang
359${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ulaanbaatar 360${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ulaanbaatar
360${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ulan_Bator 361${PG_SUBPREFIX}share/postgresql/timezone/Asia/Ulan_Bator
361${PG_SUBPREFIX}share/postgresql/timezone/Asia/Urumqi 362${PG_SUBPREFIX}share/postgresql/timezone/Asia/Urumqi
362${PG_SUBPREFIX}share/postgresql/timezone/Asia/Vientiane 363${PG_SUBPREFIX}share/postgresql/timezone/Asia/Vientiane
363${PG_SUBPREFIX}share/postgresql/timezone/Asia/Vladivostok 364${PG_SUBPREFIX}share/postgresql/timezone/Asia/Vladivostok
364${PG_SUBPREFIX}share/postgresql/timezone/Asia/Yakutsk 365${PG_SUBPREFIX}share/postgresql/timezone/Asia/Yakutsk
365${PG_SUBPREFIX}share/postgresql/timezone/Asia/Yekaterinburg 366${PG_SUBPREFIX}share/postgresql/timezone/Asia/Yekaterinburg
366${PG_SUBPREFIX}share/postgresql/timezone/Asia/Yerevan 367${PG_SUBPREFIX}share/postgresql/timezone/Asia/Yerevan
367${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Azores 368${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Azores
368${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Bermuda 369${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Bermuda
369${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Canary 370${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Canary
370${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Cape_Verde 371${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Cape_Verde
371${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Faeroe 372${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Faeroe
372${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Faroe 373${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Faroe
373${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Jan_Mayen 374${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Jan_Mayen
374${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Madeira 375${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Madeira
375${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Reykjavik 376${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Reykjavik
376${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/South_Georgia 377${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/South_Georgia
377${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/St_Helena 378${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/St_Helena
378${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Stanley 379${PG_SUBPREFIX}share/postgresql/timezone/Atlantic/Stanley
379${PG_SUBPREFIX}share/postgresql/timezone/Australia/ACT 380${PG_SUBPREFIX}share/postgresql/timezone/Australia/ACT
380${PG_SUBPREFIX}share/postgresql/timezone/Australia/Adelaide 381${PG_SUBPREFIX}share/postgresql/timezone/Australia/Adelaide
381${PG_SUBPREFIX}share/postgresql/timezone/Australia/Brisbane 382${PG_SUBPREFIX}share/postgresql/timezone/Australia/Brisbane
382${PG_SUBPREFIX}share/postgresql/timezone/Australia/Broken_Hill 383${PG_SUBPREFIX}share/postgresql/timezone/Australia/Broken_Hill
383${PG_SUBPREFIX}share/postgresql/timezone/Australia/Canberra 384${PG_SUBPREFIX}share/postgresql/timezone/Australia/Canberra
384${PG_SUBPREFIX}share/postgresql/timezone/Australia/Currie 385${PG_SUBPREFIX}share/postgresql/timezone/Australia/Currie
385${PG_SUBPREFIX}share/postgresql/timezone/Australia/Darwin 386${PG_SUBPREFIX}share/postgresql/timezone/Australia/Darwin
386${PG_SUBPREFIX}share/postgresql/timezone/Australia/Eucla 387${PG_SUBPREFIX}share/postgresql/timezone/Australia/Eucla
387${PG_SUBPREFIX}share/postgresql/timezone/Australia/Hobart 388${PG_SUBPREFIX}share/postgresql/timezone/Australia/Hobart
388${PG_SUBPREFIX}share/postgresql/timezone/Australia/LHI 389${PG_SUBPREFIX}share/postgresql/timezone/Australia/LHI
389${PG_SUBPREFIX}share/postgresql/timezone/Australia/Lindeman 390${PG_SUBPREFIX}share/postgresql/timezone/Australia/Lindeman
390${PG_SUBPREFIX}share/postgresql/timezone/Australia/Lord_Howe 391${PG_SUBPREFIX}share/postgresql/timezone/Australia/Lord_Howe
391${PG_SUBPREFIX}share/postgresql/timezone/Australia/Melbourne 392${PG_SUBPREFIX}share/postgresql/timezone/Australia/Melbourne
392${PG_SUBPREFIX}share/postgresql/timezone/Australia/NSW 393${PG_SUBPREFIX}share/postgresql/timezone/Australia/NSW
393${PG_SUBPREFIX}share/postgresql/timezone/Australia/North 394${PG_SUBPREFIX}share/postgresql/timezone/Australia/North
394${PG_SUBPREFIX}share/postgresql/timezone/Australia/Perth 395${PG_SUBPREFIX}share/postgresql/timezone/Australia/Perth
395${PG_SUBPREFIX}share/postgresql/timezone/Australia/Queensland 396${PG_SUBPREFIX}share/postgresql/timezone/Australia/Queensland
396${PG_SUBPREFIX}share/postgresql/timezone/Australia/South 397${PG_SUBPREFIX}share/postgresql/timezone/Australia/South
397${PG_SUBPREFIX}share/postgresql/timezone/Australia/Sydney 398${PG_SUBPREFIX}share/postgresql/timezone/Australia/Sydney
398${PG_SUBPREFIX}share/postgresql/timezone/Australia/Tasmania 399${PG_SUBPREFIX}share/postgresql/timezone/Australia/Tasmania
399${PG_SUBPREFIX}share/postgresql/timezone/Australia/Victoria 400${PG_SUBPREFIX}share/postgresql/timezone/Australia/Victoria
400${PG_SUBPREFIX}share/postgresql/timezone/Australia/West 401${PG_SUBPREFIX}share/postgresql/timezone/Australia/West
401${PG_SUBPREFIX}share/postgresql/timezone/Australia/Yancowinna 402${PG_SUBPREFIX}share/postgresql/timezone/Australia/Yancowinna
402${PG_SUBPREFIX}share/postgresql/timezone/Brazil/Acre 403${PG_SUBPREFIX}share/postgresql/timezone/Brazil/Acre
403${PG_SUBPREFIX}share/postgresql/timezone/Brazil/DeNoronha 404${PG_SUBPREFIX}share/postgresql/timezone/Brazil/DeNoronha
404${PG_SUBPREFIX}share/postgresql/timezone/Brazil/East 405${PG_SUBPREFIX}share/postgresql/timezone/Brazil/East
405${PG_SUBPREFIX}share/postgresql/timezone/Brazil/West 406${PG_SUBPREFIX}share/postgresql/timezone/Brazil/West
406${PG_SUBPREFIX}share/postgresql/timezone/CET 407${PG_SUBPREFIX}share/postgresql/timezone/CET
407${PG_SUBPREFIX}share/postgresql/timezone/CST6CDT 408${PG_SUBPREFIX}share/postgresql/timezone/CST6CDT
408${PG_SUBPREFIX}share/postgresql/timezone/Canada/Atlantic 409${PG_SUBPREFIX}share/postgresql/timezone/Canada/Atlantic
409${PG_SUBPREFIX}share/postgresql/timezone/Canada/Central 410${PG_SUBPREFIX}share/postgresql/timezone/Canada/Central
410${PG_SUBPREFIX}share/postgresql/timezone/Canada/East-Saskatchewan 411${PG_SUBPREFIX}share/postgresql/timezone/Canada/East-Saskatchewan
411${PG_SUBPREFIX}share/postgresql/timezone/Canada/Eastern 412${PG_SUBPREFIX}share/postgresql/timezone/Canada/Eastern
412${PG_SUBPREFIX}share/postgresql/timezone/Canada/Mountain 413${PG_SUBPREFIX}share/postgresql/timezone/Canada/Mountain
413${PG_SUBPREFIX}share/postgresql/timezone/Canada/Newfoundland 414${PG_SUBPREFIX}share/postgresql/timezone/Canada/Newfoundland
414${PG_SUBPREFIX}share/postgresql/timezone/Canada/Pacific 415${PG_SUBPREFIX}share/postgresql/timezone/Canada/Pacific
415${PG_SUBPREFIX}share/postgresql/timezone/Canada/Saskatchewan 416${PG_SUBPREFIX}share/postgresql/timezone/Canada/Saskatchewan
416${PG_SUBPREFIX}share/postgresql/timezone/Canada/Yukon 417${PG_SUBPREFIX}share/postgresql/timezone/Canada/Yukon
417${PG_SUBPREFIX}share/postgresql/timezone/Chile/Continental 418${PG_SUBPREFIX}share/postgresql/timezone/Chile/Continental
418${PG_SUBPREFIX}share/postgresql/timezone/Chile/EasterIsland 419${PG_SUBPREFIX}share/postgresql/timezone/Chile/EasterIsland
419${PG_SUBPREFIX}share/postgresql/timezone/Cuba 420${PG_SUBPREFIX}share/postgresql/timezone/Cuba
420${PG_SUBPREFIX}share/postgresql/timezone/EET 421${PG_SUBPREFIX}share/postgresql/timezone/EET
421${PG_SUBPREFIX}share/postgresql/timezone/EST 422${PG_SUBPREFIX}share/postgresql/timezone/EST
422${PG_SUBPREFIX}share/postgresql/timezone/EST5EDT 423${PG_SUBPREFIX}share/postgresql/timezone/EST5EDT
423${PG_SUBPREFIX}share/postgresql/timezone/Egypt 424${PG_SUBPREFIX}share/postgresql/timezone/Egypt
424${PG_SUBPREFIX}share/postgresql/timezone/Eire 425${PG_SUBPREFIX}share/postgresql/timezone/Eire
425${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT 426${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT
426${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+0 427${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+0
427${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+1 428${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+1
428${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+10 429${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+10
429${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+11 430${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+11
430${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+12 431${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+12
431${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+2 432${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+2
432${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+3 433${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+3
433${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+4 434${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+4
434${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+5 435${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+5
435${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+6 436${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+6
436${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+7 437${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+7
437${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+8 438${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+8
438${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+9 439${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT+9
439${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-0 440${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-0
440${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-1 441${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-1
441${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-10 442${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-10
442${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-11 443${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-11
443${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-12 444${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-12
444${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-13 445${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-13
445${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-14 446${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-14
446${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-2 447${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-2
447${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-3 448${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-3
448${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-4 449${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-4
449${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-5 450${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-5
450${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-6 451${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-6
451${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-7 452${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-7
452${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-8 453${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-8
453${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-9 454${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT-9
454${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT0 455${PG_SUBPREFIX}share/postgresql/timezone/Etc/GMT0
455${PG_SUBPREFIX}share/postgresql/timezone/Etc/Greenwich 456${PG_SUBPREFIX}share/postgresql/timezone/Etc/Greenwich
456${PG_SUBPREFIX}share/postgresql/timezone/Etc/UCT 457${PG_SUBPREFIX}share/postgresql/timezone/Etc/UCT
457${PG_SUBPREFIX}share/postgresql/timezone/Etc/UTC 458${PG_SUBPREFIX}share/postgresql/timezone/Etc/UTC
458${PG_SUBPREFIX}share/postgresql/timezone/Etc/Universal 459${PG_SUBPREFIX}share/postgresql/timezone/Etc/Universal
459${PG_SUBPREFIX}share/postgresql/timezone/Etc/Zulu 460${PG_SUBPREFIX}share/postgresql/timezone/Etc/Zulu
460${PG_SUBPREFIX}share/postgresql/timezone/Europe/Amsterdam 461${PG_SUBPREFIX}share/postgresql/timezone/Europe/Amsterdam
461${PG_SUBPREFIX}share/postgresql/timezone/Europe/Andorra 462${PG_SUBPREFIX}share/postgresql/timezone/Europe/Andorra
462${PG_SUBPREFIX}share/postgresql/timezone/Europe/Athens 463${PG_SUBPREFIX}share/postgresql/timezone/Europe/Athens
463${PG_SUBPREFIX}share/postgresql/timezone/Europe/Belfast 464${PG_SUBPREFIX}share/postgresql/timezone/Europe/Belfast
464${PG_SUBPREFIX}share/postgresql/timezone/Europe/Belgrade 465${PG_SUBPREFIX}share/postgresql/timezone/Europe/Belgrade
465${PG_SUBPREFIX}share/postgresql/timezone/Europe/Berlin 466${PG_SUBPREFIX}share/postgresql/timezone/Europe/Berlin
466${PG_SUBPREFIX}share/postgresql/timezone/Europe/Bratislava 467${PG_SUBPREFIX}share/postgresql/timezone/Europe/Bratislava
467${PG_SUBPREFIX}share/postgresql/timezone/Europe/Brussels 468${PG_SUBPREFIX}share/postgresql/timezone/Europe/Brussels
468${PG_SUBPREFIX}share/postgresql/timezone/Europe/Bucharest 469${PG_SUBPREFIX}share/postgresql/timezone/Europe/Bucharest
469${PG_SUBPREFIX}share/postgresql/timezone/Europe/Budapest 470${PG_SUBPREFIX}share/postgresql/timezone/Europe/Budapest
470${PG_SUBPREFIX}share/postgresql/timezone/Europe/Chisinau 471${PG_SUBPREFIX}share/postgresql/timezone/Europe/Chisinau
471${PG_SUBPREFIX}share/postgresql/timezone/Europe/Copenhagen 472${PG_SUBPREFIX}share/postgresql/timezone/Europe/Copenhagen
472${PG_SUBPREFIX}share/postgresql/timezone/Europe/Dublin 473${PG_SUBPREFIX}share/postgresql/timezone/Europe/Dublin
473${PG_SUBPREFIX}share/postgresql/timezone/Europe/Gibraltar 474${PG_SUBPREFIX}share/postgresql/timezone/Europe/Gibraltar
474${PG_SUBPREFIX}share/postgresql/timezone/Europe/Guernsey 475${PG_SUBPREFIX}share/postgresql/timezone/Europe/Guernsey
475${PG_SUBPREFIX}share/postgresql/timezone/Europe/Helsinki 476${PG_SUBPREFIX}share/postgresql/timezone/Europe/Helsinki
476${PG_SUBPREFIX}share/postgresql/timezone/Europe/Isle_of_Man 477${PG_SUBPREFIX}share/postgresql/timezone/Europe/Isle_of_Man
477${PG_SUBPREFIX}share/postgresql/timezone/Europe/Istanbul 478${PG_SUBPREFIX}share/postgresql/timezone/Europe/Istanbul
478${PG_SUBPREFIX}share/postgresql/timezone/Europe/Jersey 479${PG_SUBPREFIX}share/postgresql/timezone/Europe/Jersey
479${PG_SUBPREFIX}share/postgresql/timezone/Europe/Kaliningrad 480${PG_SUBPREFIX}share/postgresql/timezone/Europe/Kaliningrad
480${PG_SUBPREFIX}share/postgresql/timezone/Europe/Kiev 481${PG_SUBPREFIX}share/postgresql/timezone/Europe/Kiev
481${PG_SUBPREFIX}share/postgresql/timezone/Europe/Lisbon 482${PG_SUBPREFIX}share/postgresql/timezone/Europe/Lisbon
482${PG_SUBPREFIX}share/postgresql/timezone/Europe/Ljubljana 483${PG_SUBPREFIX}share/postgresql/timezone/Europe/Ljubljana
483${PG_SUBPREFIX}share/postgresql/timezone/Europe/London 484${PG_SUBPREFIX}share/postgresql/timezone/Europe/London
484${PG_SUBPREFIX}share/postgresql/timezone/Europe/Luxembourg 485${PG_SUBPREFIX}share/postgresql/timezone/Europe/Luxembourg
485${PG_SUBPREFIX}share/postgresql/timezone/Europe/Madrid 486${PG_SUBPREFIX}share/postgresql/timezone/Europe/Madrid
486${PG_SUBPREFIX}share/postgresql/timezone/Europe/Malta 487${PG_SUBPREFIX}share/postgresql/timezone/Europe/Malta
487${PG_SUBPREFIX}share/postgresql/timezone/Europe/Mariehamn 488${PG_SUBPREFIX}share/postgresql/timezone/Europe/Mariehamn
488${PG_SUBPREFIX}share/postgresql/timezone/Europe/Minsk 489${PG_SUBPREFIX}share/postgresql/timezone/Europe/Minsk
489${PG_SUBPREFIX}share/postgresql/timezone/Europe/Monaco 490${PG_SUBPREFIX}share/postgresql/timezone/Europe/Monaco
490${PG_SUBPREFIX}share/postgresql/timezone/Europe/Moscow 491${PG_SUBPREFIX}share/postgresql/timezone/Europe/Moscow
491${PG_SUBPREFIX}share/postgresql/timezone/Europe/Nicosia 492${PG_SUBPREFIX}share/postgresql/timezone/Europe/Nicosia
492${PG_SUBPREFIX}share/postgresql/timezone/Europe/Oslo 493${PG_SUBPREFIX}share/postgresql/timezone/Europe/Oslo
493${PG_SUBPREFIX}share/postgresql/timezone/Europe/Paris 494${PG_SUBPREFIX}share/postgresql/timezone/Europe/Paris
494${PG_SUBPREFIX}share/postgresql/timezone/Europe/Podgorica 495${PG_SUBPREFIX}share/postgresql/timezone/Europe/Podgorica
495${PG_SUBPREFIX}share/postgresql/timezone/Europe/Prague 496${PG_SUBPREFIX}share/postgresql/timezone/Europe/Prague
496${PG_SUBPREFIX}share/postgresql/timezone/Europe/Riga 497${PG_SUBPREFIX}share/postgresql/timezone/Europe/Riga
497${PG_SUBPREFIX}share/postgresql/timezone/Europe/Rome 498${PG_SUBPREFIX}share/postgresql/timezone/Europe/Rome
498${PG_SUBPREFIX}share/postgresql/timezone/Europe/Samara 499${PG_SUBPREFIX}share/postgresql/timezone/Europe/Samara
499${PG_SUBPREFIX}share/postgresql/timezone/Europe/San_Marino 500${PG_SUBPREFIX}share/postgresql/timezone/Europe/San_Marino
500${PG_SUBPREFIX}share/postgresql/timezone/Europe/Sarajevo 501${PG_SUBPREFIX}share/postgresql/timezone/Europe/Sarajevo
501${PG_SUBPREFIX}share/postgresql/timezone/Europe/Simferopol 502${PG_SUBPREFIX}share/postgresql/timezone/Europe/Simferopol
502${PG_SUBPREFIX}share/postgresql/timezone/Europe/Skopje 503${PG_SUBPREFIX}share/postgresql/timezone/Europe/Skopje
503${PG_SUBPREFIX}share/postgresql/timezone/Europe/Sofia 504${PG_SUBPREFIX}share/postgresql/timezone/Europe/Sofia
504${PG_SUBPREFIX}share/postgresql/timezone/Europe/Stockholm 505${PG_SUBPREFIX}share/postgresql/timezone/Europe/Stockholm
505${PG_SUBPREFIX}share/postgresql/timezone/Europe/Tallinn 506${PG_SUBPREFIX}share/postgresql/timezone/Europe/Tallinn
506${PG_SUBPREFIX}share/postgresql/timezone/Europe/Tirane 507${PG_SUBPREFIX}share/postgresql/timezone/Europe/Tirane
507${PG_SUBPREFIX}share/postgresql/timezone/Europe/Tiraspol 508${PG_SUBPREFIX}share/postgresql/timezone/Europe/Tiraspol
508${PG_SUBPREFIX}share/postgresql/timezone/Europe/Uzhgorod 509${PG_SUBPREFIX}share/postgresql/timezone/Europe/Uzhgorod
509${PG_SUBPREFIX}share/postgresql/timezone/Europe/Vaduz 510${PG_SUBPREFIX}share/postgresql/timezone/Europe/Vaduz
510${PG_SUBPREFIX}share/postgresql/timezone/Europe/Vatican 511${PG_SUBPREFIX}share/postgresql/timezone/Europe/Vatican
511${PG_SUBPREFIX}share/postgresql/timezone/Europe/Vienna 512${PG_SUBPREFIX}share/postgresql/timezone/Europe/Vienna
512${PG_SUBPREFIX}share/postgresql/timezone/Europe/Vilnius 513${PG_SUBPREFIX}share/postgresql/timezone/Europe/Vilnius
513${PG_SUBPREFIX}share/postgresql/timezone/Europe/Volgograd 514${PG_SUBPREFIX}share/postgresql/timezone/Europe/Volgograd
514${PG_SUBPREFIX}share/postgresql/timezone/Europe/Warsaw 515${PG_SUBPREFIX}share/postgresql/timezone/Europe/Warsaw
515${PG_SUBPREFIX}share/postgresql/timezone/Europe/Zagreb 516${PG_SUBPREFIX}share/postgresql/timezone/Europe/Zagreb
516${PG_SUBPREFIX}share/postgresql/timezone/Europe/Zaporozhye 517${PG_SUBPREFIX}share/postgresql/timezone/Europe/Zaporozhye
517${PG_SUBPREFIX}share/postgresql/timezone/Europe/Zurich 518${PG_SUBPREFIX}share/postgresql/timezone/Europe/Zurich
518${PG_SUBPREFIX}share/postgresql/timezone/Factory 519${PG_SUBPREFIX}share/postgresql/timezone/Factory
519${PG_SUBPREFIX}share/postgresql/timezone/GB 520${PG_SUBPREFIX}share/postgresql/timezone/GB
520${PG_SUBPREFIX}share/postgresql/timezone/GB-Eire 521${PG_SUBPREFIX}share/postgresql/timezone/GB-Eire
521${PG_SUBPREFIX}share/postgresql/timezone/GMT 522${PG_SUBPREFIX}share/postgresql/timezone/GMT
522${PG_SUBPREFIX}share/postgresql/timezone/GMT+0 523${PG_SUBPREFIX}share/postgresql/timezone/GMT+0
523${PG_SUBPREFIX}share/postgresql/timezone/GMT-0 524${PG_SUBPREFIX}share/postgresql/timezone/GMT-0
524${PG_SUBPREFIX}share/postgresql/timezone/GMT0 525${PG_SUBPREFIX}share/postgresql/timezone/GMT0
525${PG_SUBPREFIX}share/postgresql/timezone/Greenwich 526${PG_SUBPREFIX}share/postgresql/timezone/Greenwich
526${PG_SUBPREFIX}share/postgresql/timezone/HST 527${PG_SUBPREFIX}share/postgresql/timezone/HST
527${PG_SUBPREFIX}share/postgresql/timezone/Hongkong 528${PG_SUBPREFIX}share/postgresql/timezone/Hongkong
528${PG_SUBPREFIX}share/postgresql/timezone/Iceland 529${PG_SUBPREFIX}share/postgresql/timezone/Iceland
529${PG_SUBPREFIX}share/postgresql/timezone/Indian/Antananarivo 530${PG_SUBPREFIX}share/postgresql/timezone/Indian/Antananarivo
530${PG_SUBPREFIX}share/postgresql/timezone/Indian/Chagos 531${PG_SUBPREFIX}share/postgresql/timezone/Indian/Chagos
531${PG_SUBPREFIX}share/postgresql/timezone/Indian/Christmas 532${PG_SUBPREFIX}share/postgresql/timezone/Indian/Christmas
532${PG_SUBPREFIX}share/postgresql/timezone/Indian/Cocos 533${PG_SUBPREFIX}share/postgresql/timezone/Indian/Cocos
533${PG_SUBPREFIX}share/postgresql/timezone/Indian/Comoro 534${PG_SUBPREFIX}share/postgresql/timezone/Indian/Comoro
534${PG_SUBPREFIX}share/postgresql/timezone/Indian/Kerguelen 535${PG_SUBPREFIX}share/postgresql/timezone/Indian/Kerguelen
535${PG_SUBPREFIX}share/postgresql/timezone/Indian/Mahe 536${PG_SUBPREFIX}share/postgresql/timezone/Indian/Mahe
536${PG_SUBPREFIX}share/postgresql/timezone/Indian/Maldives 537${PG_SUBPREFIX}share/postgresql/timezone/Indian/Maldives
537${PG_SUBPREFIX}share/postgresql/timezone/Indian/Mauritius 538${PG_SUBPREFIX}share/postgresql/timezone/Indian/Mauritius
538${PG_SUBPREFIX}share/postgresql/timezone/Indian/Mayotte 539${PG_SUBPREFIX}share/postgresql/timezone/Indian/Mayotte
539${PG_SUBPREFIX}share/postgresql/timezone/Indian/Reunion 540${PG_SUBPREFIX}share/postgresql/timezone/Indian/Reunion
540${PG_SUBPREFIX}share/postgresql/timezone/Iran 541${PG_SUBPREFIX}share/postgresql/timezone/Iran
541${PG_SUBPREFIX}share/postgresql/timezone/Israel 542${PG_SUBPREFIX}share/postgresql/timezone/Israel
542${PG_SUBPREFIX}share/postgresql/timezone/Jamaica 543${PG_SUBPREFIX}share/postgresql/timezone/Jamaica
543${PG_SUBPREFIX}share/postgresql/timezone/Japan 544${PG_SUBPREFIX}share/postgresql/timezone/Japan
544${PG_SUBPREFIX}share/postgresql/timezone/Kwajalein 545${PG_SUBPREFIX}share/postgresql/timezone/Kwajalein
545${PG_SUBPREFIX}share/postgresql/timezone/Libya 546${PG_SUBPREFIX}share/postgresql/timezone/Libya
546${PG_SUBPREFIX}share/postgresql/timezone/MET 547${PG_SUBPREFIX}share/postgresql/timezone/MET
547${PG_SUBPREFIX}share/postgresql/timezone/MST 548${PG_SUBPREFIX}share/postgresql/timezone/MST
548${PG_SUBPREFIX}share/postgresql/timezone/MST7MDT 549${PG_SUBPREFIX}share/postgresql/timezone/MST7MDT
549${PG_SUBPREFIX}share/postgresql/timezone/Mexico/BajaNorte 550${PG_SUBPREFIX}share/postgresql/timezone/Mexico/BajaNorte
550${PG_SUBPREFIX}share/postgresql/timezone/Mexico/BajaSur 551${PG_SUBPREFIX}share/postgresql/timezone/Mexico/BajaSur
551${PG_SUBPREFIX}share/postgresql/timezone/Mexico/General 552${PG_SUBPREFIX}share/postgresql/timezone/Mexico/General
552${PG_SUBPREFIX}share/postgresql/timezone/Mideast/Riyadh87 553${PG_SUBPREFIX}share/postgresql/timezone/Mideast/Riyadh87
553${PG_SUBPREFIX}share/postgresql/timezone/Mideast/Riyadh88 554${PG_SUBPREFIX}share/postgresql/timezone/Mideast/Riyadh88
554${PG_SUBPREFIX}share/postgresql/timezone/Mideast/Riyadh89 555${PG_SUBPREFIX}share/postgresql/timezone/Mideast/Riyadh89
555${PG_SUBPREFIX}share/postgresql/timezone/NZ 556${PG_SUBPREFIX}share/postgresql/timezone/NZ
556${PG_SUBPREFIX}share/postgresql/timezone/NZ-CHAT 557${PG_SUBPREFIX}share/postgresql/timezone/NZ-CHAT
557${PG_SUBPREFIX}share/postgresql/timezone/Navajo 558${PG_SUBPREFIX}share/postgresql/timezone/Navajo
558${PG_SUBPREFIX}share/postgresql/timezone/PRC 559${PG_SUBPREFIX}share/postgresql/timezone/PRC
559${PG_SUBPREFIX}share/postgresql/timezone/PST8PDT 560${PG_SUBPREFIX}share/postgresql/timezone/PST8PDT
560${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Apia 561${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Apia
561${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Auckland 562${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Auckland
562${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Chatham 563${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Chatham
563${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Easter 564${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Easter
564${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Efate 565${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Efate
565${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Enderbury 566${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Enderbury
566${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Fakaofo 567${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Fakaofo
567${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Fiji 568${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Fiji
568${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Funafuti 569${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Funafuti
569${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Galapagos 570${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Galapagos
570${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Gambier 571${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Gambier
571${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Guadalcanal 572${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Guadalcanal
572${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Guam 573${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Guam
573${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Honolulu 574${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Honolulu
574${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Johnston 575${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Johnston
575${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Kiritimati 576${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Kiritimati
576${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Kosrae 577${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Kosrae
577${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Kwajalein 578${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Kwajalein
578${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Majuro 579${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Majuro
579${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Marquesas 580${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Marquesas
580${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Midway 581${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Midway
581${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Nauru 582${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Nauru
582${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Niue 583${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Niue
583${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Norfolk 584${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Norfolk
584${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Noumea 585${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Noumea
585${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Pago_Pago 586${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Pago_Pago
586${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Palau 587${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Palau
587${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Pitcairn 588${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Pitcairn
588${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Ponape 589${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Ponape
589${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Port_Moresby 590${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Port_Moresby
590${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Rarotonga 591${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Rarotonga
591${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Saipan 592${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Saipan
592${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Samoa 593${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Samoa
593${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Tahiti 594${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Tahiti
594${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Tarawa 595${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Tarawa
595${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Tongatapu 596${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Tongatapu
596${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Truk 597${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Truk
597${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Wake 598${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Wake
598${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Wallis 599${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Wallis
599${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Yap 600${PG_SUBPREFIX}share/postgresql/timezone/Pacific/Yap
600${PG_SUBPREFIX}share/postgresql/timezone/Poland 601${PG_SUBPREFIX}share/postgresql/timezone/Poland
601${PG_SUBPREFIX}share/postgresql/timezone/Portugal 602${PG_SUBPREFIX}share/postgresql/timezone/Portugal
602${PG_SUBPREFIX}share/postgresql/timezone/ROC 603${PG_SUBPREFIX}share/postgresql/timezone/ROC
603${PG_SUBPREFIX}share/postgresql/timezone/ROK 604${PG_SUBPREFIX}share/postgresql/timezone/ROK
604${PG_SUBPREFIX}share/postgresql/timezone/Singapore 605${PG_SUBPREFIX}share/postgresql/timezone/Singapore
605${PG_SUBPREFIX}share/postgresql/timezone/Turkey 606${PG_SUBPREFIX}share/postgresql/timezone/Turkey
606${PG_SUBPREFIX}share/postgresql/timezone/UCT 607${PG_SUBPREFIX}share/postgresql/timezone/UCT
607${PG_SUBPREFIX}share/postgresql/timezone/US/Alaska 608${PG_SUBPREFIX}share/postgresql/timezone/US/Alaska
608${PG_SUBPREFIX}share/postgresql/timezone/US/Aleutian 609${PG_SUBPREFIX}share/postgresql/timezone/US/Aleutian
609${PG_SUBPREFIX}share/postgresql/timezone/US/Arizona 610${PG_SUBPREFIX}share/postgresql/timezone/US/Arizona
610${PG_SUBPREFIX}share/postgresql/timezone/US/Central 611${PG_SUBPREFIX}share/postgresql/timezone/US/Central
611${PG_SUBPREFIX}share/postgresql/timezone/US/East-Indiana 612${PG_SUBPREFIX}share/postgresql/timezone/US/East-Indiana
612${PG_SUBPREFIX}share/postgresql/timezone/US/Eastern 613${PG_SUBPREFIX}share/postgresql/timezone/US/Eastern
613${PG_SUBPREFIX}share/postgresql/timezone/US/Hawaii 614${PG_SUBPREFIX}share/postgresql/timezone/US/Hawaii
614${PG_SUBPREFIX}share/postgresql/timezone/US/Indiana-Starke 615${PG_SUBPREFIX}share/postgresql/timezone/US/Indiana-Starke
615${PG_SUBPREFIX}share/postgresql/timezone/US/Michigan 616${PG_SUBPREFIX}share/postgresql/timezone/US/Michigan
616${PG_SUBPREFIX}share/postgresql/timezone/US/Mountain 617${PG_SUBPREFIX}share/postgresql/timezone/US/Mountain
617${PG_SUBPREFIX}share/postgresql/timezone/US/Pacific 618${PG_SUBPREFIX}share/postgresql/timezone/US/Pacific
618${PG_SUBPREFIX}share/postgresql/timezone/US/Pacific-New 619${PG_SUBPREFIX}share/postgresql/timezone/US/Pacific-New
619${PG_SUBPREFIX}share/postgresql/timezone/US/Samoa 620${PG_SUBPREFIX}share/postgresql/timezone/US/Samoa
620${PG_SUBPREFIX}share/postgresql/timezone/UTC 621${PG_SUBPREFIX}share/postgresql/timezone/UTC
621${PG_SUBPREFIX}share/postgresql/timezone/Universal 622${PG_SUBPREFIX}share/postgresql/timezone/Universal
622${PG_SUBPREFIX}share/postgresql/timezone/W-SU 623${PG_SUBPREFIX}share/postgresql/timezone/W-SU
623${PG_SUBPREFIX}share/postgresql/timezone/WET 624${PG_SUBPREFIX}share/postgresql/timezone/WET
624${PG_SUBPREFIX}share/postgresql/timezone/Zulu 625${PG_SUBPREFIX}share/postgresql/timezone/Zulu
625${PG_SUBPREFIX}share/postgresql/timezone/posixrules 626${PG_SUBPREFIX}share/postgresql/timezone/posixrules
626${PG_SUBPREFIX}share/postgresql/timezonesets/Africa.txt 627${PG_SUBPREFIX}share/postgresql/timezonesets/Africa.txt
627${PG_SUBPREFIX}share/postgresql/timezonesets/America.txt 628${PG_SUBPREFIX}share/postgresql/timezonesets/America.txt
628${PG_SUBPREFIX}share/postgresql/timezonesets/Antarctica.txt 629${PG_SUBPREFIX}share/postgresql/timezonesets/Antarctica.txt
629${PG_SUBPREFIX}share/postgresql/timezonesets/Asia.txt 630${PG_SUBPREFIX}share/postgresql/timezonesets/Asia.txt
630${PG_SUBPREFIX}share/postgresql/timezonesets/Atlantic.txt 631${PG_SUBPREFIX}share/postgresql/timezonesets/Atlantic.txt
631${PG_SUBPREFIX}share/postgresql/timezonesets/Australia 632${PG_SUBPREFIX}share/postgresql/timezonesets/Australia
632${PG_SUBPREFIX}share/postgresql/timezonesets/Australia.txt 633${PG_SUBPREFIX}share/postgresql/timezonesets/Australia.txt
633${PG_SUBPREFIX}share/postgresql/timezonesets/Default 634${PG_SUBPREFIX}share/postgresql/timezonesets/Default
634${PG_SUBPREFIX}share/postgresql/timezonesets/Etc.txt 635${PG_SUBPREFIX}share/postgresql/timezonesets/Etc.txt
635${PG_SUBPREFIX}share/postgresql/timezonesets/Europe.txt 636${PG_SUBPREFIX}share/postgresql/timezonesets/Europe.txt
636${PG_SUBPREFIX}share/postgresql/timezonesets/India 637${PG_SUBPREFIX}share/postgresql/timezonesets/India
637${PG_SUBPREFIX}share/postgresql/timezonesets/Indian.txt 638${PG_SUBPREFIX}share/postgresql/timezonesets/Indian.txt
638${PG_SUBPREFIX}share/postgresql/timezonesets/Pacific.txt 639${PG_SUBPREFIX}share/postgresql/timezonesets/Pacific.txt
639${PG_SUBPREFIX}share/postgresql/tsearch_data/danish.stop 640${PG_SUBPREFIX}share/postgresql/tsearch_data/danish.stop
640${PG_SUBPREFIX}share/postgresql/tsearch_data/dutch.stop 641${PG_SUBPREFIX}share/postgresql/tsearch_data/dutch.stop
641${PG_SUBPREFIX}share/postgresql/tsearch_data/english.stop 642${PG_SUBPREFIX}share/postgresql/tsearch_data/english.stop
642${PG_SUBPREFIX}share/postgresql/tsearch_data/finnish.stop 643${PG_SUBPREFIX}share/postgresql/tsearch_data/finnish.stop
643${PG_SUBPREFIX}share/postgresql/tsearch_data/french.stop 644${PG_SUBPREFIX}share/postgresql/tsearch_data/french.stop
644${PG_SUBPREFIX}share/postgresql/tsearch_data/german.stop 645${PG_SUBPREFIX}share/postgresql/tsearch_data/german.stop
645${PG_SUBPREFIX}share/postgresql/tsearch_data/hungarian.stop 646${PG_SUBPREFIX}share/postgresql/tsearch_data/hungarian.stop
646${PG_SUBPREFIX}share/postgresql/tsearch_data/hunspell_sample.affix 647${PG_SUBPREFIX}share/postgresql/tsearch_data/hunspell_sample.affix
647${PG_SUBPREFIX}share/postgresql/tsearch_data/ispell_sample.affix 648${PG_SUBPREFIX}share/postgresql/tsearch_data/ispell_sample.affix
648${PG_SUBPREFIX}share/postgresql/tsearch_data/ispell_sample.dict 649${PG_SUBPREFIX}share/postgresql/tsearch_data/ispell_sample.dict
649${PG_SUBPREFIX}share/postgresql/tsearch_data/italian.stop 650${PG_SUBPREFIX}share/postgresql/tsearch_data/italian.stop
650${PG_SUBPREFIX}share/postgresql/tsearch_data/norwegian.stop 651${PG_SUBPREFIX}share/postgresql/tsearch_data/norwegian.stop
651${PG_SUBPREFIX}share/postgresql/tsearch_data/portuguese.stop 652${PG_SUBPREFIX}share/postgresql/tsearch_data/portuguese.stop
652${PG_SUBPREFIX}share/postgresql/tsearch_data/russian.stop 653${PG_SUBPREFIX}share/postgresql/tsearch_data/russian.stop
653${PG_SUBPREFIX}share/postgresql/tsearch_data/spanish.stop 654${PG_SUBPREFIX}share/postgresql/tsearch_data/spanish.stop
654${PG_SUBPREFIX}share/postgresql/tsearch_data/swedish.stop 655${PG_SUBPREFIX}share/postgresql/tsearch_data/swedish.stop
655${PG_SUBPREFIX}share/postgresql/tsearch_data/synonym_sample.syn 656${PG_SUBPREFIX}share/postgresql/tsearch_data/synonym_sample.syn
656${PG_SUBPREFIX}share/postgresql/tsearch_data/thesaurus_sample.ths 657${PG_SUBPREFIX}share/postgresql/tsearch_data/thesaurus_sample.ths
657${PG_SUBPREFIX}share/postgresql/tsearch_data/turkish.stop 658${PG_SUBPREFIX}share/postgresql/tsearch_data/turkish.stop
658@dirrm ${PG_SUBPREFIX}share/postgresql/tsearch_data 659@dirrm ${PG_SUBPREFIX}share/postgresql/tsearch_data
659@dirrm ${PG_SUBPREFIX}share/postgresql/timezonesets 660@dirrm ${PG_SUBPREFIX}share/postgresql/timezonesets
660@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/US 661@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/US
661@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Pacific 662@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Pacific
662@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Mideast 663@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Mideast
663@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Mexico 664@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Mexico
664@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Indian 665@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Indian
665@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Europe 666@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Europe
666@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Etc 667@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Etc
667@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Chile 668@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Chile
668@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Canada 669@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Canada
669@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Brazil 670@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Brazil
670@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Australia 671@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Australia
671@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Atlantic 672@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Atlantic
672@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Asia 673@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Asia
673@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Arctic 674@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Arctic
674@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Antarctica 675@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Antarctica
675@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/America/North_Dakota 676@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/America/North_Dakota
676@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/America/Kentucky 677@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/America/Kentucky
677@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana 678@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/America/Indiana
678@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina 679@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/America/Argentina
679@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/America 680@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/America
680@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Africa 681@dirrm ${PG_SUBPREFIX}share/postgresql/timezone/Africa
681@dirrm ${PG_SUBPREFIX}share/postgresql/timezone 682@dirrm ${PG_SUBPREFIX}share/postgresql/timezone
682@comment in postgresql-client: @dirrm ${PG_SUBPREFIX}share/postgresql 683@comment in postgresql-client: @dirrm ${PG_SUBPREFIX}share/postgresql
683@dirrm ${PG_SUBPREFIX}lib/postgresql 684@dirrm ${PG_SUBPREFIX}lib/postgresql

cvs diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83/patches/Attic/patch-ab (switch to unified diff)

--- pkgsrc/databases/postgresql83/patches/Attic/patch-ab 2008/03/04 12:41:37 1.1.1.1
+++ pkgsrc/databases/postgresql83/patches/Attic/patch-ab 2008/04/05 16:39:27 1.2
@@ -1,63 +1,63 @@ @@ -1,63 +1,63 @@
1$NetBSD: patch-ab,v 1.1.1.1 2008/03/04 12:41:37 adam Exp $ 1$NetBSD: patch-ab,v 1.2 2008/04/05 16:39:27 adam Exp $
2 2
3--- configure.orig 2008-02-01 05:16:29.000000000 +0100 3--- configure.orig 2008-03-14 04:23:21.000000000 +0100
4+++ configure 4+++ configure
5@@ -1510,6 +1510,7 @@ case $host_os in 5@@ -1510,6 +1510,7 @@ case $host_os in
6 darwin*) template=darwin ;; 6 darwin*) template=darwin ;;
7 dgux*) template=dgux ;; 7 dgux*) template=dgux ;;
8 freebsd*) template=freebsd ;; 8 freebsd*) template=freebsd ;;
9+ dragonfly*) template=dragonfly ;; 9+ dragonfly*) template=dragonfly ;;
10 hpux*) template=hpux ;; 10 hpux*) template=hpux ;;
11 irix*) template=irix ;; 11 irix*) template=irix ;;
12 linux*|gnu*|k*bsd*-gnu) 12 linux*|gnu*|k*bsd*-gnu)
13@@ -5280,9 +5281,7 @@ echo "${ECHO_T}$perl_useshrplib" >&6 13@@ -5334,9 +5335,7 @@ echo "${ECHO_T}$perl_useshrplib" >&6
14  14
15 echo "$as_me:$LINENO: checking for flags to link embedded Perl" >&5 15 echo "$as_me:$LINENO: checking for flags to link embedded Perl" >&5
16 echo $ECHO_N "checking for flags to link embedded Perl... $ECHO_C" >&6 16 echo $ECHO_N "checking for flags to link embedded Perl... $ECHO_C" >&6
17-pgac_tmp1=`$PERL -MExtUtils::Embed -e ldopts` 17-pgac_tmp1=`$PERL -MExtUtils::Embed -e ldopts`
18-pgac_tmp2=`$PERL -MConfig -e 'print $Config{ccdlflags}'` 18-pgac_tmp2=`$PERL -MConfig -e 'print $Config{ccdlflags}'`
19-perl_embed_ldflags=`echo X"$pgac_tmp1" | sed "s/^X//;s%$pgac_tmp2%%"` 19-perl_embed_ldflags=`echo X"$pgac_tmp1" | sed "s/^X//;s%$pgac_tmp2%%"`
20+perl_embed_ldflags=`$PERL -MExtUtils::Embed -e ldopts` 20+perl_embed_ldflags=`$PERL -MExtUtils::Embed -e ldopts`
21 echo "$as_me:$LINENO: result: $perl_embed_ldflags" >&5 21 echo "$as_me:$LINENO: result: $perl_embed_ldflags" >&5
22 echo "${ECHO_T}$perl_embed_ldflags" >&6 22 echo "${ECHO_T}$perl_embed_ldflags" >&6
23 fi 23 fi
24@@ -24190,16 +24189,12 @@ cat >>conftest.$ac_ext <<_ACEOF 24@@ -24263,16 +24262,12 @@ cat >>conftest.$ac_ext <<_ACEOF
25 /* end confdefs.h. */ 25 /* end confdefs.h. */
26  26
27 /* Override any gcc2 internal prototype to avoid an error. */ 27 /* Override any gcc2 internal prototype to avoid an error. */
28-#ifdef __cplusplus 28-#ifdef __cplusplus
29-extern "C" 29-extern "C"
30-#endif 30-#endif
31-/* We use char because int might match the return type of a gcc2 31-/* We use char because int might match the return type of a gcc2
32- builtin and then its argument prototype would still apply. */ 32- builtin and then its argument prototype would still apply. */
33-char gettext (); 33-char gettext ();
34+#include <libintl.h> 34+#include <libintl.h>
35+ 35+
36 int 36 int
37 main () 37 main ()
38 { 38 {
39-gettext (); 39-gettext ();
40+gettext (""); 40+gettext ("");
41 ; 41 ;
42 return 0; 42 return 0;
43 } 43 }
44@@ -24245,16 +24240,12 @@ cat >>conftest.$ac_ext <<_ACEOF 44@@ -24318,16 +24313,12 @@ cat >>conftest.$ac_ext <<_ACEOF
45 /* end confdefs.h. */ 45 /* end confdefs.h. */
46  46
47 /* Override any gcc2 internal prototype to avoid an error. */ 47 /* Override any gcc2 internal prototype to avoid an error. */
48-#ifdef __cplusplus 48-#ifdef __cplusplus
49-extern "C" 49-extern "C"
50-#endif 50-#endif
51-/* We use char because int might match the return type of a gcc2 51-/* We use char because int might match the return type of a gcc2
52- builtin and then its argument prototype would still apply. */ 52- builtin and then its argument prototype would still apply. */
53-char gettext (); 53-char gettext ();
54+#include <libintl.h> 54+#include <libintl.h>
55+ 55+
56 int 56 int
57 main () 57 main ()
58 { 58 {
59-gettext (); 59-gettext ();
60+gettext (""); 60+gettext ("");
61 ; 61 ;
62 return 0; 62 return 0;
63 } 63 }

cvs diff -r1.1.1.1 -r1.2 pkgsrc/databases/postgresql83/patches/Attic/patch-ad (switch to unified diff)

--- pkgsrc/databases/postgresql83/patches/Attic/patch-ad 2008/03/04 12:41:37 1.1.1.1
+++ pkgsrc/databases/postgresql83/patches/Attic/patch-ad 2008/04/05 16:39:27 1.2
@@ -1,79 +1,78 @@ @@ -1,79 +1,78 @@
1$NetBSD: patch-ad,v 1.1.1.1 2008/03/04 12:41:37 adam Exp $ 1$NetBSD: patch-ad,v 1.2 2008/04/05 16:39:27 adam Exp $
2 2
3--- src/backend/port/dynloader/netbsd.c.orig 2007-03-26 23:44:11.000000000 +0200 3--- src/backend/port/dynloader/netbsd.c.orig 2008-04-05 10:45:52.000000000 +0200
4+++ src/backend/port/dynloader/netbsd.c 4+++ src/backend/port/dynloader/netbsd.c
5@@ -42,65 +42,30 @@ static char sccsid[] = "@(#)dl.c 5.4 (Be 5@@ -42,64 +42,30 @@ static char sccsid[] = "@(#)dl.c 5.4 (Be
6  6
7 #include "dynloader.h" 7 #include "dynloader.h"
8  8
9-static char error_message[BUFSIZ]; 9-static char error_message[BUFSIZ];
10+#ifndef HAVE_DLOPEN 10+#ifndef HAVE_DLOPEN
11  11
12 char * 12 char *
13-BSD44_derived_dlerror(void) 13-BSD44_derived_dlerror(void)
14+pg_dlerror(void) 14+pg_dlerror(void)
15 { 15 {
16- static char ret[BUFSIZ]; 16- static char ret[BUFSIZ];
17- 17-
18- strcpy(ret, error_message); 18- strcpy(ret, error_message);
19- error_message[0] = 0; 19- error_message[0] = 0;
20- return (ret[0] == 0) ? NULL : ret; 20- return (ret[0] == 0) ? NULL : ret;
21+ return "dynaloader unsupported"; 21+ return "dynaloader unsupported";
22 } 22 }
23  23
24 void * 24 void *
25-BSD44_derived_dlopen(const char *file, int num) 25-BSD44_derived_dlopen(const char *file, int num)
26+pg_dlopen(const char *file, int num) 26+pg_dlopen(const char *file, int num)
27 { 27 {
28-#if defined(__mips__) 28-#if !defined(HAVE_DLOPEN)
29- snprintf(error_message, sizeof(error_message), 29- snprintf(error_message, sizeof(error_message),
30- "dlopen (%s) not supported", file); 30- "dlopen (%s) not supported", file);
31+ elog(ERROR, "dynamic load not supported"); 31+ elog(ERROR, "dynamic load not supported");
32 return NULL; 32 return NULL;
33-#else 33-#else
34- void *vp; 34- void *vp;
35- 35-
36- if ((vp = dlopen((char *) file, num)) == NULL) 36- if ((vp = dlopen((char *) file, num)) == NULL)
37- snprintf(error_message, sizeof(error_message), 37- snprintf(error_message, sizeof(error_message),
38- "dlopen (%s) failed: %s", file, dlerror()); 38- "dlopen (%s) failed: %s", file, dlerror());
39- return vp; 39- return vp;
40-#endif 40-#endif
41 } 41 }
42  42
43 void * 43 void *
44-BSD44_derived_dlsym(void *handle, const char *name) 44-BSD44_derived_dlsym(void *handle, const char *name)
45+pg_dlsym(void *handle, const char *name) 45+pg_dlsym(void *handle, const char *name)
46 { 46 {
47-#if defined(__mips__) 47-#if !defined(HAVE_DLOPEN)
48- snprintf(error_message, sizeof(error_message), 48- snprintf(error_message, sizeof(error_message),
49- "dlsym (%s) failed", name); 49- "dlsym (%s) failed", name);
50 return NULL; 50 return NULL;
51-#elif defined(__ELF__) 51-#elif defined(__ELF__)
52- return dlsym(handle, name); 52- return dlsym(handle, name);
53-#else 53-#else
54- void *vp; 54- void *vp;
55- char buf[BUFSIZ]; 55- char buf[BUFSIZ];
56- 56-
57- if (*name != '_') 57- if (*name != '_')
58- { 58- {
59- snprintf(buf, sizeof(buf), "_%s", name); 59- snprintf(buf, sizeof(buf), "_%s", name);
60- name = buf; 60- name = buf;
61- } 61- }
62- if ((vp = dlsym(handle, (char *) name)) == NULL) 62- if ((vp = dlsym(handle, (char *) name)) == NULL)
63- snprintf(error_message, sizeof(error_message), 63- snprintf(error_message, sizeof(error_message),
64- "dlsym (%s) failed", name); 64- "dlsym (%s) failed", name);
65- return vp; 65- return vp;
66-#endif 66-#endif
67 } 67 }
68  68
69 void 69 void
70-BSD44_derived_dlclose(void *handle) 70-BSD44_derived_dlclose(void *handle)
71+pg_dlclose(void *handle) 71+pg_dlclose(void *handle)
72 { 72 {
73-#if defined(__mips__) 73-#if defined(HAVE_DLOPEN)
74-#else 
75- dlclose(handle); 74- dlclose(handle);
76-#endif 75-#endif
77 } 76 }
78+ 77+
79+#endif /* ! HAVE_DLOPEN */ 78+#endif /* ! HAVE_DLOPEN */