diff options
author | jlam <jlam@pkgsrc.org> | 2000-05-20 19:32:18 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2000-05-20 19:32:18 +0000 |
commit | aa73a794dd4e728fd41f98ca0deb596bb5dceed7 (patch) | |
tree | cad585ff92c5abaa21bcd57061838b9aeca2c402 /databases | |
parent | 9a969d709c41320cebec71d8ea8fa31b959b407f (diff) | |
download | pkgsrc-aa73a794dd4e728fd41f98ca0deb596bb5dceed7.tar.gz |
Update postgresql to 7.0. Also closes PR#8616. Changes from 6.5.3:
A HUGE number of bug/performance fixes and minor enhancements.
Foreign Keys
Foreign keys are now implemented, with the exception of PARTIAL
MATCH foreign keys. Many users have been asking for this
feature, and we are pleased to offer it.
Optimizer Overhaul
Continuing on work started a year ago, the optimizer has been
overhauled, allowing improved query execution and better
performance with less memory usage.
Updated psql
psql, our interactive terminal monitor, has been updated with a
variety of new features. See the psql manual page for details.
Upcoming Features
In 7.1 or 7.2, we plan to have outer joins, storage for very
long rows, and a write-ahead logging system.
A dump/restore using pg_dump is required for those wishing to migrate
data from any previous release. For those upgrading from 6.5.*, you
can use pg_upgrade to upgrade to this release.
Diffstat (limited to 'databases')
30 files changed, 964 insertions, 1287 deletions
diff --git a/databases/postgresql/Makefile b/databases/postgresql/Makefile index 3a9d7caed16..ca4580880b7 100644 --- a/databases/postgresql/Makefile +++ b/databases/postgresql/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.48 2000/04/09 03:53:16 jlam Exp $ +# $NetBSD: Makefile,v 1.49 2000/05/20 19:32:18 jlam Exp $ # FreeBSD Id: Makefile,v 1.22 1997/12/24 01:21:37 alex Exp # BUILD_DEPENDS+= ${LOCALBASE}/bin/bison:../../devel/bison -DEPENDS+= ncurses>=4.2:../../devel/ncurses DEPENDS+= readline-*:../../devel/readline MAKEFILE= GNUmakefile @@ -37,9 +36,7 @@ PLIST_SUBST= PGUSER=${PGUSER} CONFIGURE_ARGS+= --without-perl --without-odbc --without-tcl CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" -CPPFLAGS+= -I${LOCALBASE}/include # ncurses.h, readline.h - -INSTALL_TARGET= install install-man +CPPFLAGS+= -I${LOCALBASE}/include # readline.h pre-install: @case "X${PGUSER}" in \ @@ -64,10 +61,9 @@ pre-install: PKG_PREFIX=${PREFIX} ${SH} ${INSTALL_FILE} ${PKGNAME} PRE-INSTALL post-install: - cd ${PREFIX}; ${MV} include/pgsql/libpq++.H include/pgsql/libpq++.h cd ${PREFIX}/include/pgsql; ${RMDIR} -p port/netbsd -.for PROG in ecpg pg_dump pg_id pg_passwd pg_version postgres psql +.for PROG in ecpg pg_dump pg_encoding pg_id pg_passwd pg_version postgres psql strip ${PREFIX}/bin/${PROG} .endfor ${SED} -e 's|@PATH@|${PATH}|g' \ @@ -85,13 +81,22 @@ post-install: ${INSTALL} -c -o root -g ${PGGROUP} -m 554 \ ${WRKDIR}/pgsql.sh ${PREFIX}/etc/rc.d/pgsql.sh + ${CAT} ${FILESDIR}/exclude ${FILESDIR}/man.tcl ${FILESDIR}/man.tk \ + | ${SED} "s,^#.*,," \ + | ${GTAR} zxCXf ${PREFIX}/man - \ + ${WRKDIR}/${DISTNAME}/doc/man.tar.gz + + ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/postgresql cd ${WRKDIR}/${DISTNAME}/doc; \ ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${MAKE_FLAGS} all cd ${WRKDIR}/${DISTNAME}/doc; ${INSTALL_DATA} \ - FAQ FAQ_DEV README.fsync TODO bug.template internals.ps \ - admin.ps.gz programmer.ps.gz tutorial.ps.gz user.ps.gz \ + FAQ FAQ_DEV README.Charsets README.fsync README.inet \ + README.locale README.mb README.mb.jp TODO admin.ps.gz \ + bug.template internals.ps programmer.ps.gz tutorial.ps.gz \ + user.ps.gz \ ${PREFIX}/share/doc/postgresql ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/doc/postgresql + ${CHOWN} -R ${SHAREOWN}:${SHAREGRP} ${PREFIX}/share/doc/html/postgresql PKG_PREFIX=${PREFIX} ${SH} ${INSTALL_FILE} ${PKGNAME} POST-INSTALL diff --git a/databases/postgresql/Makefile.common b/databases/postgresql/Makefile.common index 4e83ba72817..c3b420fac19 100644 --- a/databases/postgresql/Makefile.common +++ b/databases/postgresql/Makefile.common @@ -1,6 +1,7 @@ -# $NetBSD: Makefile.common,v 1.1 2000/03/18 17:43:16 jlam Exp $ +# $NetBSD: Makefile.common,v 1.2 2000/05/20 19:32:18 jlam Exp $ -DISTNAME= postgresql-6.5.3 +DISTNAME= postgresql-${PG_VERS} +PG_VERS= 7.0 WRKSRC= ${WRKDIR}/${DISTNAME}/src CATEGORIES= databases MASTER_SITES= ftp://ftp.PostgreSQL.org/pub/ \ @@ -12,8 +13,8 @@ HOMEPAGE= http://www.PostgreSQL.ORG/ BUILD_DEPENDS+= ${LOCALBASE}/bin/autoreconf:../../devel/autoconf -USE_GMAKE= yes -GNU_CONFIGURE= yes +USE_GMAKE= # defined +GNU_CONFIGURE= # defined FILESDIR= ${.CURDIR}/../../databases/postgresql/files PATCHDIR= ${.CURDIR}/../../databases/postgresql/patches @@ -23,12 +24,21 @@ PATCHDIR= ${.CURDIR}/../../databases/postgresql/patches CONFIGURE_ARGS+= --with-template="${LOWER_OPSYS}" \ --enable-locale +# PG_MB_ENCODING may be set to any of: +# +# SQL_ASCII, EUC_JP, EUC_CN, EUC_KR, EUC_TW, UNICODE, MULE_INTERNAL, +# LATIN1, LATIN2, LATIN3, LATIN4, LATIN5, KOI8, WIN, ALT +# +# This variable controls the language encoding on the backend process. + +.if defined(PG_MB_ENCODING) +CONFIGURE_ARGS+= --enable-multibyte=${PG_MB_ENCODING} +.else +CONFIGURE_ARGS+= --enable-multibyte # accept default +.endif + post-extract: - @${CP} ${FILESDIR}/Makefile.custom ${WRKSRC} - @${LN} -sf bsd.c ${WRKSRC}/backend/port/dynloader/netbsd.c - @${LN} -sf bsd.h ${WRKSRC}/backend/port/dynloader/netbsd.h - @${LN} -sf bsd.h ${WRKSRC}/include/port/netbsd.h - @${LN} -sf Makefile.bsd ${WRKSRC}/makefiles/Makefile.netbsd + ${CP} ${FILESDIR}/Makefile.custom ${WRKSRC} pre-configure: cd ${WRKSRC}; ${LOCALBASE}/bin/autoreconf diff --git a/databases/postgresql/files/Makefile.custom b/databases/postgresql/files/Makefile.custom index a72e6f4454e..f33b59b6f7b 100644 --- a/databases/postgresql/files/Makefile.custom +++ b/databases/postgresql/files/Makefile.custom @@ -4,17 +4,17 @@ # sub-Makefile in the build tree. Makefiles for shared libraries include # Makefile.global then Makefile.shlib. # -# $NetBSD: Makefile.custom,v 1.3 2000/04/09 03:53:17 jlam Exp $ +# $NetBSD: Makefile.custom,v 1.4 2000/05/20 19:32:19 jlam Exp $ # Where the database templates are stored # -TEMPLATEDIR= $(POSTGRESDIR)/share/postgresql +TEMPLATEDIR= $(POSTGRESDIR)/share/postgresql # installation directory for documentation -PGDOCS= $(POSTGRESDIR)/share/doc/postgresql +PGDOCS= $(POSTGRESDIR)/share/doc/html/postgresql # Where the header files necessary to build frontend programs get installed. -HEADERDIR= $(POSTGRESDIR)/include/pgsql +HEADERDIR= $(POSTGRESDIR)/include/pgsql # Where the ODBC installation-wide configuration file gets installed. ODBCINST= etc diff --git a/databases/postgresql/files/exclude b/databases/postgresql/files/exclude new file mode 100644 index 00000000000..54dea442922 --- /dev/null +++ b/databases/postgresql/files/exclude @@ -0,0 +1,4 @@ +# $NetBSD: exclude,v 1.1 2000/05/20 19:32:20 jlam Exp $ +# +man1/pgaccess.1 +man1/pgadmin.1 diff --git a/databases/postgresql/files/man.tcl b/databases/postgresql/files/man.tcl new file mode 100644 index 00000000000..33531307e7f --- /dev/null +++ b/databases/postgresql/files/man.tcl @@ -0,0 +1,3 @@ +# $NetBSD: man.tcl,v 1.1 2000/05/20 19:32:21 jlam Exp $ +# +man1/pgtclsh.1 diff --git a/databases/postgresql/files/man.tk b/databases/postgresql/files/man.tk new file mode 100644 index 00000000000..eb0ced3e863 --- /dev/null +++ b/databases/postgresql/files/man.tk @@ -0,0 +1,3 @@ +# $NetBSD: man.tk,v 1.1 2000/05/20 19:32:22 jlam Exp $ +# +man1/pgtksh.1 diff --git a/databases/postgresql/files/md5 b/databases/postgresql/files/md5 index 20df663ac1b..82b45da8e5e 100644 --- a/databases/postgresql/files/md5 +++ b/databases/postgresql/files/md5 @@ -1,3 +1,3 @@ -$NetBSD: md5,v 1.7 1999/12/02 01:47:06 darcy Exp $ +$NetBSD: md5,v 1.8 2000/05/20 19:32:22 jlam Exp $ -MD5 (postgresql-6.5.3.tar.gz) = 098d1ee4316500a2d033ced3ebd5b831 +MD5 (postgresql-7.0.tar.gz) = 7fefc2f9d9430a4012aac6c78497db85 diff --git a/databases/postgresql/files/odbc.ini b/databases/postgresql/files/odbcinst.ini index 2176ca4d3f8..0449a249dab 100644 --- a/databases/postgresql/files/odbc.ini +++ b/databases/postgresql/files/odbcinst.ini @@ -1,4 +1,4 @@ -; $NetBSD: odbc.ini,v 1.1 2000/03/18 17:43:16 jlam Exp $ +; $NetBSD: odbcinst.ini,v 1.1 2000/05/20 19:32:26 jlam Exp $ ; ; /etc/odbc.ini - site-wide ODBC configuration file diff --git a/databases/postgresql/files/patch-sum b/databases/postgresql/files/patch-sum index 4b11ee57434..ab3f415563d 100644 --- a/databases/postgresql/files/patch-sum +++ b/databases/postgresql/files/patch-sum @@ -1,22 +1,8 @@ -$NetBSD: patch-sum,v 1.9 2000/03/18 17:43:16 jlam Exp $ +$NetBSD: patch-sum,v 1.10 2000/05/20 19:32:27 jlam Exp $ -MD5 (patch-aa) = bc49aa9d9fce8df90213078d92761249 -MD5 (patch-ab) = 8ca4b77d8e1b817ebc034572fbe2b1fc -MD5 (patch-ac) = 70fd9e904ad4991a9f69f1e8afcc3d4a -MD5 (patch-ad) = c9065a8a153f76ae8d673847d94a307b -MD5 (patch-ae) = c5e24d270c84b2578e2a401ff21f8741 -MD5 (patch-af) = f83f4fe4788297ce80961a3bbe80d5ab -MD5 (patch-ag) = bd973c4082172fee6ec5d4e27bd2efc5 -MD5 (patch-ah) = 4a61e815a957790c494ff8465ef2c706 -MD5 (patch-ai) = eb34208242c64709ebaa569368a8693d -MD5 (patch-aj) = 936e6e472154183587af08a273dd5596 -MD5 (patch-ak) = a4dd0fa1e1854007f452a45e79a83436 -MD5 (patch-al) = cfbc7e6e7929bd9d97dd1333e06bc97f -MD5 (patch-am) = 20bdf8b311fad190c40b35a27d0d0f35 -MD5 (patch-an) = 5896789239612120cb87d218b375c921 -MD5 (patch-ao) = 1705f355ea045f2742115a8035333df9 -MD5 (patch-ap) = 56a512c3e9aef5e09c37eef18097fcd8 -MD5 (patch-aq) = 9c3500fe79d72d4417af9137c76540d6 -MD5 (patch-ar) = fc00fb16650ec4c68f74d39b7f03a3e9 -MD5 (patch-as) = 4df43103e0a4346e2cf0ec7724192844 -MD5 (patch-at) = 0cef1d02ee234cc9a8a0a9db26810e3b +MD5 (patch-aa) = f64a0fc59be9b4aaed41376ac8870a4f +MD5 (patch-ab) = f81b6a1f8459eae323dbf141f6d617ab +MD5 (patch-ac) = eb26d0e3cec52fa4b17d6486314ebd05 +MD5 (patch-ad) = 1eff11ecb293cf8817851708cb4f5a5b +MD5 (patch-ae) = 86929b61d882df8993d54b69e481fbbe +MD5 (patch-af) = fb46bcb6524f8479f50e07bf9fc5d516 diff --git a/databases/postgresql/patches/patch-aa b/databases/postgresql/patches/patch-aa deleted file mode 100644 index 58c4bd78cb7..00000000000 --- a/databases/postgresql/patches/patch-aa +++ /dev/null @@ -1,27 +0,0 @@ -$NetBSD: patch-aa,v 1.4 2000/03/18 17:43:17 jlam Exp $ - ---- Makefile.global.in.orig Mon Nov 1 23:45:47 1999 -+++ Makefile.global.in Thu Mar 16 17:49:44 2000 -@@ -54,6 +54,11 @@ - ELF_SYSTEM= @ELF_SYS@ - - LIBPQDIR:= $(SRCDIR)/interfaces/libpq -+LIBPGTCLDIR:= $(SRCDIR)/interfaces/libpgtcl -+ -+LIBPQ:= -L$(LIBPQDIR) -lpq -+LIBPGTCL:= -L$(LIBPGTCLDIR) -lpgtcl -+ - - # For convenience, POSTGRESDIR is where BINDIR, and LIBDIR - # and other target destinations are rooted. Of course, each of these is -@@ -69,6 +74,10 @@ - # can just put the absolute pathname to the library at the end of your - # command line. - LIBDIR= $(POSTGRESDIR)/lib -+ -+# Where the database templates are stored -+# -+TEMPLATEDIR= $(POSTGRESDIR)/lib - - # This is the directory where IPC utilities ipcs and ipcrm are located - # diff --git a/databases/postgresql/patches/patch-ab b/databases/postgresql/patches/patch-ab deleted file mode 100644 index 488e1434207..00000000000 --- a/databases/postgresql/patches/patch-ab +++ /dev/null @@ -1,29 +0,0 @@ -$NetBSD: patch-ab,v 1.8 2000/03/18 17:43:17 jlam Exp $ - ---- Makefile.shlib.orig Fri Jul 30 00:13:44 1999 -+++ Makefile.shlib Thu Mar 16 17:49:44 2000 -@@ -109,6 +109,24 @@ - endif - endif - -+ifeq ($(PORTNAME), netbsd) -+ ifdef BSD_SHLIB -+ install-shlib-dep := install-shlib -+ soname := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION) -+ shlib := lib$(NAME)$(DLSUFFIX).$(SO_MAJOR_VERSION).$(SO_MINOR_VERSION) -+ ifdef ELF_SYSTEM -+ LD := $(CC) -+ LDFLAGS_SL := -shared -Wl,-soname -Wl,$(soname) -+ ifneq ($(SHLIB_LINK),) -+ LDFLAGS_SL += -Wl,-R$(LIBDIR) -+ endif -+ else -+ LDFLAGS_SL := -x -Bshareable -Bforcearchive -+ endif -+ CFLAGS += $(CFLAGS_SL) -+ endif -+endif -+ - ifeq ($(PORTNAME), hpux) - install-shlib-dep := install-shlib - # HPUX doesn't believe in version numbers for shlibs diff --git a/databases/postgresql/patches/patch-ac b/databases/postgresql/patches/patch-ac deleted file mode 100644 index 5c0ddf2dce8..00000000000 --- a/databases/postgresql/patches/patch-ac +++ /dev/null @@ -1,58 +0,0 @@ -$NetBSD: patch-ac,v 1.5 2000/03/18 17:43:17 jlam Exp $ - ---- backend/Makefile.orig Sun Mar 7 18:05:56 1999 -+++ backend/Makefile Thu Mar 16 17:56:36 2000 -@@ -156,10 +156,11 @@ - # and (2) the parameters of a database system should be set at initdb time, - # not at postgres build time. - --.PHONY: install install-bin install-lib install-headers -+.PHONY: install install-bin install-templates install-headers - --install: $(LIBDIR) $(BINDIR) $(HEADERDIR) postgres $(POSTGRES_IMP) \ -- install-bin install-lib install-headers -+install: $(LIBDIR) $(BINDIR) $(HEADERDIR) $(TEMPLATEDIR) \ -+ postgres $(POSTGRES_IMP) \ -+ install-bin install-templates install-headers - - install-bin: $(BINDIR) postgres$(X) $(POSTGRES_IMP) - $(INSTALL) $(INSTL_EXE_OPTS) postgres$(X) $(BINDIR)/postgres$(X) -@@ -175,22 +176,22 @@ - endif - endif - --install-lib: $(LIBDIR) \ -+install-templates: $(TEMPLATEDIR) \ - global1.bki.source local1_template1.bki.source \ - global1.description local1_template1.description \ - libpq/pg_hba.conf.sample optimizer/geqo/pg_geqo.sample - $(INSTALL) $(INSTLOPTS) global1.bki.source \ -- $(LIBDIR)/global1.bki.source -+ $(TEMPLATEDIR)/global1.bki.source - $(INSTALL) $(INSTLOPTS) global1.description \ -- $(LIBDIR)/global1.description -+ $(TEMPLATEDIR)/global1.description - $(INSTALL) $(INSTLOPTS) local1_template1.bki.source \ -- $(LIBDIR)/local1_template1.bki.source -+ $(TEMPLATEDIR)/local1_template1.bki.source - $(INSTALL) $(INSTLOPTS) local1_template1.description \ -- $(LIBDIR)/local1_template1.description -+ $(TEMPLATEDIR)/local1_template1.description - $(INSTALL) $(INSTLOPTS) libpq/pg_hba.conf.sample \ -- $(LIBDIR)/pg_hba.conf.sample -+ $(TEMPLATEDIR)/pg_hba.conf.sample - $(INSTALL) $(INSTLOPTS) optimizer/geqo/pg_geqo.sample \ -- $(LIBDIR)/pg_geqo.sample -+ $(TEMPLATEDIR)/pg_geqo.sample - - install-headers: fmgr.h $(SRCDIR)/include/config.h - @if [ ! -d $(HEADERDIR) ]; then mkdir $(HEADERDIR); fi -@@ -253,6 +254,8 @@ - $(LIBDIR): - mkdir $@ - $(HEADERDIR): -+ mkdir $@ -+$(TEMPLATEDIR): - mkdir $@ - - ############################################################################# diff --git a/databases/postgresql/patches/patch-ad b/databases/postgresql/patches/patch-ad deleted file mode 100644 index ec71d3a6e89..00000000000 --- a/databases/postgresql/patches/patch-ad +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ad,v 1.6 2000/03/18 17:43:17 jlam Exp $ - ---- bin/pg_dump/Makefile.in.orig Sun Jan 17 01:19:05 1999 -+++ bin/pg_dump/Makefile.in Thu Mar 16 17:49:44 2000 -@@ -29,7 +29,7 @@ - all: submake pg_dump - - pg_dump: $(OBJS) $(LIBPQDIR)/libpq.a -- $(CC) -o pg_dump -L$(LIBPQDIR) $(OBJS) -lpq $(LDFLAGS) -+ $(CC) -o pg_dump $(OBJS) $(LIBPQ) $(LDFLAGS) - - ../../utils/strdup.o: - $(MAKE) -C ../../utils strdup.o diff --git a/databases/postgresql/patches/patch-ae b/databases/postgresql/patches/patch-ae deleted file mode 100644 index 41b07c34431..00000000000 --- a/databases/postgresql/patches/patch-ae +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ae,v 1.10 2000/03/18 17:43:17 jlam Exp $ - ---- bin/pg_encoding/Makefile.orig Sat Jun 5 06:27:31 1999 -+++ bin/pg_encoding/Makefile Thu Mar 16 17:49:44 2000 -@@ -20,7 +20,7 @@ - all: pg_encoding - - pg_encoding: $(OBJS) $(LIBPQDIR)/libpq.a -- $(CC) -o pg_encoding $(OBJS) -L$(LIBPQDIR) -lpq $(LDFLAGS) -+ $(CC) -o pg_encoding $(OBJS) $(LIBPQ) $(LDFLAGS) - - install: pg_encoding - $(INSTALL) $(INSTL_EXE_OPTS) pg_encoding$(X) $(BINDIR)/pg_encoding$(X) diff --git a/databases/postgresql/patches/patch-af b/databases/postgresql/patches/patch-af deleted file mode 100644 index 769f799c0e2..00000000000 --- a/databases/postgresql/patches/patch-af +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-af,v 1.7 2000/03/18 17:43:17 jlam Exp $ - ---- bin/pg_id/Makefile.orig Sun Jan 17 01:19:10 1999 -+++ bin/pg_id/Makefile Thu Mar 16 17:49:44 2000 -@@ -27,7 +27,7 @@ - all: pg_id - - pg_id: $(OBJS) $(LIBPQDIR)/libpq.a -- $(CC) -o pg_id -L$(LIBPQDIR) $(OBJS) -lpq $(LDFLAGS) -+ $(CC) -o pg_id $(OBJS) $(LIBPQ) $(LDFLAGS) - - $(LIBPQDIR)/libpq.a: - $(MAKE) -C $(LIBPQDIR) libpq.a diff --git a/databases/postgresql/patches/patch-ag b/databases/postgresql/patches/patch-ag deleted file mode 100644 index 8e6a94c7da6..00000000000 --- a/databases/postgresql/patches/patch-ag +++ /dev/null @@ -1,21 +0,0 @@ -$NetBSD: patch-ag,v 1.5 2000/03/18 17:43:17 jlam Exp $ - ---- bin/pgtclsh/Makefile.orig Tue Oct 27 16:51:54 1998 -+++ bin/pgtclsh/Makefile Thu Mar 16 17:49:44 2000 -@@ -22,15 +22,12 @@ - include Makefile.tkdefs - endif - --CFLAGS+= $(X_CFLAGS) -I$(SRCDIR)/interfaces/libpgtcl -+CFLAGS+= $(X_CFLAGS) -I$(LIBPGTCLDIR) - - ifdef KRBVERS - LDFLAGS+= $(KRBLIBS) - CFLAGS+= $(KRBFLAGS) - endif -- --LIBPGTCL= -L$(SRCDIR)/interfaces/libpgtcl -lpgtcl --LIBPQ= -L$(LIBPQDIR) -lpq - - # If we are here then TCL is available - PGMS = pgtclsh diff --git a/databases/postgresql/patches/patch-ah b/databases/postgresql/patches/patch-ah deleted file mode 100644 index a42371a607b..00000000000 --- a/databases/postgresql/patches/patch-ah +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ah,v 1.5 2000/03/18 17:43:17 jlam Exp $ - ---- bin/psql/Makefile.in.orig Sun Jan 17 01:19:19 1999 -+++ bin/psql/Makefile.in Thu Mar 16 17:49:44 2000 -@@ -33,7 +33,7 @@ - all: submake psql - - psql: $(OBJS) $(LIBPQDIR)/libpq.a -- $(CC) -o psql -L$(LIBPQDIR) $(OBJS) -lpq $(LDFLAGS) -+ $(CC) -o psql $(OBJS) $(LIBPQ) $(LDFLAGS) - - ../../utils/strdup.o: - $(MAKE) -C ../../utils strdup.o diff --git a/databases/postgresql/patches/patch-ai b/databases/postgresql/patches/patch-ai deleted file mode 100644 index ab742d258e4..00000000000 --- a/databases/postgresql/patches/patch-ai +++ /dev/null @@ -1,41 +0,0 @@ -$NetBSD: patch-ai,v 1.5 2000/03/18 17:43:55 jlam Exp $ - ---- bin/psql/psql.c.orig Fri Jun 4 17:21:13 1999 -+++ bin/psql/psql.c Thu Mar 16 17:49:44 2000 -@@ -45,28 +45,23 @@ - #endif - - #ifdef HAVE_LIBREADLINE --#ifdef HAVE_READLINE_H --#include <readline.h> --#define USE_READLINE 1 --#if defined(HAVE_HISTORY_H) --#include <history.h> --#define USE_HISTORY 1 --#endif --#else - #if defined(HAVE_READLINE_READLINE_H) - #include <readline/readline.h> - #define USE_READLINE 1 -+#elif defined(HAVE_READLINE_H) -+#include <readline.h> -+#define USE_READLINE 1 -+#endif -+#endif -+#if defined(HAVE_HISTORY) - #if defined(HAVE_READLINE_HISTORY_H) - #include <readline/history.h> - #define USE_HISTORY 1 --#endif --#endif --#endif --#if defined(HAVE_HISTORY) && !defined(USE_HISTORY) -+#elif defined(HAVE_HISTORY_H) -+#include <history.h> - #define USE_HISTORY 1 - #endif - #endif -- - - #ifdef WIN32 - #define popen(x,y) _popen(x,y) diff --git a/databases/postgresql/patches/patch-aj b/databases/postgresql/patches/patch-aj deleted file mode 100644 index 0c9ca6428bd..00000000000 --- a/databases/postgresql/patches/patch-aj +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-aj,v 1.5 2000/03/18 17:43:17 jlam Exp $ - ---- configure.in.orig Mon Nov 1 19:24:29 1999 -+++ configure.in Thu Mar 16 17:49:44 2000 -@@ -23,11 +23,7 @@ - bsdi*) os=bsdi need_tas=no ;; - freebsd1*|freebsd2*) os=freebsd need_tas=no ;; - freebsd*) os=freebsd need_tas=no elf=yes ;; -- netbsd*) -- os=bsd need_tas=no -- case "$host_cpu" in -- powerpc) elf=yes ;; -- esac ;; -+ netbsd*) os=netbsd need_tas=no ;; - openbsd*) os=bsd need_tas=no ;; - dgux*) os=dgux need_tas=no ;; - aix*) os=aix need_tas=no ;; diff --git a/databases/postgresql/patches/patch-ak b/databases/postgresql/patches/patch-ak deleted file mode 100644 index 6f6622b61db..00000000000 --- a/databases/postgresql/patches/patch-ak +++ /dev/null @@ -1,24 +0,0 @@ -$NetBSD: patch-ak,v 1.2 2000/03/18 17:43:17 jlam Exp $ - ---- include/port/bsd.h.orig Tue May 25 12:14:29 1999 -+++ include/port/bsd.h Thu Mar 16 17:49:44 2000 -@@ -1,16 +1,16 @@ - #define USE_POSIX_TIME - --#if defined(i386) -+#if defined(__i386__) - #define NEED_I386_TAS_ASM - #define HAS_TEST_AND_SET - #endif - --#if defined(sparc) -+#if defined(__sparc__) - #define NEED_SPARC_TAS_ASM - #define HAS_TEST_AND_SET - #endif - --#if defined(vax) -+#if defined(__vax__) - #define NEED_VAX_TAS_ASM - #define HAS_TEST_AND_SET - #endif diff --git a/databases/postgresql/patches/patch-al b/databases/postgresql/patches/patch-al deleted file mode 100644 index 47ef39f83c4..00000000000 --- a/databases/postgresql/patches/patch-al +++ /dev/null @@ -1,28 +0,0 @@ -$NetBSD: patch-al,v 1.3 2000/03/18 17:43:17 jlam Exp $ - ---- interfaces/ecpg/lib/Makefile.in.orig Wed Jun 30 19:57:23 1999 -+++ interfaces/ecpg/lib/Makefile.in Thu Mar 16 17:49:44 2000 -@@ -12,12 +12,12 @@ - - NAME= ecpg - SO_MAJOR_VERSION= 3 --SO_MINOR_VERSION= 0.0 -+SO_MINOR_VERSION= 0 - - SRCDIR= @top_srcdir@ - include $(SRCDIR)/Makefile.global - --CFLAGS+= -I../include -I$(SRCDIR)/interfaces/libpq -+CFLAGS+= -I../include -I$(LIBPQDIR) - - ifdef KRBVERS - CFLAGS+= $(KRBFLAGS) -@@ -25,7 +25,7 @@ - - OBJS= ecpglib.o typename.o - --SHLIB_LINK= -L../../libpq -lpq -+SHLIB_LINK= $(LIBPQ) - - # Shared library stuff, also default 'all' target - include $(SRCDIR)/Makefile.shlib diff --git a/databases/postgresql/patches/patch-am b/databases/postgresql/patches/patch-am deleted file mode 100644 index 130f17704ff..00000000000 --- a/databases/postgresql/patches/patch-am +++ /dev/null @@ -1,39 +0,0 @@ -$NetBSD: patch-am,v 1.4 2000/03/18 17:43:17 jlam Exp $ - ---- interfaces/jdbc/Makefile.orig Wed Jun 23 01:56:17 1999 -+++ interfaces/jdbc/Makefile Thu Mar 16 17:49:44 2000 -@@ -27,7 +27,7 @@ - # In 6.5, the all rule builds the makeVersion class which then calls make using - # the jdbc1 or jdbc2 rules - all: makeVersion.class -- make $$($(JAVA) makeVersion) -+ $(MAKE) $$($(JAVA) makeVersion) - @echo ------------------------------------------------------------ - @echo The JDBC driver has now been built. To make it available to - @echo other applications, copy the postgresql.jar file to a public -@@ -45,10 +45,10 @@ - @echo - @echo ------------------------------------------------------------ - @echo To build the examples, type: -- @echo " make examples" -+ @echo " $(MAKE) examples" - @echo - @echo "To build the CORBA example (requires Java2):" -- @echo " make corba" -+ @echo " $(MAKE) corba" - @echo ------------------------------------------------------------ - @echo - -@@ -121,10 +121,10 @@ - @echo JDBC 1 specification, and one to the JDBC 2 specification. - @echo - @echo To build the driver for JDBC 1 (usually for JDK 1.1 thru 1.1.7) -- @echo then type: make jdbc1 -+ @echo then type: $(MAKE) jdbc1 - @echo - @echo To build the driver for JDBC 2 (usually for JDK 1.2 and later) -- @echo then type: make jdbc2 -+ @echo then type: $(MAKE) jdbc2 - @echo - @echo If you still have problems, then please email the interfaces - @echo or bugs lists, or better still to me direct (peter@retep.org.uk) diff --git a/databases/postgresql/patches/patch-an b/databases/postgresql/patches/patch-an deleted file mode 100644 index 0c54cccfa74..00000000000 --- a/databases/postgresql/patches/patch-an +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-an,v 1.2 2000/03/18 17:43:17 jlam Exp $ - ---- interfaces/libpgtcl/Makefile.in.orig Wed Jun 30 19:57:24 1999 -+++ interfaces/libpgtcl/Makefile.in Thu Mar 16 17:49:44 2000 -@@ -27,7 +27,7 @@ - - OBJS= pgtcl.o pgtclCmds.o pgtclId.o - --SHLIB_LINK+= -L../libpq -lpq -+SHLIB_LINK+= $(LIBPQ) - - # If crypt is a separate library, rather than part of libc, it may need - # to be referenced separately to keep (broken) linkers happy. (This is diff --git a/databases/postgresql/patches/patch-ao b/databases/postgresql/patches/patch-ao deleted file mode 100644 index 63229e8b86e..00000000000 --- a/databases/postgresql/patches/patch-ao +++ /dev/null @@ -1,16 +0,0 @@ -$NetBSD: patch-ao,v 1.2 2000/03/18 17:43:17 jlam Exp $ - ---- interfaces/libpq++/Makefile.in.orig Tue Sep 7 14:11:35 1999 -+++ interfaces/libpq++/Makefile.in Thu Mar 16 17:49:44 2000 -@@ -43,9 +43,9 @@ - OBJS = pgconnection.o pgdatabase.o pgtransdb.o pgcursordb.o pglobject.o - - ifeq ($(PORTNAME), win) --SHLIB_LINK+= --driver-name g++ -L../libpq -lpq -+SHLIB_LINK+= --driver-name g++ $(LIBPQ) - else --SHLIB_LINK= -L../libpq -lpq -+SHLIB_LINK= $(LIBPQ) - endif - - # For CC on IRIX, must use CC as linker/archiver of C++ libraries diff --git a/databases/postgresql/patches/patch-ap b/databases/postgresql/patches/patch-ap deleted file mode 100644 index 35d155357f4..00000000000 --- a/databases/postgresql/patches/patch-ap +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ap,v 1.1 2000/03/18 17:43:17 jlam Exp $ - ---- interfaces/odbc/GNUmakefile.in.orig Wed Jun 30 19:57:29 1999 -+++ interfaces/odbc/GNUmakefile.in Thu Mar 16 17:49:44 2000 -@@ -37,8 +37,6 @@ - pgtypes.o psqlodbc.o qresult.o results.o socket.o parse.o statement.o \ - gpps.o tuple.o tuplelist.o dlg_specific.o $(OBJX) - --SHLIB_LINK= $(LIBS) -- - # Shared library stuff, also default 'all' target - include $(SRCDIR)/Makefile.shlib - diff --git a/databases/postgresql/patches/patch-aq b/databases/postgresql/patches/patch-aq deleted file mode 100644 index 9686d56ab5b..00000000000 --- a/databases/postgresql/patches/patch-aq +++ /dev/null @@ -1,16 +0,0 @@ -$NetBSD: patch-aq,v 1.1 2000/03/18 17:43:17 jlam Exp $ - ---- interfaces/odbc/dlg_specific.h.orig Wed Jan 6 15:44:07 1999 -+++ interfaces/odbc/dlg_specific.h Thu Mar 16 17:49:45 2000 -@@ -35,9 +35,9 @@ - #ifdef ODBCINST - #define xstr(s) str(s) - #define str(s) #s --#define ODBCINST_INI xstr(ODBCINST) "/odbcinst.ini" -+#define ODBCINST_INI xstr(ODBCINST) "/odbc.ini" - #else --#define ODBCINST_INI "/etc/odbcinst.ini" -+#define ODBCINST_INI "/etc/odbc.ini" - #endif - #else - #define ODBC_INI "ODBC.INI" /* ODBC initialization file */ diff --git a/databases/postgresql/patches/patch-ar b/databases/postgresql/patches/patch-ar deleted file mode 100644 index f7fa377898e..00000000000 --- a/databases/postgresql/patches/patch-ar +++ /dev/null @@ -1,24 +0,0 @@ -$NetBSD: patch-ar,v 1.1 2000/03/18 17:43:17 jlam Exp $ - ---- interfaces/odbc/psqlodbc.c.orig Mon Dec 28 20:49:57 1998 -+++ interfaces/odbc/psqlodbc.c Thu Mar 16 17:49:45 2000 -@@ -33,8 +33,8 @@ - - GLOBAL_VALUES globals; - --BOOL _init(void); --BOOL _fini(void); -+static BOOL _init(void); -+static BOOL _fini(void); - RETCODE SQL_API SQLDummyOrdinal(void); - - #ifdef WIN32 -@@ -98,7 +98,7 @@ - #endif - - /* These two functions do shared library initialziation on UNIX, well at least -- * on Linux. I don't know about other systems. -+ * on Linux and NetBSD. I don't know about other systems. - */ - BOOL - _init(void) diff --git a/databases/postgresql/patches/patch-as b/databases/postgresql/patches/patch-as deleted file mode 100644 index 745622c0a4d..00000000000 --- a/databases/postgresql/patches/patch-as +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-as,v 1.1 2000/03/18 17:43:17 jlam Exp $ - ---- pl/plpgsql/src/Makefile.in.orig Wed Jun 30 19:57:31 1999 -+++ pl/plpgsql/src/Makefile.in Thu Mar 16 17:49:45 2000 -@@ -27,7 +27,7 @@ - - OBJS= pl_parse.o pl_handler.o pl_comp.o pl_exec.o pl_funcs.o - --SHLIB_LINK+= -L$(LIBPQDIR) -lpq -+SHLIB_LINK+= $(LIBPQ) - - # If crypt is a separate library, rather than part of libc, it may need - # to be referenced separately to keep (broken) linkers happy. (This is diff --git a/databases/postgresql/patches/patch-at b/databases/postgresql/patches/patch-at deleted file mode 100644 index 2f1cd55c3a9..00000000000 --- a/databases/postgresql/patches/patch-at +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-at,v 1.1 2000/03/18 17:43:17 jlam Exp $ - ---- pl/tcl/Makefile.orig Sun Dec 13 18:46:49 1998 -+++ pl/tcl/Makefile Thu Mar 16 17:49:45 2000 -@@ -75,7 +75,7 @@ - - CFLAGS+= $(TCL_DEFS) - --LDADD+= -L$(LIBPQDIR) -lpq -+LDADD+= $(LIBPQ) - - # - # DLOBJS is the dynamically-loaded object file. diff --git a/databases/postgresql/pkg/PLIST b/databases/postgresql/pkg/PLIST index 3532f703464..49b0ab60528 100644 --- a/databases/postgresql/pkg/PLIST +++ b/databases/postgresql/pkg/PLIST @@ -1,17 +1,20 @@ -@comment $NetBSD: PLIST,v 1.12 2000/04/09 03:53:17 jlam Exp $ -bin/cleardbdir +@comment $NetBSD: PLIST,v 1.13 2000/05/20 19:33:00 jlam Exp $ +${PGUSER}/.profile.pgsql +${PGUSER}/post-install-notes bin/createdb bin/createlang bin/createuser -bin/destroydb -bin/destroylang -bin/destroyuser +bin/dropdb +bin/droplang +bin/dropuser bin/ecpg bin/initdb bin/initlocation bin/ipcclean +bin/pg_ctl bin/pg_dump bin/pg_dumpall +bin/pg_encoding bin/pg_id bin/pg_passwd bin/pg_upgrade @@ -31,6 +34,7 @@ include/pgsql/ecpgtype.h include/pgsql/executor/spi.h include/pgsql/fmgr.h include/pgsql/lib/dllist.h +include/pgsql/libpgeasy.h include/pgsql/libpq++.h include/pgsql/libpq++/pgconnection.h include/pgsql/libpq++/pgcursordb.h @@ -44,27 +48,33 @@ include/pgsql/libpq/pqcomm.h include/pgsql/os.h include/pgsql/postgres.h include/pgsql/postgres_ext.h +include/pgsql/pqexpbuffer.h +include/pgsql/sql3types.h include/pgsql/sqlca.h include/pgsql/utils/elog.h include/pgsql/utils/geo_decls.h include/pgsql/utils/mcxt.h include/pgsql/utils/palloc.h lib/libecpg.a -lib/libecpg.so.3.0 +lib/libecpg.so.3.1 +lib/libpgeasy.a +lib/libpgeasy.so.2.1 lib/libpq++.a -lib/libpq++.so.3.0 +lib/libpq++.so.3.1 lib/libpq.a -lib/libpq.so.2.0 +lib/libpq.so.2.1 lib/plpgsql.so -man/man1/cleardbdir.1 man/man1/createdb.1 +man/man1/createlang.1 man/man1/createuser.1 -man/man1/destroydb.1 -man/man1/destroyuser.1 +man/man1/dropdb.1 +man/man1/droplang.1 +man/man1/dropuser.1 man/man1/ecpg.1 man/man1/initdb.1 man/man1/initlocation.1 man/man1/ipcclean.1 +man/man1/pg_ctl.1 man/man1/pg_dump.1 man/man1/pg_dumpall.1 man/man1/pg_passwd.1 @@ -72,37 +82,39 @@ man/man1/pg_upgrade.1 man/man1/postgres.1 man/man1/postmaster.1 man/man1/psql.1 -man/man3/catalogs.3 -man/man3/libpq.3 -man/man5/pg_hba.conf.5 +man/man1/vacuumdb.1 man/manl/abort.l +man/manl/alter_group.l man/manl/alter_table.l man/manl/alter_user.l man/manl/begin.l man/manl/close.l man/manl/cluster.l +man/manl/comment.l man/manl/commit.l man/manl/copy.l man/manl/create_aggregate.l +man/manl/create_constraint_trigger.l man/manl/create_database.l man/manl/create_function.l +man/manl/create_group.l man/manl/create_index.l man/manl/create_language.l man/manl/create_operator.l man/manl/create_rule.l man/manl/create_sequence.l +man/manl/create_table_as.l man/manl/create_table.l man/manl/create_trigger.l man/manl/create_type.l man/manl/create_user.l -man/manl/create_version.l man/manl/create_view.l man/manl/declare.l man/manl/delete.l -man/manl/drop.l man/manl/drop_aggregate.l man/manl/drop_database.l man/manl/drop_function.l +man/manl/drop_group.l man/manl/drop_index.l man/manl/drop_language.l man/manl/drop_operator.l @@ -123,813 +135,911 @@ man/manl/load.l man/manl/lock.l man/manl/move.l man/manl/notify.l +man/manl/reindex.l man/manl/reset.l man/manl/revoke.l man/manl/rollback.l +man/manl/select_into.l man/manl/select.l man/manl/set.l man/manl/show.l -man/manl/sql.l +man/manl/truncate.l +man/manl/unlisten.l man/manl/update.l man/manl/vacuum.l +share/doc/html/postgresql/admin/admin.htm +share/doc/html/postgresql/admin/admin.html +share/doc/html/postgresql/admin/biblio.htm +share/doc/html/postgresql/admin/c573.htm +share/doc/html/postgresql/admin/c573602.htm +share/doc/html/postgresql/admin/c573680.htm +share/doc/html/postgresql/admin/c573717.htm +share/doc/html/postgresql/admin/copyright.htm +share/doc/html/postgresql/admin/disk.htm +share/doc/html/postgresql/admin/index.html +share/doc/html/postgresql/admin/install-win32.htm +share/doc/html/postgresql/admin/install-win321073.htm +share/doc/html/postgresql/admin/install-win321082.htm +share/doc/html/postgresql/admin/install.htm +share/doc/html/postgresql/admin/install855.htm +share/doc/html/postgresql/admin/intro-ag.htm +share/doc/html/postgresql/admin/intro-ag162.htm +share/doc/html/postgresql/admin/layout.gif +share/doc/html/postgresql/admin/layout.htm +share/doc/html/postgresql/admin/manage-ag.htm +share/doc/html/postgresql/admin/manage-ag1604.htm +share/doc/html/postgresql/admin/manage-ag1646.htm +share/doc/html/postgresql/admin/manage-ag1655.htm +share/doc/html/postgresql/admin/newuser.htm +share/doc/html/postgresql/admin/notation.htm +share/doc/html/postgresql/admin/pg-options.htm +share/doc/html/postgresql/admin/ports.htm +share/doc/html/postgresql/admin/ports481.htm +share/doc/html/postgresql/admin/postmaster.htm +share/doc/html/postgresql/admin/preface.htm +share/doc/html/postgresql/admin/recovery.htm +share/doc/html/postgresql/admin/regress.htm +share/doc/html/postgresql/admin/regress1861.htm +share/doc/html/postgresql/admin/regress1895.htm +share/doc/html/postgresql/admin/regress1941.htm +share/doc/html/postgresql/admin/release.htm +share/doc/html/postgresql/admin/release2009.htm +share/doc/html/postgresql/admin/release2020.htm +share/doc/html/postgresql/admin/release2031.htm +share/doc/html/postgresql/admin/release2042.htm +share/doc/html/postgresql/admin/release2124.htm +share/doc/html/postgresql/admin/release2135.htm +share/doc/html/postgresql/admin/release2146.htm +share/doc/html/postgresql/admin/release2187.htm +share/doc/html/postgresql/admin/release2203.htm +share/doc/html/postgresql/admin/release2222.htm +share/doc/html/postgresql/admin/release2266.htm +share/doc/html/postgresql/admin/release2288.htm +share/doc/html/postgresql/admin/release2303.htm +share/doc/html/postgresql/admin/release2312.htm +share/doc/html/postgresql/admin/release2335.htm +share/doc/html/postgresql/admin/release2349.htm +share/doc/html/postgresql/admin/release2352.htm +share/doc/html/postgresql/admin/release2377.htm +share/doc/html/postgresql/admin/release2414.htm +share/doc/html/postgresql/admin/release2421.htm +share/doc/html/postgresql/admin/release2428.htm +share/doc/html/postgresql/admin/release2435.htm +share/doc/html/postgresql/admin/release2439.htm +share/doc/html/postgresql/admin/runtime.htm +share/doc/html/postgresql/admin/security.htm +share/doc/html/postgresql/admin/security1450.htm +share/doc/html/postgresql/admin/security1485.htm +share/doc/html/postgresql/admin/security1509.htm +share/doc/html/postgresql/admin/security1530.htm +share/doc/html/postgresql/admin/terminology.htm +share/doc/html/postgresql/admin/trouble.htm +share/doc/html/postgresql/admin/trouble1721.htm +share/doc/html/postgresql/admin/trouble1738.htm +share/doc/html/postgresql/admin/y2k.htm +share/doc/html/postgresql/postgres/about.htm +share/doc/html/postgresql/postgres/advanced.htm +share/doc/html/postgresql/postgres/advanced27923.htm +share/doc/html/postgresql/postgres/advanced27945.htm +share/doc/html/postgresql/postgres/app-createdb.htm +share/doc/html/postgresql/postgres/app-createlang.htm +share/doc/html/postgresql/postgres/app-createuser.htm +share/doc/html/postgresql/postgres/app-dropdb.htm +share/doc/html/postgresql/postgres/app-droplang.htm +share/doc/html/postgresql/postgres/app-dropuser.htm +share/doc/html/postgresql/postgres/app-ecpg.htm +share/doc/html/postgresql/postgres/app-initdb.htm +share/doc/html/postgresql/postgres/app-initlocation.htm +share/doc/html/postgresql/postgres/app-ipcclean.htm +share/doc/html/postgresql/postgres/app-pg-passwd.htm +share/doc/html/postgresql/postgres/app-pg-upgrade.htm +share/doc/html/postgresql/postgres/app-pgaccess.htm +share/doc/html/postgresql/postgres/app-pgadmin.htm +share/doc/html/postgresql/postgres/app-pgctl.htm +share/doc/html/postgresql/postgres/app-pgdump.htm +share/doc/html/postgresql/postgres/app-pgdumpall.htm +share/doc/html/postgresql/postgres/app-pgtclsh.htm +share/doc/html/postgresql/postgres/app-pgtksh.htm +share/doc/html/postgresql/postgres/app-postgres.htm +share/doc/html/postgresql/postgres/app-postmaster.htm +share/doc/html/postgresql/postgres/app-psql.htm +share/doc/html/postgresql/postgres/app-vacuumdb.htm +share/doc/html/postgresql/postgres/applications.htm +share/doc/html/postgresql/postgres/arch-pg.htm +share/doc/html/postgresql/postgres/arch.htm +share/doc/html/postgresql/postgres/arrays.htm +share/doc/html/postgresql/postgres/biblio.htm +share/doc/html/postgresql/postgres/bki.htm +share/doc/html/postgresql/postgres/bki26573.htm +share/doc/html/postgresql/postgres/bki26657.htm +share/doc/html/postgresql/postgres/bki26681.htm +share/doc/html/postgresql/postgres/bki26742.htm +share/doc/html/postgresql/postgres/c16883.htm +share/doc/html/postgresql/postgres/c1688316912.htm +share/doc/html/postgresql/postgres/c1688316990.htm +share/doc/html/postgresql/postgres/c1688317027.htm +share/doc/html/postgresql/postgres/c19986.htm +share/doc/html/postgresql/postgres/c21722.htm +share/doc/html/postgresql/postgres/c2172221764.htm +share/doc/html/postgresql/postgres/c2172221782.htm +share/doc/html/postgresql/postgres/c2172221924.htm +share/doc/html/postgresql/postgres/c2172221936.htm +share/doc/html/postgresql/postgres/c2172221956.htm +share/doc/html/postgresql/postgres/c2172221961.htm +share/doc/html/postgresql/postgres/c25129.htm +share/doc/html/postgresql/postgres/c4091.htm +share/doc/html/postgresql/postgres/c40914117.htm +share/doc/html/postgresql/postgres/c40914344.htm +share/doc/html/postgresql/postgres/c4362.htm +share/doc/html/postgresql/postgres/c43624375.htm +share/doc/html/postgresql/postgres/c4888.htm +share/doc/html/postgresql/postgres/c4933.htm +share/doc/html/postgresql/postgres/c49334943.htm +share/doc/html/postgresql/postgres/c49334947.htm +share/doc/html/postgresql/postgres/catalogs.gif +share/doc/html/postgresql/postgres/clientserver.gif +share/doc/html/postgresql/postgres/compiler.htm +share/doc/html/postgresql/postgres/connections.gif +share/doc/html/postgresql/postgres/copyright.htm +share/doc/html/postgresql/postgres/cvs.htm +share/doc/html/postgresql/postgres/cvs28436.htm +share/doc/html/postgresql/postgres/cvs28492.htm +share/doc/html/postgresql/postgres/datatype.htm +share/doc/html/postgresql/postgres/datatype1038.htm +share/doc/html/postgresql/postgres/datatype1070.htm +share/doc/html/postgresql/postgres/datatype1134.htm +share/doc/html/postgresql/postgres/datatype1649.htm +share/doc/html/postgresql/postgres/datatype1681.htm +share/doc/html/postgresql/postgres/datatype1920.htm +share/doc/html/postgresql/postgres/datetime-appendix.htm +share/doc/html/postgresql/postgres/datetime-appendix28356.htm +share/doc/html/postgresql/postgres/dfunc.htm +share/doc/html/postgresql/postgres/dfunc20136.htm +share/doc/html/postgresql/postgres/dfunc20146.htm +share/doc/html/postgresql/postgres/disk.htm +share/doc/html/postgresql/postgres/docguide.htm +share/doc/html/postgresql/postgres/docguide28718.htm +share/doc/html/postgresql/postgres/docguide28749.htm +share/doc/html/postgresql/postgres/docguide28840.htm +share/doc/html/postgresql/postgres/docguide28861.htm +share/doc/html/postgresql/postgres/docguide28887.htm +share/doc/html/postgresql/postgres/docguide29024.htm +share/doc/html/postgresql/postgres/docguide29362.htm +share/doc/html/postgresql/postgres/environ.htm +share/doc/html/postgresql/postgres/extend.htm +share/doc/html/postgresql/postgres/extend18852.htm +share/doc/html/postgresql/postgres/extend18864.htm +share/doc/html/postgresql/postgres/func-ref.htm +share/doc/html/postgresql/postgres/functions.htm +share/doc/html/postgresql/postgres/functions2593.htm +share/doc/html/postgresql/postgres/functions2733.htm +share/doc/html/postgresql/postgres/functions2876.htm +share/doc/html/postgresql/postgres/functions2976.htm +share/doc/html/postgresql/postgres/functions3443.htm +share/doc/html/postgresql/postgres/functions3641.htm +share/doc/html/postgresql/postgres/geqo-biblio.htm +share/doc/html/postgresql/postgres/geqo.htm +share/doc/html/postgresql/postgres/geqo25594.htm +share/doc/html/postgresql/postgres/geqo25617.htm +share/doc/html/postgresql/postgres/geqo25655.htm +share/doc/html/postgresql/postgres/gist.htm +share/doc/html/postgresql/postgres/index.html +share/doc/html/postgresql/postgres/indices.htm +share/doc/html/postgresql/postgres/inherit.htm +share/doc/html/postgresql/postgres/install-win32.htm +share/doc/html/postgresql/postgres/install-win3217383.htm +share/doc/html/postgresql/postgres/install-win3217392.htm +share/doc/html/postgresql/postgres/install.htm +share/doc/html/postgresql/postgres/install17165.htm +share/doc/html/postgresql/postgres/intro.htm +share/doc/html/postgresql/postgres/intro176.htm +share/doc/html/postgresql/postgres/intro304.htm +share/doc/html/postgresql/postgres/intro60.htm +share/doc/html/postgresql/postgres/jdbc.htm +share/doc/html/postgresql/postgres/jdbc24909.htm +share/doc/html/postgresql/postgres/jdbc24921.htm +share/doc/html/postgresql/postgres/jdbc24927.htm +share/doc/html/postgresql/postgres/jdbc24935.htm +share/doc/html/postgresql/postgres/jdbc24953.htm +share/doc/html/postgresql/postgres/jdbc24990.htm +share/doc/html/postgresql/postgres/jdbc25021.htm +share/doc/html/postgresql/postgres/jdbc25026.htm +share/doc/html/postgresql/postgres/jdbc25030.htm +share/doc/html/postgresql/postgres/jdbc25056.htm +share/doc/html/postgresql/postgres/jdbc25086.htm +share/doc/html/postgresql/postgres/largeobjects.htm +share/doc/html/postgresql/postgres/largeobjects21625.htm +share/doc/html/postgresql/postgres/largeobjects21628.htm +share/doc/html/postgresql/postgres/largeobjects21707.htm +share/doc/html/postgresql/postgres/largeobjects21714.htm +share/doc/html/postgresql/postgres/largeobjects21718.htm +share/doc/html/postgresql/postgres/layout.gif +share/doc/html/postgresql/postgres/layout.htm +share/doc/html/postgresql/postgres/libpq-chapter.htm +share/doc/html/postgresql/postgres/libpq-chapter22422.htm +share/doc/html/postgresql/postgres/libpq-chapter22577.htm +share/doc/html/postgresql/postgres/libpq-chapter22724.htm +share/doc/html/postgresql/postgres/libpq-chapter22736.htm +share/doc/html/postgresql/postgres/libpq-chapter22774.htm +share/doc/html/postgresql/postgres/libpq-chapter22844.htm +share/doc/html/postgresql/postgres/libpq-chapter22857.htm +share/doc/html/postgresql/postgres/libpq-chapter22942.htm +share/doc/html/postgresql/postgres/libpq-envars.htm +share/doc/html/postgresql/postgres/libpq-threading.htm +share/doc/html/postgresql/postgres/libpqplusplus.htm +share/doc/html/postgresql/postgres/libpqplusplus23034.htm +share/doc/html/postgresql/postgres/libpqplusplus23044.htm +share/doc/html/postgresql/postgres/libpqplusplus23074.htm +share/doc/html/postgresql/postgres/libpqplusplus23179.htm +share/doc/html/postgresql/postgres/libpqplusplus23202.htm +share/doc/html/postgresql/postgres/lisp.htm +share/doc/html/postgresql/postgres/manage-ag.htm +share/doc/html/postgresql/postgres/manage-ag17914.htm +share/doc/html/postgresql/postgres/manage-ag17956.htm +share/doc/html/postgresql/postgres/manage-ag17965.htm +share/doc/html/postgresql/postgres/manage.htm +share/doc/html/postgresql/postgres/manage4814.htm +share/doc/html/postgresql/postgres/manage4838.htm +share/doc/html/postgresql/postgres/manage4880.htm +share/doc/html/postgresql/postgres/mvcc.htm +share/doc/html/postgresql/postgres/mvcc4568.htm +share/doc/html/postgresql/postgres/mvcc4621.htm +share/doc/html/postgresql/postgres/mvcc4633.htm +share/doc/html/postgresql/postgres/mvcc4646.htm +share/doc/html/postgresql/postgres/mvcc4723.htm +share/doc/html/postgresql/postgres/mvcc4744.htm +share/doc/html/postgresql/postgres/newuser.htm +share/doc/html/postgresql/postgres/notation.htm +share/doc/html/postgresql/postgres/odbc.htm +share/doc/html/postgresql/postgres/odbc24433.htm +share/doc/html/postgresql/postgres/odbc24471.htm +share/doc/html/postgresql/postgres/odbc24644.htm +share/doc/html/postgresql/postgres/odbc24666.htm +share/doc/html/postgresql/postgres/operators.htm +share/doc/html/postgresql/postgres/operators2127.htm +share/doc/html/postgresql/postgres/operators2198.htm +share/doc/html/postgresql/postgres/operators2267.htm +share/doc/html/postgresql/postgres/operators2377.htm +share/doc/html/postgresql/postgres/operators2436.htm +share/doc/html/postgresql/postgres/operators2490.htm +share/doc/html/postgresql/postgres/overview.htm +share/doc/html/postgresql/postgres/overview25194.htm +share/doc/html/postgresql/postgres/overview25219.htm +share/doc/html/postgresql/postgres/overview25347.htm +share/doc/html/postgresql/postgres/overview25403.htm +share/doc/html/postgresql/postgres/overview25457.htm +share/doc/html/postgresql/postgres/page.htm +share/doc/html/postgresql/postgres/page26805.htm +share/doc/html/postgresql/postgres/page26819.htm +share/doc/html/postgresql/postgres/part-admin.htm +share/doc/html/postgresql/postgres/part-appendix.htm +share/doc/html/postgresql/postgres/part-developer.htm +share/doc/html/postgresql/postgres/part-interfaces.htm +share/doc/html/postgresql/postgres/part-programmer.htm +share/doc/html/postgresql/postgres/part-tutorial.htm +share/doc/html/postgresql/postgres/part-user.htm +share/doc/html/postgresql/postgres/partial-index.htm +share/doc/html/postgresql/postgres/pg-options-dev.htm +share/doc/html/postgresql/postgres/pg-options.htm +share/doc/html/postgresql/postgres/pgeasy-chapter.htm +share/doc/html/postgresql/postgres/pgtcl-pgconndefaults.htm +share/doc/html/postgresql/postgres/pgtcl-pgconnect.htm +share/doc/html/postgresql/postgres/pgtcl-pgdisconnect.htm +share/doc/html/postgresql/postgres/pgtcl-pgexec.htm +share/doc/html/postgresql/postgres/pgtcl-pglisten.htm +share/doc/html/postgresql/postgres/pgtcl-pgloclose.htm +share/doc/html/postgresql/postgres/pgtcl-pglocreat.htm +share/doc/html/postgresql/postgres/pgtcl-pgloexport.htm +share/doc/html/postgresql/postgres/pgtcl-pgloimport.htm +share/doc/html/postgresql/postgres/pgtcl-pglolseek.htm +share/doc/html/postgresql/postgres/pgtcl-pgloopen.htm +share/doc/html/postgresql/postgres/pgtcl-pgloread.htm +share/doc/html/postgresql/postgres/pgtcl-pglotell.htm +share/doc/html/postgresql/postgres/pgtcl-pglounlink.htm +share/doc/html/postgresql/postgres/pgtcl-pglowrite.htm +share/doc/html/postgresql/postgres/pgtcl-pgresult.htm +share/doc/html/postgresql/postgres/pgtcl-pgselect.htm +share/doc/html/postgresql/postgres/pgtcl.htm +share/doc/html/postgresql/postgres/pgtcl23317.htm +share/doc/html/postgresql/postgres/pgtcl23321.htm +share/doc/html/postgresql/postgres/pl-perl.htm +share/doc/html/postgresql/postgres/pl-perl4533.htm +share/doc/html/postgresql/postgres/pl-perl4542.htm +share/doc/html/postgresql/postgres/ports.htm +share/doc/html/postgresql/postgres/ports16791.htm +share/doc/html/postgresql/postgres/postgres.htm +share/doc/html/postgresql/postgres/postgres.html +share/doc/html/postgresql/postgres/postmaster.htm +share/doc/html/postgresql/postgres/preface.htm +share/doc/html/postgresql/postgres/protocol.htm +share/doc/html/postgresql/postgres/protocol25770.htm +share/doc/html/postgresql/postgres/protocol25925.htm +share/doc/html/postgresql/postgres/protocol25962.htm +share/doc/html/postgresql/postgres/query.htm +share/doc/html/postgresql/postgres/query27752.htm +share/doc/html/postgresql/postgres/query27768.htm +share/doc/html/postgresql/postgres/query27790.htm +share/doc/html/postgresql/postgres/query27799.htm +share/doc/html/postgresql/postgres/query27817.htm +share/doc/html/postgresql/postgres/query27825.htm +share/doc/html/postgresql/postgres/query27844.htm +share/doc/html/postgresql/postgres/query27849.htm +share/doc/html/postgresql/postgres/query27856.htm +share/doc/html/postgresql/postgres/recovery.htm +share/doc/html/postgresql/postgres/regress.htm +share/doc/html/postgresql/postgres/regress18171.htm +share/doc/html/postgresql/postgres/regress18205.htm +share/doc/html/postgresql/postgres/regress18251.htm +share/doc/html/postgresql/postgres/release.htm +share/doc/html/postgresql/postgres/release18319.htm +share/doc/html/postgresql/postgres/release18330.htm +share/doc/html/postgresql/postgres/release18341.htm +share/doc/html/postgresql/postgres/release18352.htm +share/doc/html/postgresql/postgres/release18434.htm +share/doc/html/postgresql/postgres/release18445.htm +share/doc/html/postgresql/postgres/release18456.htm +share/doc/html/postgresql/postgres/release18497.htm +share/doc/html/postgresql/postgres/release18513.htm +share/doc/html/postgresql/postgres/release18532.htm +share/doc/html/postgresql/postgres/release18576.htm +share/doc/html/postgresql/postgres/release18598.htm +share/doc/html/postgresql/postgres/release18613.htm +share/doc/html/postgresql/postgres/release18622.htm +share/doc/html/postgresql/postgres/release18645.htm +share/doc/html/postgresql/postgres/release18659.htm +share/doc/html/postgresql/postgres/release18662.htm +share/doc/html/postgresql/postgres/release18687.htm +share/doc/html/postgresql/postgres/release18724.htm +share/doc/html/postgresql/postgres/release18731.htm +share/doc/html/postgresql/postgres/release18738.htm +share/doc/html/postgresql/postgres/release18745.htm +share/doc/html/postgresql/postgres/release18749.htm +share/doc/html/postgresql/postgres/rules.htm +share/doc/html/postgresql/postgres/rules19478.htm +share/doc/html/postgresql/postgres/rules19639.htm +share/doc/html/postgresql/postgres/rules19770.htm +share/doc/html/postgresql/postgres/rules19784.htm +share/doc/html/postgresql/postgres/runtime.htm +share/doc/html/postgresql/postgres/security.htm +share/doc/html/postgresql/postgres/security17760.htm +share/doc/html/postgresql/postgres/security17795.htm +share/doc/html/postgresql/postgres/security17819.htm +share/doc/html/postgresql/postgres/security17840.htm +share/doc/html/postgresql/postgres/signals.htm +share/doc/html/postgresql/postgres/spi-spiconnect.htm +share/doc/html/postgresql/postgres/spi-spicopytuple.htm +share/doc/html/postgresql/postgres/spi-spiexec.htm +share/doc/html/postgresql/postgres/spi-spiexecp.htm +share/doc/html/postgresql/postgres/spi-spifinish.htm +share/doc/html/postgresql/postgres/spi-spifname.htm +share/doc/html/postgresql/postgres/spi-spifnumber.htm +share/doc/html/postgresql/postgres/spi-spigetbinval.htm +share/doc/html/postgresql/postgres/spi-spigetrelname.htm +share/doc/html/postgresql/postgres/spi-spigettype.htm +share/doc/html/postgresql/postgres/spi-spigettypeid.htm +share/doc/html/postgresql/postgres/spi-spigetvalue.htm +share/doc/html/postgresql/postgres/spi-spimodifytuple.htm +share/doc/html/postgresql/postgres/spi-spipalloc.htm +share/doc/html/postgresql/postgres/spi-spipfree.htm +share/doc/html/postgresql/postgres/spi-spiprepare.htm +share/doc/html/postgresql/postgres/spi-spirepalloc.htm +share/doc/html/postgresql/postgres/spi-spisaveplan.htm +share/doc/html/postgresql/postgres/spi.htm +share/doc/html/postgresql/postgres/spi20808.htm +share/doc/html/postgresql/postgres/spi21521.htm +share/doc/html/postgresql/postgres/spi21543.htm +share/doc/html/postgresql/postgres/spi21548.htm +share/doc/html/postgresql/postgres/sql-abort.htm +share/doc/html/postgresql/postgres/sql-altergroup.htm +share/doc/html/postgresql/postgres/sql-altertable.htm +share/doc/html/postgresql/postgres/sql-alteruser.htm +share/doc/html/postgresql/postgres/sql-begin.htm +share/doc/html/postgresql/postgres/sql-close.htm +share/doc/html/postgresql/postgres/sql-cluster.htm +share/doc/html/postgresql/postgres/sql-commands.htm +share/doc/html/postgresql/postgres/sql-comment.htm +share/doc/html/postgresql/postgres/sql-commit.htm +share/doc/html/postgresql/postgres/sql-copy.htm +share/doc/html/postgresql/postgres/sql-createaggregate.htm +share/doc/html/postgresql/postgres/sql-createconstraint.htm +share/doc/html/postgresql/postgres/sql-createdatabase.htm +share/doc/html/postgresql/postgres/sql-createfunction.htm +share/doc/html/postgresql/postgres/sql-creategroup.htm +share/doc/html/postgresql/postgres/sql-createindex.htm +share/doc/html/postgresql/postgres/sql-createlanguage.htm +share/doc/html/postgresql/postgres/sql-createoperator.htm +share/doc/html/postgresql/postgres/sql-createrule.htm +share/doc/html/postgresql/postgres/sql-createsequence.htm +share/doc/html/postgresql/postgres/sql-createtable.htm +share/doc/html/postgresql/postgres/sql-createtableas.htm +share/doc/html/postgresql/postgres/sql-createtrigger.htm +share/doc/html/postgresql/postgres/sql-createtype.htm +share/doc/html/postgresql/postgres/sql-createuser.htm +share/doc/html/postgresql/postgres/sql-createview.htm +share/doc/html/postgresql/postgres/sql-declare.htm +share/doc/html/postgresql/postgres/sql-delete.htm +share/doc/html/postgresql/postgres/sql-dropaggregate.htm +share/doc/html/postgresql/postgres/sql-dropdatabase.htm +share/doc/html/postgresql/postgres/sql-dropfunction.htm +share/doc/html/postgresql/postgres/sql-dropgroup.htm +share/doc/html/postgresql/postgres/sql-dropindex.htm +share/doc/html/postgresql/postgres/sql-droplanguage.htm +share/doc/html/postgresql/postgres/sql-dropoperator.htm +share/doc/html/postgresql/postgres/sql-droprule.htm +share/doc/html/postgresql/postgres/sql-dropsequence.htm +share/doc/html/postgresql/postgres/sql-droptable.htm +share/doc/html/postgresql/postgres/sql-droptrigger.htm +share/doc/html/postgresql/postgres/sql-droptype.htm +share/doc/html/postgresql/postgres/sql-dropuser.htm +share/doc/html/postgresql/postgres/sql-dropview.htm +share/doc/html/postgresql/postgres/sql-end.htm +share/doc/html/postgresql/postgres/sql-explain.htm +share/doc/html/postgresql/postgres/sql-fetch.htm +share/doc/html/postgresql/postgres/sql-grant.htm +share/doc/html/postgresql/postgres/sql-insert.htm +share/doc/html/postgresql/postgres/sql-language.htm +share/doc/html/postgresql/postgres/sql-listen.htm +share/doc/html/postgresql/postgres/sql-load.htm +share/doc/html/postgresql/postgres/sql-lock.htm +share/doc/html/postgresql/postgres/sql-move.htm +share/doc/html/postgresql/postgres/sql-notify.htm +share/doc/html/postgresql/postgres/sql-reindex.htm +share/doc/html/postgresql/postgres/sql-reset.htm +share/doc/html/postgresql/postgres/sql-revoke.htm +share/doc/html/postgresql/postgres/sql-rollback.htm +share/doc/html/postgresql/postgres/sql-select.htm +share/doc/html/postgresql/postgres/sql-selectinto.htm +share/doc/html/postgresql/postgres/sql-set.htm +share/doc/html/postgresql/postgres/sql-show.htm +share/doc/html/postgresql/postgres/sql-truncate.htm +share/doc/html/postgresql/postgres/sql-unlisten.htm +share/doc/html/postgresql/postgres/sql-update.htm +share/doc/html/postgresql/postgres/sql-vacuum.htm +share/doc/html/postgresql/postgres/sql.htm +share/doc/html/postgresql/postgres/sql26902.htm +share/doc/html/postgresql/postgres/sql27020.htm +share/doc/html/postgresql/postgres/start.htm +share/doc/html/postgresql/postgres/start27628.htm +share/doc/html/postgresql/postgres/start27650.htm +share/doc/html/postgresql/postgres/storage.htm +share/doc/html/postgresql/postgres/syntax.htm +share/doc/html/postgresql/postgres/syntax519.htm +share/doc/html/postgresql/postgres/syntax525.htm +share/doc/html/postgresql/postgres/syntax543.htm +share/doc/html/postgresql/postgres/syntax608.htm +share/doc/html/postgresql/postgres/syntax653.htm +share/doc/html/postgresql/postgres/syntax658.htm +share/doc/html/postgresql/postgres/terminology.htm +share/doc/html/postgresql/postgres/triggers.htm +share/doc/html/postgresql/postgres/triggers20224.htm +share/doc/html/postgresql/postgres/triggers20281.htm +share/doc/html/postgresql/postgres/triggers20290.htm +share/doc/html/postgresql/postgres/trouble.htm +share/doc/html/postgresql/postgres/trouble18031.htm +share/doc/html/postgresql/postgres/trouble18048.htm +share/doc/html/postgresql/postgres/typeconv.htm +share/doc/html/postgresql/postgres/typeconv3759.htm +share/doc/html/postgresql/postgres/typeconv3822.htm +share/doc/html/postgresql/postgres/typeconv3875.htm +share/doc/html/postgresql/postgres/typeconv3895.htm +share/doc/html/postgresql/postgres/utilities.htm +share/doc/html/postgresql/postgres/xaggr.htm +share/doc/html/postgresql/postgres/xfunc.htm +share/doc/html/postgresql/postgres/xfunc19011.htm +share/doc/html/postgresql/postgres/xfunc19017.htm +share/doc/html/postgresql/postgres/xfunc19022.htm +share/doc/html/postgresql/postgres/xfunc19254.htm +share/doc/html/postgresql/postgres/xindex.htm +share/doc/html/postgresql/postgres/xoper.htm +share/doc/html/postgresql/postgres/xplang.htm +share/doc/html/postgresql/postgres/xtypes.htm +share/doc/html/postgresql/postgres/y2k.htm +share/doc/html/postgresql/programmer/arch-pg.htm +share/doc/html/postgresql/programmer/biblio.htm +share/doc/html/postgresql/programmer/bki.htm +share/doc/html/postgresql/programmer/bki8058.htm +share/doc/html/postgresql/programmer/bki8142.htm +share/doc/html/postgresql/programmer/bki8166.htm +share/doc/html/postgresql/programmer/bki8227.htm +share/doc/html/postgresql/programmer/c1486.htm +share/doc/html/postgresql/programmer/c5391.htm +share/doc/html/postgresql/programmer/c53915433.htm +share/doc/html/postgresql/programmer/c53915451.htm +share/doc/html/postgresql/programmer/c53915593.htm +share/doc/html/postgresql/programmer/c53915605.htm +share/doc/html/postgresql/programmer/c53915625.htm +share/doc/html/postgresql/programmer/c53915630.htm +share/doc/html/postgresql/programmer/c6614.htm +share/doc/html/postgresql/programmer/catalogs.gif +share/doc/html/postgresql/programmer/compiler.htm +share/doc/html/postgresql/programmer/connections.gif +share/doc/html/postgresql/programmer/copyright.htm +share/doc/html/postgresql/programmer/cvs.htm +share/doc/html/postgresql/programmer/cvs8365.htm +share/doc/html/postgresql/programmer/cvs8421.htm +share/doc/html/postgresql/programmer/dfunc.htm +share/doc/html/postgresql/programmer/dfunc1679.htm +share/doc/html/postgresql/programmer/dfunc1689.htm +share/doc/html/postgresql/programmer/docguide.htm +share/doc/html/postgresql/programmer/docguide8647.htm +share/doc/html/postgresql/programmer/docguide8678.htm +share/doc/html/postgresql/programmer/docguide8769.htm +share/doc/html/postgresql/programmer/docguide8790.htm +share/doc/html/postgresql/programmer/docguide8816.htm +share/doc/html/postgresql/programmer/docguide8953.htm +share/doc/html/postgresql/programmer/docguide9291.htm +share/doc/html/postgresql/programmer/extend.htm +share/doc/html/postgresql/programmer/extend352.htm +share/doc/html/postgresql/programmer/extend364.htm +share/doc/html/postgresql/programmer/geqo-biblio.htm +share/doc/html/postgresql/programmer/geqo.htm +share/doc/html/postgresql/programmer/geqo7079.htm +share/doc/html/postgresql/programmer/geqo7102.htm +share/doc/html/postgresql/programmer/geqo7140.htm +share/doc/html/postgresql/programmer/gist.htm +share/doc/html/postgresql/programmer/index.html +share/doc/html/postgresql/programmer/intro-pg.htm +share/doc/html/postgresql/programmer/intro-pg167.htm +share/doc/html/postgresql/programmer/jdbc.htm +share/doc/html/postgresql/programmer/jdbc6398.htm +share/doc/html/postgresql/programmer/jdbc6410.htm +share/doc/html/postgresql/programmer/jdbc6416.htm +share/doc/html/postgresql/programmer/jdbc6424.htm +share/doc/html/postgresql/programmer/jdbc6442.htm +share/doc/html/postgresql/programmer/jdbc6479.htm +share/doc/html/postgresql/programmer/jdbc6510.htm +share/doc/html/postgresql/programmer/jdbc6515.htm +share/doc/html/postgresql/programmer/jdbc6519.htm +share/doc/html/postgresql/programmer/jdbc6545.htm +share/doc/html/postgresql/programmer/jdbc6575.htm +share/doc/html/postgresql/programmer/largeobjects.htm +share/doc/html/postgresql/programmer/largeobjects3114.htm +share/doc/html/postgresql/programmer/largeobjects3117.htm +share/doc/html/postgresql/programmer/largeobjects3196.htm +share/doc/html/postgresql/programmer/largeobjects3203.htm +share/doc/html/postgresql/programmer/largeobjects3207.htm +share/doc/html/postgresql/programmer/libpq-chapter.htm +share/doc/html/postgresql/programmer/libpq-chapter3419.htm +share/doc/html/postgresql/programmer/libpq-chapter3574.htm +share/doc/html/postgresql/programmer/libpq-chapter3721.htm +share/doc/html/postgresql/programmer/libpq-chapter3733.htm +share/doc/html/postgresql/programmer/libpq-chapter3771.htm +share/doc/html/postgresql/programmer/libpq-chapter3841.htm +share/doc/html/postgresql/programmer/libpq-chapter3854.htm +share/doc/html/postgresql/programmer/libpq-chapter3939.htm +share/doc/html/postgresql/programmer/libpq-envars.htm +share/doc/html/postgresql/programmer/libpq-threading.htm +share/doc/html/postgresql/programmer/libpqplusplus.htm +share/doc/html/postgresql/programmer/libpqplusplus4031.htm +share/doc/html/postgresql/programmer/libpqplusplus4041.htm +share/doc/html/postgresql/programmer/libpqplusplus4071.htm +share/doc/html/postgresql/programmer/libpqplusplus4176.htm +share/doc/html/postgresql/programmer/libpqplusplus4199.htm +share/doc/html/postgresql/programmer/lisp.htm +share/doc/html/postgresql/programmer/notation.htm +share/doc/html/postgresql/programmer/odbc.htm +share/doc/html/postgresql/programmer/odbc5922.htm +share/doc/html/postgresql/programmer/odbc5960.htm +share/doc/html/postgresql/programmer/odbc6133.htm +share/doc/html/postgresql/programmer/odbc6155.htm +share/doc/html/postgresql/programmer/overview.htm +share/doc/html/postgresql/programmer/overview6679.htm +share/doc/html/postgresql/programmer/overview6704.htm +share/doc/html/postgresql/programmer/overview6832.htm +share/doc/html/postgresql/programmer/overview6888.htm +share/doc/html/postgresql/programmer/overview6942.htm +share/doc/html/postgresql/programmer/page.htm +share/doc/html/postgresql/programmer/page8290.htm +share/doc/html/postgresql/programmer/page8304.htm +share/doc/html/postgresql/programmer/pg-options-dev.htm +share/doc/html/postgresql/programmer/pgeasy-chapter.htm +share/doc/html/postgresql/programmer/pgtcl-pgconndefaults.htm +share/doc/html/postgresql/programmer/pgtcl-pgconnect.htm +share/doc/html/postgresql/programmer/pgtcl-pgdisconnect.htm +share/doc/html/postgresql/programmer/pgtcl-pgexec.htm +share/doc/html/postgresql/programmer/pgtcl-pglisten.htm +share/doc/html/postgresql/programmer/pgtcl-pgloclose.htm +share/doc/html/postgresql/programmer/pgtcl-pglocreat.htm +share/doc/html/postgresql/programmer/pgtcl-pgloexport.htm +share/doc/html/postgresql/programmer/pgtcl-pgloimport.htm +share/doc/html/postgresql/programmer/pgtcl-pglolseek.htm +share/doc/html/postgresql/programmer/pgtcl-pgloopen.htm +share/doc/html/postgresql/programmer/pgtcl-pgloread.htm +share/doc/html/postgresql/programmer/pgtcl-pglotell.htm +share/doc/html/postgresql/programmer/pgtcl-pglounlink.htm +share/doc/html/postgresql/programmer/pgtcl-pglowrite.htm +share/doc/html/postgresql/programmer/pgtcl-pgresult.htm +share/doc/html/postgresql/programmer/pgtcl-pgselect.htm +share/doc/html/postgresql/programmer/pgtcl.htm +share/doc/html/postgresql/programmer/pgtcl4314.htm +share/doc/html/postgresql/programmer/pgtcl4318.htm +share/doc/html/postgresql/programmer/preface.htm +share/doc/html/postgresql/programmer/programmer.htm +share/doc/html/postgresql/programmer/programmer.html +share/doc/html/postgresql/programmer/protocol.htm +share/doc/html/postgresql/programmer/protocol7255.htm +share/doc/html/postgresql/programmer/protocol7410.htm +share/doc/html/postgresql/programmer/protocol7447.htm +share/doc/html/postgresql/programmer/rules.htm +share/doc/html/postgresql/programmer/rules1139.htm +share/doc/html/postgresql/programmer/rules1270.htm +share/doc/html/postgresql/programmer/rules1284.htm +share/doc/html/postgresql/programmer/rules978.htm +share/doc/html/postgresql/programmer/signals.htm +share/doc/html/postgresql/programmer/spi-spiconnect.htm +share/doc/html/postgresql/programmer/spi-spicopytuple.htm +share/doc/html/postgresql/programmer/spi-spiexec.htm +share/doc/html/postgresql/programmer/spi-spiexecp.htm +share/doc/html/postgresql/programmer/spi-spifinish.htm +share/doc/html/postgresql/programmer/spi-spifname.htm +share/doc/html/postgresql/programmer/spi-spifnumber.htm +share/doc/html/postgresql/programmer/spi-spigetbinval.htm +share/doc/html/postgresql/programmer/spi-spigetrelname.htm +share/doc/html/postgresql/programmer/spi-spigettype.htm +share/doc/html/postgresql/programmer/spi-spigettypeid.htm +share/doc/html/postgresql/programmer/spi-spigetvalue.htm +share/doc/html/postgresql/programmer/spi-spimodifytuple.htm +share/doc/html/postgresql/programmer/spi-spipalloc.htm +share/doc/html/postgresql/programmer/spi-spipfree.htm +share/doc/html/postgresql/programmer/spi-spiprepare.htm +share/doc/html/postgresql/programmer/spi-spirepalloc.htm +share/doc/html/postgresql/programmer/spi-spisaveplan.htm +share/doc/html/postgresql/programmer/spi.htm +share/doc/html/postgresql/programmer/spi2351.htm +share/doc/html/postgresql/programmer/spi3064.htm +share/doc/html/postgresql/programmer/spi3086.htm +share/doc/html/postgresql/programmer/spi3091.htm +share/doc/html/postgresql/programmer/terminology.htm +share/doc/html/postgresql/programmer/triggers.htm +share/doc/html/postgresql/programmer/triggers1767.htm +share/doc/html/postgresql/programmer/triggers1824.htm +share/doc/html/postgresql/programmer/triggers1833.htm +share/doc/html/postgresql/programmer/xaggr.htm +share/doc/html/postgresql/programmer/xfunc.htm +share/doc/html/postgresql/programmer/xfunc511.htm +share/doc/html/postgresql/programmer/xfunc517.htm +share/doc/html/postgresql/programmer/xfunc522.htm +share/doc/html/postgresql/programmer/xfunc754.htm +share/doc/html/postgresql/programmer/xindex.htm +share/doc/html/postgresql/programmer/xoper.htm +share/doc/html/postgresql/programmer/xplang.htm +share/doc/html/postgresql/programmer/xtypes.htm +share/doc/html/postgresql/programmer/y2k.htm +share/doc/html/postgresql/tutorial/about.htm +share/doc/html/postgresql/tutorial/advanced.htm +share/doc/html/postgresql/tutorial/advanced1511.htm +share/doc/html/postgresql/tutorial/advanced1533.htm +share/doc/html/postgresql/tutorial/arch.htm +share/doc/html/postgresql/tutorial/biblio.htm +share/doc/html/postgresql/tutorial/clientserver.gif +share/doc/html/postgresql/tutorial/copyright.htm +share/doc/html/postgresql/tutorial/f17.htm +share/doc/html/postgresql/tutorial/index.html +share/doc/html/postgresql/tutorial/intro.htm +share/doc/html/postgresql/tutorial/intro172.htm +share/doc/html/postgresql/tutorial/intro300.htm +share/doc/html/postgresql/tutorial/intro56.htm +share/doc/html/postgresql/tutorial/notation.htm +share/doc/html/postgresql/tutorial/query.htm +share/doc/html/postgresql/tutorial/query1340.htm +share/doc/html/postgresql/tutorial/query1356.htm +share/doc/html/postgresql/tutorial/query1378.htm +share/doc/html/postgresql/tutorial/query1387.htm +share/doc/html/postgresql/tutorial/query1405.htm +share/doc/html/postgresql/tutorial/query1413.htm +share/doc/html/postgresql/tutorial/query1432.htm +share/doc/html/postgresql/tutorial/query1437.htm +share/doc/html/postgresql/tutorial/query1444.htm +share/doc/html/postgresql/tutorial/sql-language.htm +share/doc/html/postgresql/tutorial/sql.htm +share/doc/html/postgresql/tutorial/sql490.htm +share/doc/html/postgresql/tutorial/sql608.htm +share/doc/html/postgresql/tutorial/start.htm +share/doc/html/postgresql/tutorial/start1216.htm +share/doc/html/postgresql/tutorial/start1238.htm +share/doc/html/postgresql/tutorial/terminology.htm +share/doc/html/postgresql/tutorial/tutorial.htm +share/doc/html/postgresql/tutorial/tutorial.html +share/doc/html/postgresql/tutorial/y2k.htm +share/doc/html/postgresql/user/about.htm +share/doc/html/postgresql/user/app-createdb.htm +share/doc/html/postgresql/user/app-createlang.htm +share/doc/html/postgresql/user/app-createuser.htm +share/doc/html/postgresql/user/app-dropdb.htm +share/doc/html/postgresql/user/app-droplang.htm +share/doc/html/postgresql/user/app-dropuser.htm +share/doc/html/postgresql/user/app-ecpg.htm +share/doc/html/postgresql/user/app-initdb.htm +share/doc/html/postgresql/user/app-initlocation.htm +share/doc/html/postgresql/user/app-ipcclean.htm +share/doc/html/postgresql/user/app-pg-passwd.htm +share/doc/html/postgresql/user/app-pg-upgrade.htm +share/doc/html/postgresql/user/app-pgaccess.htm +share/doc/html/postgresql/user/app-pgadmin.htm +share/doc/html/postgresql/user/app-pgctl.htm +share/doc/html/postgresql/user/app-pgdump.htm +share/doc/html/postgresql/user/app-pgdumpall.htm +share/doc/html/postgresql/user/app-pgtclsh.htm +share/doc/html/postgresql/user/app-pgtksh.htm +share/doc/html/postgresql/user/app-postgres.htm +share/doc/html/postgresql/user/app-postmaster.htm +share/doc/html/postgresql/user/app-psql.htm +share/doc/html/postgresql/user/app-vacuumdb.htm +share/doc/html/postgresql/user/applications.htm +share/doc/html/postgresql/user/arrays.htm +share/doc/html/postgresql/user/biblio.htm +share/doc/html/postgresql/user/c4087.htm +share/doc/html/postgresql/user/c40874113.htm +share/doc/html/postgresql/user/c40874340.htm +share/doc/html/postgresql/user/c4358.htm +share/doc/html/postgresql/user/c43584371.htm +share/doc/html/postgresql/user/c4884.htm +share/doc/html/postgresql/user/c4929.htm +share/doc/html/postgresql/user/c49294939.htm +share/doc/html/postgresql/user/c49294943.htm +share/doc/html/postgresql/user/copyright.htm +share/doc/html/postgresql/user/datatype.htm +share/doc/html/postgresql/user/datatype1034.htm +share/doc/html/postgresql/user/datatype1066.htm +share/doc/html/postgresql/user/datatype1130.htm +share/doc/html/postgresql/user/datatype1645.htm +share/doc/html/postgresql/user/datatype1677.htm +share/doc/html/postgresql/user/datatype1916.htm +share/doc/html/postgresql/user/datetime-appendix.htm +share/doc/html/postgresql/user/datetime-appendix16981.htm +share/doc/html/postgresql/user/environ.htm +share/doc/html/postgresql/user/functions.htm +share/doc/html/postgresql/user/functions2589.htm +share/doc/html/postgresql/user/functions2729.htm +share/doc/html/postgresql/user/functions2872.htm +share/doc/html/postgresql/user/functions2972.htm +share/doc/html/postgresql/user/functions3439.htm +share/doc/html/postgresql/user/functions3637.htm +share/doc/html/postgresql/user/index.html +share/doc/html/postgresql/user/indices.htm +share/doc/html/postgresql/user/inherit.htm +share/doc/html/postgresql/user/intro.htm +share/doc/html/postgresql/user/intro172.htm +share/doc/html/postgresql/user/intro300.htm +share/doc/html/postgresql/user/intro56.htm +share/doc/html/postgresql/user/manage.htm +share/doc/html/postgresql/user/manage4810.htm +share/doc/html/postgresql/user/manage4834.htm +share/doc/html/postgresql/user/manage4876.htm +share/doc/html/postgresql/user/mvcc.htm +share/doc/html/postgresql/user/mvcc4564.htm +share/doc/html/postgresql/user/mvcc4617.htm +share/doc/html/postgresql/user/mvcc4629.htm +share/doc/html/postgresql/user/mvcc4642.htm +share/doc/html/postgresql/user/mvcc4719.htm +share/doc/html/postgresql/user/mvcc4740.htm +share/doc/html/postgresql/user/notation.htm +share/doc/html/postgresql/user/operators.htm +share/doc/html/postgresql/user/operators2123.htm +share/doc/html/postgresql/user/operators2194.htm +share/doc/html/postgresql/user/operators2263.htm +share/doc/html/postgresql/user/operators2373.htm +share/doc/html/postgresql/user/operators2432.htm +share/doc/html/postgresql/user/operators2486.htm +share/doc/html/postgresql/user/partial-index.htm +share/doc/html/postgresql/user/pl-perl.htm +share/doc/html/postgresql/user/pl-perl4529.htm +share/doc/html/postgresql/user/pl-perl4538.htm +share/doc/html/postgresql/user/preface.htm +share/doc/html/postgresql/user/sql-abort.htm +share/doc/html/postgresql/user/sql-altergroup.htm +share/doc/html/postgresql/user/sql-altertable.htm +share/doc/html/postgresql/user/sql-alteruser.htm +share/doc/html/postgresql/user/sql-begin.htm +share/doc/html/postgresql/user/sql-close.htm +share/doc/html/postgresql/user/sql-cluster.htm +share/doc/html/postgresql/user/sql-commands.htm +share/doc/html/postgresql/user/sql-comment.htm +share/doc/html/postgresql/user/sql-commit.htm +share/doc/html/postgresql/user/sql-copy.htm +share/doc/html/postgresql/user/sql-createaggregate.htm +share/doc/html/postgresql/user/sql-createconstraint.htm +share/doc/html/postgresql/user/sql-createdatabase.htm +share/doc/html/postgresql/user/sql-createfunction.htm +share/doc/html/postgresql/user/sql-creategroup.htm +share/doc/html/postgresql/user/sql-createindex.htm +share/doc/html/postgresql/user/sql-createlanguage.htm +share/doc/html/postgresql/user/sql-createoperator.htm +share/doc/html/postgresql/user/sql-createrule.htm +share/doc/html/postgresql/user/sql-createsequence.htm +share/doc/html/postgresql/user/sql-createtable.htm +share/doc/html/postgresql/user/sql-createtableas.htm +share/doc/html/postgresql/user/sql-createtrigger.htm +share/doc/html/postgresql/user/sql-createtype.htm +share/doc/html/postgresql/user/sql-createuser.htm +share/doc/html/postgresql/user/sql-createview.htm +share/doc/html/postgresql/user/sql-declare.htm +share/doc/html/postgresql/user/sql-delete.htm +share/doc/html/postgresql/user/sql-dropaggregate.htm +share/doc/html/postgresql/user/sql-dropdatabase.htm +share/doc/html/postgresql/user/sql-dropfunction.htm +share/doc/html/postgresql/user/sql-dropgroup.htm +share/doc/html/postgresql/user/sql-dropindex.htm +share/doc/html/postgresql/user/sql-droplanguage.htm +share/doc/html/postgresql/user/sql-dropoperator.htm +share/doc/html/postgresql/user/sql-droprule.htm +share/doc/html/postgresql/user/sql-dropsequence.htm +share/doc/html/postgresql/user/sql-droptable.htm +share/doc/html/postgresql/user/sql-droptrigger.htm +share/doc/html/postgresql/user/sql-droptype.htm +share/doc/html/postgresql/user/sql-dropuser.htm +share/doc/html/postgresql/user/sql-dropview.htm +share/doc/html/postgresql/user/sql-end.htm +share/doc/html/postgresql/user/sql-explain.htm +share/doc/html/postgresql/user/sql-fetch.htm +share/doc/html/postgresql/user/sql-grant.htm +share/doc/html/postgresql/user/sql-insert.htm +share/doc/html/postgresql/user/sql-listen.htm +share/doc/html/postgresql/user/sql-load.htm +share/doc/html/postgresql/user/sql-lock.htm +share/doc/html/postgresql/user/sql-move.htm +share/doc/html/postgresql/user/sql-notify.htm +share/doc/html/postgresql/user/sql-reindex.htm +share/doc/html/postgresql/user/sql-reset.htm +share/doc/html/postgresql/user/sql-revoke.htm +share/doc/html/postgresql/user/sql-rollback.htm +share/doc/html/postgresql/user/sql-select.htm +share/doc/html/postgresql/user/sql-selectinto.htm +share/doc/html/postgresql/user/sql-set.htm +share/doc/html/postgresql/user/sql-show.htm +share/doc/html/postgresql/user/sql-truncate.htm +share/doc/html/postgresql/user/sql-unlisten.htm +share/doc/html/postgresql/user/sql-update.htm +share/doc/html/postgresql/user/sql-vacuum.htm +share/doc/html/postgresql/user/storage.htm +share/doc/html/postgresql/user/syntax.htm +share/doc/html/postgresql/user/syntax515.htm +share/doc/html/postgresql/user/syntax521.htm +share/doc/html/postgresql/user/syntax539.htm +share/doc/html/postgresql/user/syntax604.htm +share/doc/html/postgresql/user/syntax649.htm +share/doc/html/postgresql/user/syntax654.htm +share/doc/html/postgresql/user/terminology.htm +share/doc/html/postgresql/user/typeconv.htm +share/doc/html/postgresql/user/typeconv3755.htm +share/doc/html/postgresql/user/typeconv3818.htm +share/doc/html/postgresql/user/typeconv3871.htm +share/doc/html/postgresql/user/typeconv3891.htm +share/doc/html/postgresql/user/user.htm +share/doc/html/postgresql/user/user.html +share/doc/html/postgresql/user/utilities.htm +share/doc/html/postgresql/user/y2k.htm share/doc/postgresql/FAQ share/doc/postgresql/FAQ_DEV +share/doc/postgresql/README.Charsets share/doc/postgresql/README.fsync +share/doc/postgresql/README.inet +share/doc/postgresql/README.locale +share/doc/postgresql/README.mb +share/doc/postgresql/README.mb.jp share/doc/postgresql/TODO share/doc/postgresql/admin.ps.gz -share/doc/postgresql/admin/admin.htm -share/doc/postgresql/admin/admin.html -share/doc/postgresql/admin/biblio.htm -share/doc/postgresql/admin/config.htm -share/doc/postgresql/admin/config495.htm -share/doc/postgresql/admin/config570.htm -share/doc/postgresql/admin/config607.htm -share/doc/postgresql/admin/copyright.htm -share/doc/postgresql/admin/disk.htm -share/doc/postgresql/admin/index.html -share/doc/postgresql/admin/install-win32.htm -share/doc/postgresql/admin/install-win321181.htm -share/doc/postgresql/admin/install-win321190.htm -share/doc/postgresql/admin/install.htm -share/doc/postgresql/admin/install1119.htm -share/doc/postgresql/admin/install1139.htm -share/doc/postgresql/admin/install1148.htm -share/doc/postgresql/admin/install761.htm -share/doc/postgresql/admin/intro-ag.htm -share/doc/postgresql/admin/layout.gif -share/doc/postgresql/admin/layout.htm -share/doc/postgresql/admin/manage-ag.htm -share/doc/postgresql/admin/manage-ag1578.htm -share/doc/postgresql/admin/manage-ag1621.htm -share/doc/postgresql/admin/manage-ag1630.htm -share/doc/postgresql/admin/newuser.htm -share/doc/postgresql/admin/notation.htm -share/doc/postgresql/admin/pg-options.htm -share/doc/postgresql/admin/ports.htm -share/doc/postgresql/admin/ports428.htm -share/doc/postgresql/admin/postmaster.htm -share/doc/postgresql/admin/preface.htm -share/doc/postgresql/admin/recovery.htm -share/doc/postgresql/admin/regress.htm -share/doc/postgresql/admin/regress1794.htm -share/doc/postgresql/admin/regress1801.htm -share/doc/postgresql/admin/regress1838.htm -share/doc/postgresql/admin/release.htm -share/doc/postgresql/admin/release1893.htm -share/doc/postgresql/admin/release1975.htm -share/doc/postgresql/admin/release1986.htm -share/doc/postgresql/admin/release1997.htm -share/doc/postgresql/admin/release2038.htm -share/doc/postgresql/admin/release2054.htm -share/doc/postgresql/admin/release2073.htm -share/doc/postgresql/admin/release2117.htm -share/doc/postgresql/admin/release2139.htm -share/doc/postgresql/admin/release2154.htm -share/doc/postgresql/admin/release2163.htm -share/doc/postgresql/admin/release2186.htm -share/doc/postgresql/admin/release2200.htm -share/doc/postgresql/admin/release2203.htm -share/doc/postgresql/admin/release2228.htm -share/doc/postgresql/admin/release2265.htm -share/doc/postgresql/admin/release2272.htm -share/doc/postgresql/admin/release2279.htm -share/doc/postgresql/admin/release2286.htm -share/doc/postgresql/admin/release2290.htm -share/doc/postgresql/admin/runtime.htm -share/doc/postgresql/admin/security.htm -share/doc/postgresql/admin/security1467.htm -share/doc/postgresql/admin/security1486.htm -share/doc/postgresql/admin/security1510.htm -share/doc/postgresql/admin/terminology.htm -share/doc/postgresql/admin/trouble.htm -share/doc/postgresql/admin/trouble1696.htm -share/doc/postgresql/admin/trouble1711.htm -share/doc/postgresql/admin/y2k.htm share/doc/postgresql/bug.template share/doc/postgresql/internals.ps -share/doc/postgresql/postgres/about.htm -share/doc/postgresql/postgres/advanced.htm -share/doc/postgresql/postgres/advanced23214.htm -share/doc/postgresql/postgres/advanced23236.htm -share/doc/postgresql/postgres/advanced23256.htm -share/doc/postgresql/postgres/app-createdb.htm -share/doc/postgresql/postgres/app-createuser.htm -share/doc/postgresql/postgres/app-destroydb.htm -share/doc/postgresql/postgres/app-destroyuser.htm -share/doc/postgresql/postgres/app-initdb.htm -share/doc/postgresql/postgres/app-initlocation.htm -share/doc/postgresql/postgres/app-pg-dump.htm -share/doc/postgresql/postgres/app-pg-dumpall.htm -share/doc/postgresql/postgres/app-pgaccess.htm -share/doc/postgresql/postgres/app-pgadmin.htm -share/doc/postgresql/postgres/app-postgres.htm -share/doc/postgresql/postgres/app-postmaster.htm -share/doc/postgresql/postgres/app-psql.htm -share/doc/postgresql/postgres/app-vacuumdb.htm -share/doc/postgresql/postgres/arch-pg.htm -share/doc/postgresql/postgres/arch.htm -share/doc/postgresql/postgres/arrays.htm -share/doc/postgresql/postgres/biblio.htm -share/doc/postgresql/postgres/bki.htm -share/doc/postgresql/postgres/bki21904.htm -share/doc/postgresql/postgres/bki21989.htm -share/doc/postgresql/postgres/bki22013.htm -share/doc/postgresql/postgres/bki22074.htm -share/doc/postgresql/postgres/catalogs.gif -share/doc/postgresql/postgres/clientserver.gif -share/doc/postgresql/postgres/compiler.htm -share/doc/postgresql/postgres/config.htm -share/doc/postgresql/postgres/config12627.htm -share/doc/postgresql/postgres/config12702.htm -share/doc/postgresql/postgres/config12739.htm -share/doc/postgresql/postgres/connections.gif -share/doc/postgresql/postgres/copyright.htm -share/doc/postgresql/postgres/createtableas.htm -share/doc/postgresql/postgres/cvs.htm -share/doc/postgresql/postgres/cvs23724.htm -share/doc/postgresql/postgres/cvs23780.htm -share/doc/postgresql/postgres/datatype.htm -share/doc/postgresql/postgres/datatype1380.htm -share/doc/postgresql/postgres/datatype1412.htm -share/doc/postgresql/postgres/datatype1511.htm -share/doc/postgresql/postgres/datatype703.htm -share/doc/postgresql/postgres/datatype729.htm -share/doc/postgresql/postgres/datatype793.htm -share/doc/postgresql/postgres/datetime-appendix.htm -share/doc/postgresql/postgres/datetime-appendix23641.htm -share/doc/postgresql/postgres/dfunc.htm -share/doc/postgresql/postgres/dfunc15567.htm -share/doc/postgresql/postgres/dfunc15577.htm -share/doc/postgresql/postgres/disk.htm -share/doc/postgresql/postgres/docguide.htm -share/doc/postgresql/postgres/docguide24006.htm -share/doc/postgresql/postgres/docguide24037.htm -share/doc/postgresql/postgres/docguide25253.htm -share/doc/postgresql/postgres/docguide25274.htm -share/doc/postgresql/postgres/docguide25300.htm -share/doc/postgresql/postgres/docguide25388.htm -share/doc/postgresql/postgres/docguide25668.htm -share/doc/postgresql/postgres/ecpg.htm -share/doc/postgresql/postgres/ecpg17490.htm -share/doc/postgresql/postgres/ecpg17508.htm -share/doc/postgresql/postgres/ecpg17650.htm -share/doc/postgresql/postgres/ecpg17660.htm -share/doc/postgresql/postgres/ecpg17680.htm -share/doc/postgresql/postgres/ecpg17685.htm -share/doc/postgresql/postgres/environ.htm -share/doc/postgresql/postgres/extend.htm -share/doc/postgresql/postgres/extend14525.htm -share/doc/postgresql/postgres/extend14537.htm -share/doc/postgresql/postgres/func-ref.htm -share/doc/postgresql/postgres/functions.htm -share/doc/postgresql/postgres/functions2183.htm -share/doc/postgresql/postgres/functions2221.htm -share/doc/postgresql/postgres/functions2364.htm -share/doc/postgresql/postgres/functions2449.htm -share/doc/postgresql/postgres/functions2667.htm -share/doc/postgresql/postgres/geqo-biblio.htm -share/doc/postgresql/postgres/geqo.htm -share/doc/postgresql/postgres/geqo20921.htm -share/doc/postgresql/postgres/geqo20944.htm -share/doc/postgresql/postgres/geqo20982.htm -share/doc/postgresql/postgres/gist.htm -share/doc/postgresql/postgres/index.html -share/doc/postgresql/postgres/inherit.htm -share/doc/postgresql/postgres/install-win32.htm -share/doc/postgresql/postgres/install-win3213313.htm -share/doc/postgresql/postgres/install-win3213322.htm -share/doc/postgresql/postgres/install.htm -share/doc/postgresql/postgres/install12893.htm -share/doc/postgresql/postgres/install13251.htm -share/doc/postgresql/postgres/install13271.htm -share/doc/postgresql/postgres/install13280.htm -share/doc/postgresql/postgres/intro.htm -share/doc/postgresql/postgres/intro177.htm -share/doc/postgresql/postgres/intro60.htm -share/doc/postgresql/postgres/jdbc.htm -share/doc/postgresql/postgres/jdbc20288.htm -share/doc/postgresql/postgres/jdbc20301.htm -share/doc/postgresql/postgres/jdbc20308.htm -share/doc/postgresql/postgres/jdbc20316.htm -share/doc/postgresql/postgres/jdbc20334.htm -share/doc/postgresql/postgres/jdbc20371.htm -share/doc/postgresql/postgres/jdbc20402.htm -share/doc/postgresql/postgres/jdbc20406.htm -share/doc/postgresql/postgres/jdbc20410.htm -share/doc/postgresql/postgres/jdbc20429.htm -share/doc/postgresql/postgres/jdbc20459.htm -share/doc/postgresql/postgres/keys.htm -share/doc/postgresql/postgres/largeobjects.htm -share/doc/postgresql/postgres/largeobjects17378.htm -share/doc/postgresql/postgres/largeobjects17381.htm -share/doc/postgresql/postgres/largeobjects17433.htm -share/doc/postgresql/postgres/largeobjects17440.htm -share/doc/postgresql/postgres/largeobjects17444.htm -share/doc/postgresql/postgres/layout.gif -share/doc/postgresql/postgres/layout.htm -share/doc/postgresql/postgres/libpq-chapter.htm -share/doc/postgresql/postgres/libpq-chapter18058.htm -share/doc/postgresql/postgres/libpq-chapter18164.htm -share/doc/postgresql/postgres/libpq-chapter18210.htm -share/doc/postgresql/postgres/libpq-chapter18220.htm -share/doc/postgresql/postgres/libpq-chapter18236.htm -share/doc/postgresql/postgres/libpq-chapter18268.htm -share/doc/postgresql/postgres/libpq-chapter18281.htm -share/doc/postgresql/postgres/libpq-chapter18296.htm -share/doc/postgresql/postgres/libpq-chapter18372.htm -share/doc/postgresql/postgres/libpq-chapter18375.htm -share/doc/postgresql/postgres/libpq-envars.htm -share/doc/postgresql/postgres/libpqplusplus.htm -share/doc/postgresql/postgres/libpqplusplus18476.htm -share/doc/postgresql/postgres/libpqplusplus18486.htm -share/doc/postgresql/postgres/libpqplusplus18516.htm -share/doc/postgresql/postgres/libpqplusplus18617.htm -share/doc/postgresql/postgres/libpqplusplus18640.htm -share/doc/postgresql/postgres/libpqplusplus18683.htm -share/doc/postgresql/postgres/manage-ag.htm -share/doc/postgresql/postgres/manage-ag13710.htm -share/doc/postgresql/postgres/manage-ag13753.htm -share/doc/postgresql/postgres/manage-ag13762.htm -share/doc/postgresql/postgres/manage.htm -share/doc/postgresql/postgres/manage3306.htm -share/doc/postgresql/postgres/manage3330.htm -share/doc/postgresql/postgres/manage3371.htm -share/doc/postgresql/postgres/mvcc.htm -share/doc/postgresql/postgres/mvcc3058.htm -share/doc/postgresql/postgres/mvcc3111.htm -share/doc/postgresql/postgres/mvcc3123.htm -share/doc/postgresql/postgres/mvcc3136.htm -share/doc/postgresql/postgres/mvcc3213.htm -share/doc/postgresql/postgres/mvcc3234.htm -share/doc/postgresql/postgres/newuser.htm -share/doc/postgresql/postgres/notation.htm -share/doc/postgresql/postgres/odbc.htm -share/doc/postgresql/postgres/odbc19825.htm -share/doc/postgresql/postgres/odbc19863.htm -share/doc/postgresql/postgres/odbc20031.htm -share/doc/postgresql/postgres/odbc20053.htm -share/doc/postgresql/postgres/operators.htm -share/doc/postgresql/postgres/operators1716.htm -share/doc/postgresql/postgres/operators1787.htm -share/doc/postgresql/postgres/operators1857.htm -share/doc/postgresql/postgres/operators1967.htm -share/doc/postgresql/postgres/operators2026.htm -share/doc/postgresql/postgres/operators2080.htm -share/doc/postgresql/postgres/overview.htm -share/doc/postgresql/postgres/overview20521.htm -share/doc/postgresql/postgres/overview20546.htm -share/doc/postgresql/postgres/overview20674.htm -share/doc/postgresql/postgres/overview20730.htm -share/doc/postgresql/postgres/overview20784.htm -share/doc/postgresql/postgres/page.htm -share/doc/postgresql/postgres/page22137.htm -share/doc/postgresql/postgres/page22151.htm -share/doc/postgresql/postgres/part-admin.htm -share/doc/postgresql/postgres/part-appendix.htm -share/doc/postgresql/postgres/part-developer.htm -share/doc/postgresql/postgres/part-interfaces.htm -share/doc/postgresql/postgres/part-programmer.htm -share/doc/postgresql/postgres/part-tutorial.htm -share/doc/postgresql/postgres/part-user.htm -share/doc/postgresql/postgres/pg-options-dev.htm -share/doc/postgresql/postgres/pg-options.htm -share/doc/postgresql/postgres/pgtcl-pgconndefaults.htm -share/doc/postgresql/postgres/pgtcl-pgconnect.htm -share/doc/postgresql/postgres/pgtcl-pgdisconnect.htm -share/doc/postgresql/postgres/pgtcl-pgexec.htm -share/doc/postgresql/postgres/pgtcl-pglisten.htm -share/doc/postgresql/postgres/pgtcl-pgloclose.htm -share/doc/postgresql/postgres/pgtcl-pglocreat.htm -share/doc/postgresql/postgres/pgtcl-pgloexport.htm -share/doc/postgresql/postgres/pgtcl-pgloimport.htm -share/doc/postgresql/postgres/pgtcl-pglolseek.htm -share/doc/postgresql/postgres/pgtcl-pgloopen.htm -share/doc/postgresql/postgres/pgtcl-pgloread.htm -share/doc/postgresql/postgres/pgtcl-pglotell.htm -share/doc/postgresql/postgres/pgtcl-pglounlink.htm -share/doc/postgresql/postgres/pgtcl-pglowrite.htm -share/doc/postgresql/postgres/pgtcl-pgresult.htm -share/doc/postgresql/postgres/pgtcl-pgselect.htm -share/doc/postgresql/postgres/pgtcl.htm -share/doc/postgresql/postgres/pgtcl18759.htm -share/doc/postgresql/postgres/pgtcl18763.htm -share/doc/postgresql/postgres/ports.htm -share/doc/postgresql/postgres/ports12560.htm -share/doc/postgresql/postgres/postgres.htm -share/doc/postgresql/postgres/postgres.html -share/doc/postgresql/postgres/postmaster.htm -share/doc/postgresql/postgres/preface.htm -share/doc/postgresql/postgres/protocol.htm -share/doc/postgresql/postgres/protocol21097.htm -share/doc/postgresql/postgres/protocol21252.htm -share/doc/postgresql/postgres/protocol21288.htm -share/doc/postgresql/postgres/query.htm -share/doc/postgresql/postgres/query23068.htm -share/doc/postgresql/postgres/query23084.htm -share/doc/postgresql/postgres/query23105.htm -share/doc/postgresql/postgres/query23114.htm -share/doc/postgresql/postgres/query23132.htm -share/doc/postgresql/postgres/query23139.htm -share/doc/postgresql/postgres/query23154.htm -share/doc/postgresql/postgres/query23158.htm -share/doc/postgresql/postgres/query23165.htm -share/doc/postgresql/postgres/recovery.htm -share/doc/postgresql/postgres/regress.htm -share/doc/postgresql/postgres/regress13926.htm -share/doc/postgresql/postgres/regress13933.htm -share/doc/postgresql/postgres/regress13970.htm -share/doc/postgresql/postgres/release.htm -share/doc/postgresql/postgres/release14025.htm -share/doc/postgresql/postgres/release14107.htm -share/doc/postgresql/postgres/release14118.htm -share/doc/postgresql/postgres/release14129.htm -share/doc/postgresql/postgres/release14170.htm -share/doc/postgresql/postgres/release14186.htm -share/doc/postgresql/postgres/release14205.htm -share/doc/postgresql/postgres/release14249.htm -share/doc/postgresql/postgres/release14271.htm -share/doc/postgresql/postgres/release14286.htm -share/doc/postgresql/postgres/release14295.htm -share/doc/postgresql/postgres/release14318.htm -share/doc/postgresql/postgres/release14332.htm -share/doc/postgresql/postgres/release14335.htm -share/doc/postgresql/postgres/release14360.htm -share/doc/postgresql/postgres/release14397.htm -share/doc/postgresql/postgres/release14404.htm -share/doc/postgresql/postgres/release14411.htm -share/doc/postgresql/postgres/release14418.htm -share/doc/postgresql/postgres/release14422.htm -share/doc/postgresql/postgres/rules.htm -share/doc/postgresql/postgres/rules14948.htm -share/doc/postgresql/postgres/rules15109.htm -share/doc/postgresql/postgres/rules15240.htm -share/doc/postgresql/postgres/rules15254.htm -share/doc/postgresql/postgres/runtime.htm -share/doc/postgresql/postgres/security.htm -share/doc/postgresql/postgres/security13599.htm -share/doc/postgresql/postgres/security13618.htm -share/doc/postgresql/postgres/security13642.htm -share/doc/postgresql/postgres/signals.htm -share/doc/postgresql/postgres/spi-spiconnect.htm -share/doc/postgresql/postgres/spi-spicopytuple.htm -share/doc/postgresql/postgres/spi-spiexec.htm -share/doc/postgresql/postgres/spi-spiexecp.htm -share/doc/postgresql/postgres/spi-spifinish.htm -share/doc/postgresql/postgres/spi-spifname.htm -share/doc/postgresql/postgres/spi-spifnumber.htm -share/doc/postgresql/postgres/spi-spigetbinval.htm -share/doc/postgresql/postgres/spi-spigetrelname.htm -share/doc/postgresql/postgres/spi-spigettype.htm -share/doc/postgresql/postgres/spi-spigettypeid.htm -share/doc/postgresql/postgres/spi-spigetvalue.htm -share/doc/postgresql/postgres/spi-spimodifytuple.htm -share/doc/postgresql/postgres/spi-spipalloc.htm -share/doc/postgresql/postgres/spi-spipfree.htm -share/doc/postgresql/postgres/spi-spiprepare.htm -share/doc/postgresql/postgres/spi-spirepalloc.htm -share/doc/postgresql/postgres/spi-spisaveplan.htm -share/doc/postgresql/postgres/spi.htm -share/doc/postgresql/postgres/spi16142.htm -share/doc/postgresql/postgres/spi16855.htm -share/doc/postgresql/postgres/spi16877.htm -share/doc/postgresql/postgres/spi16882.htm -share/doc/postgresql/postgres/sql-abort.htm -share/doc/postgresql/postgres/sql-altertable.htm -share/doc/postgresql/postgres/sql-alteruser.htm -share/doc/postgresql/postgres/sql-beginwork.htm -share/doc/postgresql/postgres/sql-close.htm -share/doc/postgresql/postgres/sql-cluster.htm -share/doc/postgresql/postgres/sql-commands.htm -share/doc/postgresql/postgres/sql-commit.htm -share/doc/postgresql/postgres/sql-copy.htm -share/doc/postgresql/postgres/sql-createaggregate.htm -share/doc/postgresql/postgres/sql-createdatabase.htm -share/doc/postgresql/postgres/sql-createfunction.htm -share/doc/postgresql/postgres/sql-createindex.htm -share/doc/postgresql/postgres/sql-createlanguage.htm -share/doc/postgresql/postgres/sql-createoperator.htm -share/doc/postgresql/postgres/sql-createrule.htm -share/doc/postgresql/postgres/sql-createsequence.htm -share/doc/postgresql/postgres/sql-createtable.htm -share/doc/postgresql/postgres/sql-createtrigger.htm -share/doc/postgresql/postgres/sql-createtype.htm -share/doc/postgresql/postgres/sql-createuser.htm -share/doc/postgresql/postgres/sql-createview.htm -share/doc/postgresql/postgres/sql-declare.htm -share/doc/postgresql/postgres/sql-delete.htm -share/doc/postgresql/postgres/sql-dropaggregate.htm -share/doc/postgresql/postgres/sql-dropdatabase.htm -share/doc/postgresql/postgres/sql-dropfunction.htm -share/doc/postgresql/postgres/sql-dropindex.htm -share/doc/postgresql/postgres/sql-droplanguage.htm -share/doc/postgresql/postgres/sql-dropoperator.htm -share/doc/postgresql/postgres/sql-droprule.htm -share/doc/postgresql/postgres/sql-dropsequence.htm -share/doc/postgresql/postgres/sql-droptable.htm -share/doc/postgresql/postgres/sql-droptrigger.htm -share/doc/postgresql/postgres/sql-droptype.htm -share/doc/postgresql/postgres/sql-dropuser.htm -share/doc/postgresql/postgres/sql-dropview.htm -share/doc/postgresql/postgres/sql-explain.htm -share/doc/postgresql/postgres/sql-fetch.htm -share/doc/postgresql/postgres/sql-grant.htm -share/doc/postgresql/postgres/sql-insert.htm -share/doc/postgresql/postgres/sql-language.htm -share/doc/postgresql/postgres/sql-listen.htm -share/doc/postgresql/postgres/sql-load.htm -share/doc/postgresql/postgres/sql-lock.htm -share/doc/postgresql/postgres/sql-move.htm -share/doc/postgresql/postgres/sql-notify.htm -share/doc/postgresql/postgres/sql-reset.htm -share/doc/postgresql/postgres/sql-revoke.htm -share/doc/postgresql/postgres/sql-rollback.htm -share/doc/postgresql/postgres/sql-select.htm -share/doc/postgresql/postgres/sql-selectinto.htm -share/doc/postgresql/postgres/sql-set.htm -share/doc/postgresql/postgres/sql-show.htm -share/doc/postgresql/postgres/sql-unlisten.htm -share/doc/postgresql/postgres/sql-update.htm -share/doc/postgresql/postgres/sql-vacuum-1.htm -share/doc/postgresql/postgres/sql.htm -share/doc/postgresql/postgres/sql22234.htm -share/doc/postgresql/postgres/sql22352.htm -share/doc/postgresql/postgres/start.htm -share/doc/postgresql/postgres/start22962.htm -share/doc/postgresql/postgres/start22979.htm -share/doc/postgresql/postgres/storage.htm -share/doc/postgresql/postgres/syntax.htm -share/doc/postgresql/postgres/syntax439.htm -share/doc/postgresql/postgres/terminology.htm -share/doc/postgresql/postgres/triggers.htm -share/doc/postgresql/postgres/triggers15613.htm -share/doc/postgresql/postgres/triggers15619.htm -share/doc/postgresql/postgres/triggers15627.htm -share/doc/postgresql/postgres/trouble.htm -share/doc/postgresql/postgres/trouble13828.htm -share/doc/postgresql/postgres/trouble13843.htm -share/doc/postgresql/postgres/typeconv.htm -share/doc/postgresql/postgres/typeconv2785.htm -share/doc/postgresql/postgres/typeconv2848.htm -share/doc/postgresql/postgres/typeconv2901.htm -share/doc/postgresql/postgres/typeconv2921.htm -share/doc/postgresql/postgres/utilities.htm -share/doc/postgresql/postgres/xaggr.htm -share/doc/postgresql/postgres/xfunc.htm -share/doc/postgresql/postgres/xfunc14663.htm -share/doc/postgresql/postgres/xindex.htm -share/doc/postgresql/postgres/xoper.htm -share/doc/postgresql/postgres/xplang.htm -share/doc/postgresql/postgres/xplang16930.htm -share/doc/postgresql/postgres/xplang17200.htm -share/doc/postgresql/postgres/xtypes.htm -share/doc/postgresql/postgres/y2k.htm share/doc/postgresql/programmer.ps.gz -share/doc/postgresql/programmer/arch-pg.htm -share/doc/postgresql/programmer/biblio.htm -share/doc/postgresql/programmer/bki.htm -share/doc/postgresql/programmer/catalogs.gif -share/doc/postgresql/programmer/compiler.htm -share/doc/postgresql/programmer/connections.gif -share/doc/postgresql/programmer/copyright.htm -share/doc/postgresql/programmer/cvs.htm -share/doc/postgresql/programmer/dfunc.htm -share/doc/postgresql/programmer/docguide.htm -share/doc/postgresql/programmer/ecpg.htm -share/doc/postgresql/programmer/extend.htm -share/doc/postgresql/programmer/geqo.htm -share/doc/postgresql/programmer/gist.htm -share/doc/postgresql/programmer/index.html -share/doc/postgresql/programmer/intro-pg.htm -share/doc/postgresql/programmer/jdbc.htm -share/doc/postgresql/programmer/largeobjects.htm -share/doc/postgresql/programmer/libpq-chapter.htm -share/doc/postgresql/programmer/libpq-envars.htm -share/doc/postgresql/programmer/libpqplusplus.htm -share/doc/postgresql/programmer/notation.htm -share/doc/postgresql/programmer/odbc.htm -share/doc/postgresql/programmer/overview.htm -share/doc/postgresql/programmer/page.htm -share/doc/postgresql/programmer/pg-options-dev.htm -share/doc/postgresql/programmer/pgtcl-pgconndefaults.htm -share/doc/postgresql/programmer/pgtcl-pgconnect.htm -share/doc/postgresql/programmer/pgtcl-pgdisconnect.htm -share/doc/postgresql/programmer/pgtcl-pgexec.htm -share/doc/postgresql/programmer/pgtcl-pglisten.htm -share/doc/postgresql/programmer/pgtcl-pgloclose.htm -share/doc/postgresql/programmer/pgtcl-pglocreat.htm -share/doc/postgresql/programmer/pgtcl-pgloexport.htm -share/doc/postgresql/programmer/pgtcl-pgloimport.htm -share/doc/postgresql/programmer/pgtcl-pglolseek.htm -share/doc/postgresql/programmer/pgtcl-pgloopen.htm -share/doc/postgresql/programmer/pgtcl-pgloread.htm -share/doc/postgresql/programmer/pgtcl-pglotell.htm -share/doc/postgresql/programmer/pgtcl-pglounlink.htm -share/doc/postgresql/programmer/pgtcl-pglowrite.htm -share/doc/postgresql/programmer/pgtcl-pgresult.htm -share/doc/postgresql/programmer/pgtcl-pgselect.htm -share/doc/postgresql/programmer/pgtcl.htm -share/doc/postgresql/programmer/preface.htm -share/doc/postgresql/programmer/programmer.htm -share/doc/postgresql/programmer/programmer.html -share/doc/postgresql/programmer/protocol.htm -share/doc/postgresql/programmer/rules.htm -share/doc/postgresql/programmer/signals.htm -share/doc/postgresql/programmer/spi-spiconnect.htm -share/doc/postgresql/programmer/spi-spicopytuple.htm -share/doc/postgresql/programmer/spi-spiexec.htm -share/doc/postgresql/programmer/spi-spiexecp.htm -share/doc/postgresql/programmer/spi-spifinish.htm -share/doc/postgresql/programmer/spi-spifname.htm -share/doc/postgresql/programmer/spi-spifnumber.htm -share/doc/postgresql/programmer/spi-spigetbinval.htm -share/doc/postgresql/programmer/spi-spigetrelname.htm -share/doc/postgresql/programmer/spi-spigettype.htm -share/doc/postgresql/programmer/spi-spigettypeid.htm -share/doc/postgresql/programmer/spi-spigetvalue.htm -share/doc/postgresql/programmer/spi-spimodifytuple.htm -share/doc/postgresql/programmer/spi-spipalloc.htm -share/doc/postgresql/programmer/spi-spipfree.htm -share/doc/postgresql/programmer/spi-spiprepare.htm -share/doc/postgresql/programmer/spi-spirepalloc.htm -share/doc/postgresql/programmer/spi-spisaveplan.htm -share/doc/postgresql/programmer/spi.htm -share/doc/postgresql/programmer/terminology.htm -share/doc/postgresql/programmer/triggers.htm -share/doc/postgresql/programmer/x1005.htm -share/doc/postgresql/programmer/x1310.htm -share/doc/postgresql/programmer/x1580.htm -share/doc/postgresql/programmer/x1779.htm -share/doc/postgresql/programmer/x1789.htm -share/doc/postgresql/programmer/x1825.htm -share/doc/postgresql/programmer/x1831.htm -share/doc/postgresql/programmer/x1839.htm -share/doc/postgresql/programmer/x2354.htm -share/doc/postgresql/programmer/x276.htm -share/doc/postgresql/programmer/x288.htm -share/doc/postgresql/programmer/x3067.htm -share/doc/postgresql/programmer/x3089.htm -share/doc/postgresql/programmer/x3094.htm -share/doc/postgresql/programmer/x3118.htm -share/doc/postgresql/programmer/x3121.htm -share/doc/postgresql/programmer/x3173.htm -share/doc/postgresql/programmer/x3180.htm -share/doc/postgresql/programmer/x3184.htm -share/doc/postgresql/programmer/x3308.htm -share/doc/postgresql/programmer/x3414.htm -share/doc/postgresql/programmer/x3460.htm -share/doc/postgresql/programmer/x3470.htm -share/doc/postgresql/programmer/x3486.htm -share/doc/postgresql/programmer/x3518.htm -share/doc/postgresql/programmer/x3531.htm -share/doc/postgresql/programmer/x3546.htm -share/doc/postgresql/programmer/x3625.htm -share/doc/postgresql/programmer/x3628.htm -share/doc/postgresql/programmer/x3732.htm -share/doc/postgresql/programmer/x3742.htm -share/doc/postgresql/programmer/x3772.htm -share/doc/postgresql/programmer/x3873.htm -share/doc/postgresql/programmer/x3896.htm -share/doc/postgresql/programmer/x3939.htm -share/doc/postgresql/programmer/x4015.htm -share/doc/postgresql/programmer/x4019.htm -share/doc/postgresql/programmer/x414.htm -share/doc/postgresql/programmer/x5078.htm -share/doc/postgresql/programmer/x5096.htm -share/doc/postgresql/programmer/x5238.htm -share/doc/postgresql/programmer/x5248.htm -share/doc/postgresql/programmer/x5268.htm -share/doc/postgresql/programmer/x5273.htm -share/doc/postgresql/programmer/x5571.htm -share/doc/postgresql/programmer/x5609.htm -share/doc/postgresql/programmer/x5777.htm -share/doc/postgresql/programmer/x5799.htm -share/doc/postgresql/programmer/x6034.htm -share/doc/postgresql/programmer/x6047.htm -share/doc/postgresql/programmer/x6054.htm -share/doc/postgresql/programmer/x6062.htm -share/doc/postgresql/programmer/x6080.htm -share/doc/postgresql/programmer/x6117.htm -share/doc/postgresql/programmer/x6148.htm -share/doc/postgresql/programmer/x6152.htm -share/doc/postgresql/programmer/x6156.htm -share/doc/postgresql/programmer/x6175.htm -share/doc/postgresql/programmer/x6205.htm -share/doc/postgresql/programmer/x6263.htm -share/doc/postgresql/programmer/x6288.htm -share/doc/postgresql/programmer/x6416.htm -share/doc/postgresql/programmer/x6472.htm -share/doc/postgresql/programmer/x6526.htm -share/doc/postgresql/programmer/x6663.htm -share/doc/postgresql/programmer/x6686.htm -share/doc/postgresql/programmer/x6724.htm -share/doc/postgresql/programmer/x6839.htm -share/doc/postgresql/programmer/x699.htm -share/doc/postgresql/programmer/x6994.htm -share/doc/postgresql/programmer/x7030.htm -share/doc/postgresql/programmer/x7646.htm -share/doc/postgresql/programmer/x7731.htm -share/doc/postgresql/programmer/x7755.htm -share/doc/postgresql/programmer/x7816.htm -share/doc/postgresql/programmer/x7879.htm -share/doc/postgresql/programmer/x7893.htm -share/doc/postgresql/programmer/x7955.htm -share/doc/postgresql/programmer/x8011.htm -share/doc/postgresql/programmer/x8237.htm -share/doc/postgresql/programmer/x8268.htm -share/doc/postgresql/programmer/x860.htm -share/doc/postgresql/programmer/x9484.htm -share/doc/postgresql/programmer/x9504.htm -share/doc/postgresql/programmer/x9551.htm -share/doc/postgresql/programmer/x9831.htm -share/doc/postgresql/programmer/x991.htm -share/doc/postgresql/programmer/xaggr.htm -share/doc/postgresql/programmer/xfunc.htm -share/doc/postgresql/programmer/xindex.htm -share/doc/postgresql/programmer/xoper.htm -share/doc/postgresql/programmer/xplang.htm -share/doc/postgresql/programmer/xtypes.htm -share/doc/postgresql/programmer/y2k.htm share/doc/postgresql/tutorial.ps.gz -share/doc/postgresql/tutorial/about.htm -share/doc/postgresql/tutorial/advanced.htm -share/doc/postgresql/tutorial/arch.htm -share/doc/postgresql/tutorial/biblio.htm -share/doc/postgresql/tutorial/clientserver.gif -share/doc/postgresql/tutorial/copyright.htm -share/doc/postgresql/tutorial/f17.htm -share/doc/postgresql/tutorial/index.html -share/doc/postgresql/tutorial/intro.htm -share/doc/postgresql/tutorial/notation.htm -share/doc/postgresql/tutorial/query.htm -share/doc/postgresql/tutorial/sql-language.htm -share/doc/postgresql/tutorial/sql.htm -share/doc/postgresql/tutorial/start.htm -share/doc/postgresql/tutorial/terminology.htm -share/doc/postgresql/tutorial/tutorial.htm -share/doc/postgresql/tutorial/tutorial.html -share/doc/postgresql/tutorial/x1129.htm -share/doc/postgresql/tutorial/x1146.htm -share/doc/postgresql/tutorial/x1235.htm -share/doc/postgresql/tutorial/x1251.htm -share/doc/postgresql/tutorial/x1272.htm -share/doc/postgresql/tutorial/x1281.htm -share/doc/postgresql/tutorial/x1299.htm -share/doc/postgresql/tutorial/x1306.htm -share/doc/postgresql/tutorial/x1321.htm -share/doc/postgresql/tutorial/x1325.htm -share/doc/postgresql/tutorial/x1332.htm -share/doc/postgresql/tutorial/x1381.htm -share/doc/postgresql/tutorial/x1403.htm -share/doc/postgresql/tutorial/x1423.htm -share/doc/postgresql/tutorial/x159.htm -share/doc/postgresql/tutorial/x401.htm -share/doc/postgresql/tutorial/x519.htm -share/doc/postgresql/tutorial/x56.htm -share/doc/postgresql/tutorial/y2k.htm share/doc/postgresql/user.ps.gz -share/doc/postgresql/user/about.htm -share/doc/postgresql/user/app-createdb.htm -share/doc/postgresql/user/app-createuser.htm -share/doc/postgresql/user/app-destroydb.htm -share/doc/postgresql/user/app-destroyuser.htm -share/doc/postgresql/user/app-initdb.htm -share/doc/postgresql/user/app-initlocation.htm -share/doc/postgresql/user/app-pg-dump.htm -share/doc/postgresql/user/app-pg-dumpall.htm -share/doc/postgresql/user/app-pgaccess.htm -share/doc/postgresql/user/app-pgadmin.htm -share/doc/postgresql/user/app-postgres.htm -share/doc/postgresql/user/app-postmaster.htm -share/doc/postgresql/user/app-psql.htm -share/doc/postgresql/user/app-vacuumdb.htm -share/doc/postgresql/user/arrays.htm -share/doc/postgresql/user/biblio.htm -share/doc/postgresql/user/copyright.htm -share/doc/postgresql/user/createtableas.htm -share/doc/postgresql/user/datatype.htm -share/doc/postgresql/user/datetime-appendix.htm -share/doc/postgresql/user/environ.htm -share/doc/postgresql/user/functions.htm -share/doc/postgresql/user/inherit.htm -share/doc/postgresql/user/index.html -share/doc/postgresql/user/intro.htm -share/doc/postgresql/user/keys.htm -share/doc/postgresql/user/manage.htm -share/doc/postgresql/user/mvcc.htm -share/doc/postgresql/user/notation.htm -share/doc/postgresql/user/operators.htm -share/doc/postgresql/user/preface.htm -share/doc/postgresql/user/sql-abort.htm -share/doc/postgresql/user/sql-altertable.htm -share/doc/postgresql/user/sql-alteruser.htm -share/doc/postgresql/user/sql-beginwork.htm -share/doc/postgresql/user/sql-close.htm -share/doc/postgresql/user/sql-cluster.htm -share/doc/postgresql/user/sql-commands.htm -share/doc/postgresql/user/sql-commit.htm -share/doc/postgresql/user/sql-copy.htm -share/doc/postgresql/user/sql-createaggregate.htm -share/doc/postgresql/user/sql-createdatabase.htm -share/doc/postgresql/user/sql-createfunction.htm -share/doc/postgresql/user/sql-createindex.htm -share/doc/postgresql/user/sql-createlanguage.htm -share/doc/postgresql/user/sql-createoperator.htm -share/doc/postgresql/user/sql-createrule.htm -share/doc/postgresql/user/sql-createsequence.htm -share/doc/postgresql/user/sql-createtable.htm -share/doc/postgresql/user/sql-createtrigger.htm -share/doc/postgresql/user/sql-createtype.htm -share/doc/postgresql/user/sql-createuser.htm -share/doc/postgresql/user/sql-createview.htm -share/doc/postgresql/user/sql-declare.htm -share/doc/postgresql/user/sql-delete.htm -share/doc/postgresql/user/sql-dropaggregate.htm -share/doc/postgresql/user/sql-dropdatabase.htm -share/doc/postgresql/user/sql-dropfunction.htm -share/doc/postgresql/user/sql-dropindex.htm -share/doc/postgresql/user/sql-droplanguage.htm -share/doc/postgresql/user/sql-dropoperator.htm -share/doc/postgresql/user/sql-droprule.htm -share/doc/postgresql/user/sql-dropsequence.htm -share/doc/postgresql/user/sql-droptable.htm -share/doc/postgresql/user/sql-droptrigger.htm -share/doc/postgresql/user/sql-droptype.htm -share/doc/postgresql/user/sql-dropuser.htm -share/doc/postgresql/user/sql-dropview.htm -share/doc/postgresql/user/sql-explain.htm -share/doc/postgresql/user/sql-fetch.htm -share/doc/postgresql/user/sql-grant.htm -share/doc/postgresql/user/sql-insert.htm -share/doc/postgresql/user/sql-listen.htm -share/doc/postgresql/user/sql-load.htm -share/doc/postgresql/user/sql-lock.htm -share/doc/postgresql/user/sql-move.htm -share/doc/postgresql/user/sql-notify.htm -share/doc/postgresql/user/sql-reset.htm -share/doc/postgresql/user/sql-revoke.htm -share/doc/postgresql/user/sql-rollback.htm -share/doc/postgresql/user/sql-select.htm -share/doc/postgresql/user/sql-selectinto.htm -share/doc/postgresql/user/sql-set.htm -share/doc/postgresql/user/sql-show.htm -share/doc/postgresql/user/sql-unlisten.htm -share/doc/postgresql/user/sql-update.htm -share/doc/postgresql/user/sql-vacuum-1.htm -share/doc/postgresql/user/storage.htm -share/doc/postgresql/user/syntax.htm -share/doc/postgresql/user/terminology.htm -share/doc/postgresql/user/typeconv.htm -share/doc/postgresql/user/user.htm -share/doc/postgresql/user/user.html -share/doc/postgresql/user/utilities.htm -share/doc/postgresql/user/x12564.htm -share/doc/postgresql/user/x1361.htm -share/doc/postgresql/user/x1393.htm -share/doc/postgresql/user/x1492.htm -share/doc/postgresql/user/x159.htm -share/doc/postgresql/user/x1697.htm -share/doc/postgresql/user/x1768.htm -share/doc/postgresql/user/x1838.htm -share/doc/postgresql/user/x1948.htm -share/doc/postgresql/user/x2007.htm -share/doc/postgresql/user/x2061.htm -share/doc/postgresql/user/x2164.htm -share/doc/postgresql/user/x2202.htm -share/doc/postgresql/user/x2345.htm -share/doc/postgresql/user/x2430.htm -share/doc/postgresql/user/x2648.htm -share/doc/postgresql/user/x2766.htm -share/doc/postgresql/user/x2829.htm -share/doc/postgresql/user/x2882.htm -share/doc/postgresql/user/x2902.htm -share/doc/postgresql/user/x3039.htm -share/doc/postgresql/user/x3091.htm -share/doc/postgresql/user/x3103.htm -share/doc/postgresql/user/x3116.htm -share/doc/postgresql/user/x3193.htm -share/doc/postgresql/user/x3214.htm -share/doc/postgresql/user/x3286.htm -share/doc/postgresql/user/x3310.htm -share/doc/postgresql/user/x3351.htm -share/doc/postgresql/user/x420.htm -share/doc/postgresql/user/x56.htm -share/doc/postgresql/user/x684.htm -share/doc/postgresql/user/x710.htm -share/doc/postgresql/user/x774.htm -share/doc/postgresql/user/y2k.htm share/postgresql/global1.bki.source share/postgresql/global1.description share/postgresql/local1_template1.bki.source share/postgresql/local1_template1.description share/postgresql/pg_geqo.sample share/postgresql/pg_hba.conf.sample +share/postgresql/pg_options.sample +share/postgresql/postmaster.opts.default.sample @dirrm share/postgresql -@dirrm share/doc/postgresql/user -@dirrm share/doc/postgresql/tutorial -@dirrm share/doc/postgresql/programmer -@dirrm share/doc/postgresql/postgres -@dirrm share/doc/postgresql/admin @dirrm share/doc/postgresql +@dirrm share/doc/html/postgresql/user +@dirrm share/doc/html/postgresql/tutorial +@dirrm share/doc/html/postgresql/programmer +@dirrm share/doc/html/postgresql/postgres +@dirrm share/doc/html/postgresql/admin +@dirrm share/doc/html/postgresql @dirrm include/pgsql/utils @dirrm include/pgsql/libpq @dirrm include/pgsql/libpq++ |