Mon Mar 5 14:13:19 2012 UTC ()
Changes 8.4.11:
* Require execute permission on the trigger function for CREATE TRIGGER
* Convert newlines to spaces in names written in pg_dump comments
* Fix btree index corruption from insertions concurrent with vacuuming
* Allow non-existent values for some settings in ALTER USER/DATABASE SET
* Track the OID counter correctly during WAL replay, even when it wraps around
* Fix regular expression back-references with * attached
* Fix recently-introduced memory leak in processing of inet/cidr values
* Avoid double close of file handle in syslogger on Windows
* Fix I/O-conversion-related memory leaks in plpgsql
* Improve pg_dump's handling of inherited table columns
* Fix pg_restore's direct-to-database mode for INSERT-style table data
* Fix error in contrib/intarray's int[] & int[] operator
* Fix error detection in contrib/pgcrypto's encrypt_iv() and decrypt_iv()
* Fix one-byte buffer overrun in contrib/test_parser
* Use __sync_lock_test_and_set() for spinlocks on ARM, if available
* Use -fexcess-precision=standard option when building with gcc versions that
  accept it
* Allow use of threaded Python on FreeBSD


(adam)
diff -r1.17 -r1.18 pkgsrc/databases/postgresql84/Makefile.common
diff -r1.16 -r1.17 pkgsrc/databases/postgresql84/distinfo
diff -r1.12 -r1.13 pkgsrc/databases/postgresql84-client/PLIST

cvs diff -r1.17 -r1.18 pkgsrc/databases/postgresql84/Attic/Makefile.common (switch to unified diff)

--- pkgsrc/databases/postgresql84/Attic/Makefile.common 2011/12/15 17:16:13 1.17
+++ pkgsrc/databases/postgresql84/Attic/Makefile.common 2012/03/05 14:13:19 1.18
@@ -1,106 +1,106 @@ @@ -1,106 +1,106 @@
1# $NetBSD: Makefile.common,v 1.17 2011/12/15 17:16:13 adam Exp $ 1# $NetBSD: Makefile.common,v 1.18 2012/03/05 14:13:19 adam Exp $
2# 2#
3# used by databases/postgresql84-adminpack/Makefile 3# used by databases/postgresql84-adminpack/Makefile
4# used by databases/postgresql84-client/Makefile 4# used by databases/postgresql84-client/Makefile
5# used by databases/postgresql84-dblink/Makefile 5# used by databases/postgresql84-dblink/Makefile
6# used by databases/postgresql84-pgcrypto/Makefile 6# used by databases/postgresql84-pgcrypto/Makefile
7# used by databases/postgresql84-plperl/Makefile 7# used by databases/postgresql84-plperl/Makefile
8# used by databases/postgresql84-plpython/Makefile 8# used by databases/postgresql84-plpython/Makefile
9# used by databases/postgresql84-pltcl/Makefile 9# used by databases/postgresql84-pltcl/Makefile
10# used by databases/postgresql84-server/Makefile 10# used by databases/postgresql84-server/Makefile
11# 11#
12# This Makefile fragment is included by all PostgreSQL packages built from 12# This Makefile fragment is included by all PostgreSQL packages built from
13# the main sources of the PostgreSQL distribution except jdbc-postgresql. 13# the main sources of the PostgreSQL distribution except jdbc-postgresql.
14# 14#
15# The PostgreSQL package naming scheme, aside from the obvious piecewise 15# The PostgreSQL package naming scheme, aside from the obvious piecewise
16# packages, is as follows: 16# packages, is as follows:
17# <lang>-postgresql client-side interface to PostgreSQL 17# <lang>-postgresql client-side interface to PostgreSQL
18# postgresql-<lang> server-side module for PostgreSQL backend 18# postgresql-<lang> server-side module for PostgreSQL backend
19 19
20.include "../../databases/postgresql84/Makefile.mirrors" 20.include "../../databases/postgresql84/Makefile.mirrors"
21 21
22DISTNAME= postgresql-8.4.10 22DISTNAME= postgresql-8.4.11
23CATEGORIES= databases 23CATEGORIES= databases
24MASTER_SITES= ${PGSQL_MIRRORS:=source/v${PKGVERSION_NOREV}/} 24MASTER_SITES= ${PGSQL_MIRRORS:=source/v${PKGVERSION_NOREV}/}
25EXTRACT_SUFX= .tar.bz2 25EXTRACT_SUFX= .tar.bz2
26 26
27MAINTAINER?= adam@NetBSD.org 27MAINTAINER?= adam@NetBSD.org
28HOMEPAGE= http://www.postgresql.org/ 28HOMEPAGE= http://www.postgresql.org/
29LICENSE= postgresql-license 29LICENSE= postgresql-license
30 30
31CONFLICTS+= postgresql-[0-9]* 31CONFLICTS+= postgresql-[0-9]*
32CONFLICTS+= postgresql7[0-9]-* 32CONFLICTS+= postgresql7[0-9]-*
33CONFLICTS+= postgresql8[0-3]-* 33CONFLICTS+= postgresql8[0-3]-*
34CONFLICTS+= postgresql9[0-9]-* 34CONFLICTS+= postgresql9[0-9]-*
35 35
36DISTINFO_FILE?= ${.CURDIR}/../postgresql84/distinfo 36DISTINFO_FILE?= ${.CURDIR}/../postgresql84/distinfo
37COMMON_FILESDIR?= ${.CURDIR}/../postgresql84/files 37COMMON_FILESDIR?= ${.CURDIR}/../postgresql84/files
38PATCHDIR?= ${.CURDIR}/../postgresql84/patches 38PATCHDIR?= ${.CURDIR}/../postgresql84/patches
39 39
40USE_PKGLOCALEDIR= yes 40USE_PKGLOCALEDIR= yes
41USE_TOOLS+= bison gmake lex msgfmt 41USE_TOOLS+= bison gmake lex msgfmt
42PKG_SYSCONFSUBDIR= postgresql 42PKG_SYSCONFSUBDIR= postgresql
43 43
44.include "../../mk/bsd.prefs.mk" 44.include "../../mk/bsd.prefs.mk"
45 45
46PG_TEMPLATE.SunOS= solaris 46PG_TEMPLATE.SunOS= solaris
47PG_TEMPLATE.IRIX= irix5 47PG_TEMPLATE.IRIX= irix5
48.if !defined(PG_TEMPLATE.${OPSYS}) 48.if !defined(PG_TEMPLATE.${OPSYS})
49PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS} 49PG_TEMPLATE.${OPSYS}= ${LOWER_OPSYS}
50.endif 50.endif
51 51
52GNU_CONFIGURE= yes 52GNU_CONFIGURE= yes
53CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} 53CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR}
54CONFIGURE_ARGS+= --datadir=${PREFIX}/share/postgresql 54CONFIGURE_ARGS+= --datadir=${PREFIX}/share/postgresql
55CONFIGURE_ARGS+= --localedir=${PREFIX}/${PKGLOCALEDIR}/locale 55CONFIGURE_ARGS+= --localedir=${PREFIX}/${PKGLOCALEDIR}/locale
56CONFIGURE_ARGS+= --with-template=${PG_TEMPLATE.${OPSYS}} 56CONFIGURE_ARGS+= --with-template=${PG_TEMPLATE.${OPSYS}}
57 57
58CONFIGURE_ARGS+= --enable-nls 58CONFIGURE_ARGS+= --enable-nls
59CONFIGURE_ARGS+= --without-perl 59CONFIGURE_ARGS+= --without-perl
60CONFIGURE_ARGS+= --without-python 60CONFIGURE_ARGS+= --without-python
61CONFIGURE_ARGS+= --without-readline 61CONFIGURE_ARGS+= --without-readline
62CONFIGURE_ARGS+= --without-tcl 62CONFIGURE_ARGS+= --without-tcl
63CONFIGURE_ARGS+= --without-zlib 63CONFIGURE_ARGS+= --without-zlib
64 64
65# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block. 65# PGSQL_BLCKSZ is the size in bytes of a PostgreSQL disk page or block.
66# This also limits the size of a tuple. The valid values are powers 66# This also limits the size of a tuple. The valid values are powers
67# of 2 up to 32768, and the default size is 8196. Please don't change 67# of 2 up to 32768, and the default size is 8196. Please don't change
68# this value unless you know what you are doing. 68# this value unless you know what you are doing.
69BUILD_DEFS+= PGSQL_BLCKSZ 69BUILD_DEFS+= PGSQL_BLCKSZ
70.if defined(PGSQL_BLCKSZ) 70.if defined(PGSQL_BLCKSZ)
71CONFIGURE_ARGS+= --with-blocksize=${PGSQL_BLCKSZ} 71CONFIGURE_ARGS+= --with-blocksize=${PGSQL_BLCKSZ}
72.endif 72.endif
73 73
74# PostgreSQL explicitly forbids any use of -ffast-math 74# PostgreSQL explicitly forbids any use of -ffast-math
75BUILDLINK_TRANSFORM+= rm:-ffast-math 75BUILDLINK_TRANSFORM+= rm:-ffast-math
76 76
77# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl 77# USE_LIBLTDL is "yes" or "no" depending on whether we're using libltdl
78# to provide "dlopen" functionality for the PostgreSQL backend. 78# to provide "dlopen" functionality for the PostgreSQL backend.
79.if ${OPSYS} == "Interix" 79.if ${OPSYS} == "Interix"
80USE_LIBLTDL?= yes 80USE_LIBLTDL?= yes
81.endif 81.endif
82USE_LIBLTDL?= no 82USE_LIBLTDL?= no
83 83
84.include "../../devel/gettext-lib/buildlink3.mk" 84.include "../../devel/gettext-lib/buildlink3.mk"
85LIBS.SunOS+= -lintl 85LIBS.SunOS+= -lintl
86 86
87.if !defined(META_PACKAGE) 87.if !defined(META_PACKAGE)
88post-extract: 88post-extract:
89. if !empty(USE_LIBLTDL:M[yY][eE][sS]) 89. if !empty(USE_LIBLTDL:M[yY][eE][sS])
90 cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \ 90 cp -f ${COMMON_FILESDIR}/dynloader-ltdl.h \
91 ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.h 91 ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.h
92 ${ECHO} "static int dummy = 0;" \ 92 ${ECHO} "static int dummy = 0;" \
93 > ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.c 93 > ${WRKSRC}/src/backend/port/dynloader/${PG_TEMPLATE.${OPSYS}:Q}.c
94. endif 94. endif
95 touch ${WRKSRC}/src/template/dragonfly 95 touch ${WRKSRC}/src/template/dragonfly
96 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \ 96 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.c \
97 ${WRKSRC}/src/backend/port/dynloader/dragonfly.c 97 ${WRKSRC}/src/backend/port/dynloader/dragonfly.c
98 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \ 98 cp ${WRKSRC}/src/backend/port/dynloader/freebsd.h \
99 ${WRKSRC}/src/backend/port/dynloader/dragonfly.h 99 ${WRKSRC}/src/backend/port/dynloader/dragonfly.h
100 cp ${WRKSRC}/src/include/port/freebsd.h \ 100 cp ${WRKSRC}/src/include/port/freebsd.h \
101 ${WRKSRC}/src/include/port/dragonfly.h 101 ${WRKSRC}/src/include/port/dragonfly.h
102 cp ${WRKSRC}/src/makefiles/Makefile.freebsd \ 102 cp ${WRKSRC}/src/makefiles/Makefile.freebsd \
103 ${WRKSRC}/src/makefiles/Makefile.dragonfly 103 ${WRKSRC}/src/makefiles/Makefile.dragonfly
104.endif 104.endif
105 105
106.include "../../databases/postgresql84/options.mk" 106.include "../../databases/postgresql84/options.mk"

cvs diff -r1.16 -r1.17 pkgsrc/databases/postgresql84/Attic/distinfo (switch to unified diff)

--- pkgsrc/databases/postgresql84/Attic/distinfo 2011/12/15 17:16:13 1.16
+++ pkgsrc/databases/postgresql84/Attic/distinfo 2012/03/05 14:13:19 1.17
@@ -1,17 +1,17 @@ @@ -1,17 +1,17 @@
1$NetBSD: distinfo,v 1.16 2011/12/15 17:16:13 adam Exp $ 1$NetBSD: distinfo,v 1.17 2012/03/05 14:13:19 adam Exp $
2 2
3SHA1 (postgresql-8.4.10.tar.bz2) = 31202e47fd2274b3a846d98c961cd7281d1798e8 3SHA1 (postgresql-8.4.11.tar.bz2) = ce9581b9f03bd884417b988ec317ce2ed06bb15f
4RMD160 (postgresql-8.4.10.tar.bz2) = ce5961033fc05b9e862cfef3c164d8faed19ce89 4RMD160 (postgresql-8.4.11.tar.bz2) = 85b4be0884ca11855eb0dbc1541403e7baf7c0aa
5Size (postgresql-8.4.10.tar.bz2) = 14481565 bytes 5Size (postgresql-8.4.11.tar.bz2) = 14502434 bytes
6SHA1 (patch-aa) = 72437773d67939c8d8c8e9a99caf430590fd726f 6SHA1 (patch-aa) = 72437773d67939c8d8c8e9a99caf430590fd726f
7SHA1 (patch-ab) = aa46d88c8a72edaf95880de48474ea484d6d2bf5 7SHA1 (patch-ab) = aa46d88c8a72edaf95880de48474ea484d6d2bf5
8SHA1 (patch-ac) = 0b82797d0b80bdd1e9b5f3de4989fe3848adf6cb 8SHA1 (patch-ac) = 0b82797d0b80bdd1e9b5f3de4989fe3848adf6cb
9SHA1 (patch-ad) = fb75df841bbcc25e840ed9c2fed59232d7189200 9SHA1 (patch-ad) = fb75df841bbcc25e840ed9c2fed59232d7189200
10SHA1 (patch-af) = a73769cf05223d2ee06249c9e69c85038c2cd936 10SHA1 (patch-af) = a73769cf05223d2ee06249c9e69c85038c2cd936
11SHA1 (patch-ag) = 85dac95e40efc16270885087f868aeb76e1b9214 11SHA1 (patch-ag) = 85dac95e40efc16270885087f868aeb76e1b9214
12SHA1 (patch-ah) = 25102dce1b9b22385353af23500636fb18e3bf64 12SHA1 (patch-ah) = 25102dce1b9b22385353af23500636fb18e3bf64
13SHA1 (patch-ai) = 0d6f536f7593e362ec216eafa73c718ad6bed8fc 13SHA1 (patch-ai) = 0d6f536f7593e362ec216eafa73c718ad6bed8fc
14SHA1 (patch-ao) = b098032408fc951865966710554667a249db6320 14SHA1 (patch-ao) = b098032408fc951865966710554667a249db6320
15SHA1 (patch-ba) = 2cc374fdf4351a4c03ecad30fb99d2aff2cf0bdf 15SHA1 (patch-ba) = 2cc374fdf4351a4c03ecad30fb99d2aff2cf0bdf
16SHA1 (patch-bb) = 22859530d2694cf4c347f5e4c02eff0483d536d1 16SHA1 (patch-bb) = 22859530d2694cf4c347f5e4c02eff0483d536d1
17SHA1 (patch-src_pl_plperl_plperl.h) = 8d448cc8e0e0dbc4d15dad369d3ca7a796874ac2 17SHA1 (patch-src_pl_plperl_plperl.h) = 8d448cc8e0e0dbc4d15dad369d3ca7a796874ac2

cvs diff -r1.12 -r1.13 pkgsrc/databases/postgresql84-client/Attic/PLIST (switch to unified diff)

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