Alexander Pyhalov
2016-12-22 637827fc464e146f75fa747e21acd449f113d160
Merge pull request #2695 from pyhalov/postgresql-96

20 files added
1 files modified
7516 ■■■■■ changed files
components/database/postgresql-96/Makefile 110 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/files/auth_attr 2 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/files/exec_attr 6 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/files/pg_config.h 5 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/files/pg_regress.sh 115 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/files/postgres_96 115 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/files/postgresql_96.xml 132 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/files/prof_attr 1 ●●●● patch | view | raw | blame | history
components/database/postgresql-96/files/user_attr 1 ●●●● patch | view | raw | blame | history
components/database/postgresql-96/manifests/sample-manifest.p5m 3451 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/patches/pg_config.patch 11 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/patches/plpython_rpath64.patch 11 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/postgresql96-contrib.p5m 274 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/postgresql96-developer.p5m 734 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/postgresql96-documentation.p5m 1632 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/postgresql96-language-bindings.p5m 89 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/postgresql96-library.p5m 88 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/postgresql96-service.p5m 197 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/postgresql96-tests.p5m 421 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/postgresql96.p5m 119 ●●●●● patch | view | raw | blame | history
make-rules/shared-macros.mk 2 ●●●●● patch | view | raw | blame | history
components/database/postgresql-96/Makefile
New file
@@ -0,0 +1,110 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"). You may
# only use this file in accordance with the terms of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source. A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2012-2013, EveryCity Ltd. All rights reserved.
# Copyright 2016 Alexander Pyhalov
#
include ../../../make-rules/shared-macros.mk
COMPONENT_NAME=        postgresql
COMPONENT_MJR_VERSION=    9.6
COMPONENT_MNR_VERSION=    1
COMPONENT_VERSION=    $(COMPONENT_MJR_VERSION).$(COMPONENT_MNR_VERSION)
COMPONENT_SRC=        $(COMPONENT_NAME)-$(COMPONENT_VERSION)
COMPONENT_ARCHIVE=    $(COMPONENT_SRC).tar.bz2
COMPONENT_ARCHIVE_HASH=    sha256:e5101e0a49141fc12a7018c6dad594694d3a3325f5ab71e93e0e51bd94e51fcd
COMPONENT_ARCHIVE_URL=    http://ftp.postgresql.org/pub/source/v$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
COMPONENT_PROJECT_URL=    http://www.postgresql.org/
include $(WS_MAKE_RULES)/prep.mk
include $(WS_MAKE_RULES)/configure.mk
include $(WS_MAKE_RULES)/ips.mk
PATH=    /usr/bin:/usr/sbin:/usr/gnu/bin
# Missing files in build dir for configure without this.
COMPONENT_PRE_CONFIGURE_ACTION =        ($(CLONEY) $(SOURCE_DIR) $(@D))
CONFIGURE_SCRIPT=       $(@D)/configure
CONFIGURE_OPTIONS = --prefix=/usr/postgres/$(COMPONENT_MJR_VERSION)
CONFIGURE_OPTIONS += --exec-prefix=/usr/postgres/$(COMPONENT_MJR_VERSION)
CONFIGURE_OPTIONS += --datadir=/usr/postgres/$(COMPONENT_MJR_VERSION)/share
CONFIGURE_OPTIONS += --sysconfdir=/etc/postgres/$(COMPONENT_MJR_VERSION)
CONFIGURE_OPTIONS += --mandir=/usr/postgres/$(COMPONENT_MJR_VERSION)/man
CONFIGURE_OPTIONS += --includedir=/usr/postgres/$(COMPONENT_MJR_VERSION)/include
CONFIGURE_OPTIONS += --sharedstatedir=/var/postgres/$(COMPONENT_MJR_VERSION)
CONFIGURE_OPTIONS += --localstatedir=/var/postgres/$(COMPONENT_MJR_VERSION)
CONFIGURE_OPTIONS += --localedir=/usr/share/locale
CONFIGURE_OPTIONS += --docdir=/usr/postgres/$(COMPONENT_MJR_VERSION)/doc
CONFIGURE_OPTIONS += --htmldir=/usr/postgres/$(COMPONENT_MJR_VERSION)/doc
CONFIGURE_OPTIONS += --enable-nls
CONFIGURE_OPTIONS += --with-system-tzdata=/usr/share/lib/zoneinfo
CONFIGURE_OPTIONS.64 += --with-tcl
CONFIGURE_OPTIONS.64 += --with-python
CONFIGURE_OPTIONS.64 += --with-pam
CONFIGURE_OPTIONS += --with-openssl
CONFIGURE_OPTIONS += --with-libedit-preferred
CONFIGURE_OPTIONS += --with-libxml
CONFIGURE_OPTIONS += --with-libxslt
CONFIGURE_OPTIONS += --with-gssapi
CONFIGURE_OPTIONS += --enable-thread-safety
CONFIGURE_OPTIONS += --enable-dtrace
CONFIGURE_OPTIONS += --enable-integer-datetimes
CONFIGURE_OPTIONS += --with-includes=/usr/include
CONFIGURE_OPTIONS += --with-tclconfig=/usr/lib
CONFIGURE_OPTIONS.64 += --with-perl
CONFIGURE_OPTIONS.32 += --bindir=/usr/postgres/$(COMPONENT_MJR_VERSION)/bin/$(MACH32)
CONFIGURE_OPTIONS.32 += --libexecdir=/usr/postgres/$(COMPONENT_MJR_VERSION)/bin/$(MACH32)
CONFIGURE_OPTIONS.32 += --sbindir=/usr/postgres/$(COMPONENT_MJR_VERSION)/bin/$(MACH32)
CONFIGURE_OPTIONS.32 += --libdir=/usr/postgres/$(COMPONENT_MJR_VERSION)/lib
CONFIGURE_OPTIONS.64 += --bindir=/usr/postgres/$(COMPONENT_MJR_VERSION)/bin
CONFIGURE_OPTIONS.64 += --libexecdir=/usr/postgres/$(COMPONENT_MJR_VERSION)/bin
CONFIGURE_OPTIONS.64 += --sbindir=/usr/postgres/$(COMPONENT_MJR_VERSION)/bin
CONFIGURE_OPTIONS.64 += --libdir=/usr/postgres/$(COMPONENT_MJR_VERSION)/lib/$(MACH64)
CONFIGURE_OPTIONS+=$(CONFIGURE_OPTIONS.$(BITS))
CONFIGURE_ENV    += PYTHON=$(PYTHON)
CONFIGURE_ENV.32     += PERL=$(PERL)
CONFIGURE_ENV.64     += PERL=$(PERL.5.24)
COMPONENT_BUILD_TARGETS = world
COMPONENT_INSTALL_TARGETS = install-world
COMPONENT_POST_INSTALL_ACTION.64= cd $(BUILD_DIR_$(BITS))/src/test/regress; env $(COMPONENT_INSTALL_ENV) gmake $(COMPONENT_INSTALL_ARGS) install-lib install-tests;
COMPONENT_POST_INSTALL_ACTION+= $(COMPONENT_POST_INSTALL_ACTION.$(BITS))
COMPONENT_POST_INSTALL_ACTION+= cd $(PROTO_DIR) &&  \
             $(MV) usr/postgres/$(COMPONENT_MJR_VERSION)/include/pg_config.h usr/postgres/$(COMPONENT_MJR_VERSION)/include/pg_config-$(BITS).h  && \
             $(MV) usr/postgres/$(COMPONENT_MJR_VERSION)/include/server/pg_config.h usr/postgres/$(COMPONENT_MJR_VERSION)/include/server/pg_config-$(BITS).h
build:        $(BUILD_32_and_64)
install:    $(INSTALL_32_and_64)
test:        $(TEST_32_and_64)
REQUIRED_PACKAGES += SUNWcs
REQUIRED_PACKAGES += library/libedit
REQUIRED_PACKAGES += library/libxml2
REQUIRED_PACKAGES += library/libxslt
REQUIRED_PACKAGES += library/security/openssl
REQUIRED_PACKAGES += library/zlib
REQUIRED_PACKAGES += runtime/perl-524
REQUIRED_PACKAGES += runtime/python-27
REQUIRED_PACKAGES += runtime/tcl-8
REQUIRED_PACKAGES += system/library
REQUIRED_PACKAGES += system/library/math
REQUIRED_PACKAGES += system/library/security/gss
components/database/postgresql-96/files/auth_attr
New file
@@ -0,0 +1,2 @@
solaris.smf.value.postgres:::Change Postgres value properties::
solaris.smf.manage.postgres:::Manage Postgres service states::
components/database/postgresql-96/files/exec_attr
New file
@@ -0,0 +1,6 @@
Postgres Administration:solaris:cmd:::/usr/postgres/9.6/bin/initdb:uid=postgres
Postgres Administration:solaris:cmd:::/usr/postgres/9.6/bin/pg_controldata:uid=postgres
Postgres Administration:solaris:cmd:::/usr/postgres/9.6/bin/pg_ctl:uid=postgres
Postgres Administration:solaris:cmd:::/usr/postgres/9.6/bin/pg_resetxlog:uid=postgres
Postgres Administration:solaris:cmd:::/usr/postgres/9.6/bin/postgres:uid=postgres
Postgres Administration:solaris:cmd:::/usr/postgres/9.6/bin/postmaster:uid=postgres
components/database/postgresql-96/files/pg_config.h
New file
@@ -0,0 +1,5 @@
#if defined(_LP64) || defined (__amd64)
#include <pg_config-64.h>
#else
#include <pg_config-32.h>
#endif
components/database/postgresql-96/files/pg_regress.sh
New file
@@ -0,0 +1,115 @@
#!/bin/sh
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
#ident    "@(#)pg_regress.sh    1.1    09/10/13 SMI"
# Wrapper to run pg_regress using the test suite installed
# with the PostgreSQL packages
PG_ROOT=/usr/postgres/9.6
# Default values for arguments
REG_ROOT=${PG_ROOT}/lib/64/regress
PSQL_DIR=/usr/bin
PGREG_BIN=${PG_ROOT}/lib/64/pgxs/src/test/regress/pg_regress
PGREG_TMP=/var/tmp/pg_regress_96
if [ '$1' = '--help' ] ; then
  cat <<EOF
Usage: pg_regress.sh
         [--suite <testsuite>]
         [--bindir <psql-dir>]
         [--driver <pg_regress binary>]
         [<pg_regress args>]
<testsuite> is the path to the installed test suite.
  (default $REG_ROOT)
<psql-dir> - ignored
<pg_regress> is the path to the pg_regress test driver binary.
  (default $PGREG_BIN)
These three options (if used) can be in any order.
Additional arguments are passed on to pg_regress.  Typically, this
will be --schedule=<schedule file>.
The PostgreSQL server must already be running on the same host.
The environment variable PGPORT must be set if the server is not using
the default 5432.
A copy of the testsuite as well as output, will be placed in the directory
/var/tmp/pg_regress_96 and subdirectories; any previous contents will be
removed before the test starts.
EOF
exit 0
fi
if echo $* | grep -- --top-builddir > /dev/null ; then
  echo "\"--top-builddir\" option is not available for this packaged test driver."
  echo "Please start your PostgreSQL server separately."
  exit 1
fi
parse=true
while [ $parse = true ] ; do
  case $1 in
    '--suite' )
      REG_ROOT=$2
      shift 2
      ;;
    '--bindir' )
      PSQL_DIR=$2
      shift 2
      ;;
    '--driver' )
      PGREG_BIN=$2
      shift 2
      ;;
    * )
      parse=false
      ;;
  esac
done
# pg_regress really only works with write permission on input directory,
# so need to create a similar directory structure to satisfy it
if [ -d "$PGREG_TMP" ] ; then
  /usr/bin/rm -rf "${PGREG_TMP}"
fi
mkdir -p "${PGREG_TMP}"
cd "${PGREG_TMP}"
cp -pR $REG_ROOT/* .
chmod o+w sql expected
mkdir results testtablespace
exec $PGREG_BIN $*
components/database/postgresql-96/files/postgres_96
New file
@@ -0,0 +1,115 @@
#!/sbin/sh
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
# Use is subject to license terms.
#
#ident    "@(#)postgres_96    1.1    09/10/13 SMI"
. /lib/svc/share/smf_include.sh
# SMF_FMRI is the name of the target service. This allows multiple instances
# to use the same script.
getproparg() {
        val=`svcprop -p $1 $SMF_FMRI`
        [ -n "$val" ] && echo $val
}
check_data_dir() {
    if [ ! -d $PGDATA ]; then
        echo "Error: postgresql_96/data directory $PGDATA does not exist"
        exit $SMF_EXIT_ERR_CONFIG
    fi
    if [ ! -w $PGDATA ]; then
        echo "Error: postgresql_96/data directory $PGDATA is not writable by postgres"
        exit $SMF_EXIT_ERR_CONFIG
    fi
    if [ "$PGINIT" = "false" ]; then
        echo "Notice: postgresql_96/data directory $PGDATA is not initialized"
        echo "        Calling '$PGBIN/initdb -D $PGDATA' to initialize"
        $PGBIN/initdb -D $PGDATA
        if [ $? -ne 0 ]; then
            echo "Error: initdb failed"
            echo "Hint : If database is already initialized set postgresql_96/initialized property to true."
            echo "        svccfg -s $SMF_FMRI \"setprop postgresql_96/initialized = boolean: true\""
            echo "        svccfg -s $SMF_FMRI refresh"
            exit $SMF_EXIT_ERR
        fi
        svccfg -s $SMF_FMRI "setprop postgresql_96/initialized = boolean: true"
        svccfg -s $SMF_FMRI refresh
    fi
    if [ ! -d $PGDATA/base -o ! -d $PGDATA/global -o ! -f $PGDATA/PG_VERSION ]; then
        if [ `ls -a $PGDATA | wc -w` -le 2 ]; then
            echo "Error: postgresql_96/data directory $PGDATA is empty, but it should be initialized"
            echo "Hint : check your mountpoints"
        else
            echo "Error: postgresql_96/data directory $PGDATA is not empty, nor is it a valid PostgreSQL data directory"
        fi
        exit $SMF_EXIT_ERR_CONFIG
    fi
}
PGBIN=`getproparg postgresql_96/bin`
PGDATA=`getproparg postgresql_96/data`
PGLOG=`getproparg postgresql_96/log`
PGINIT=`getproparg postgresql_96/initialized`
if [ -z $SMF_FMRI ]; then
    echo "Error: SMF framework variables are not initialized"
    exit $SMF_EXIT_ERR
fi
if [ -z $PGDATA ]; then
        echo "Error: postgresql_96/data property not set"
        exit $SMF_EXIT_ERR_CONFIG
fi
if [ -z $PGLOG ]; then
        echo "Error: postgresql_96/log property not set"
        exit $SMF_EXIT_ERR_CONFIG
fi
case "$1" in
'start')
    check_data_dir
        $PGBIN/pg_ctl -D $PGDATA -l $PGDATA/$PGLOG start
        ;;
'stop')
        $PGBIN/pg_ctl -D $PGDATA -m fast stop
        ;;
'refresh')
        $PGBIN/pg_ctl -D $PGDATA reload
        ;;
*)
        echo "Usage: $0 {start|stop|refresh}"
        exit 1
        ;;
esac
exit $SMF_EXIT_OK
components/database/postgresql-96/files/postgresql_96.xml
New file
@@ -0,0 +1,132 @@
<?xml version="1.0"?>
<!DOCTYPE service_bundle SYSTEM "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
<!--
 Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
 Use is subject to license terms.
 CDDL HEADER START
 The contents of this file are subject to the terms of the
 Common Development and Distribution License (the "License").
 You may not use this file except in compliance with the License.
 You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
 or http://www.opensolaris.org/os/licensing.
 See the License for the specific language governing permissions
 and limitations under the License.
 When distributing Covered Code, include this CDDL HEADER in each
 file and include the License file at usr/src/OPENSOLARIS.LICENSE.
 If applicable, add the following below this CDDL HEADER, with the
 fields enclosed by brackets "[]" replaced with your own identifying
 information: Portions Copyright [yyyy] [name of copyright owner]
 CDDL HEADER END
 ident    "@(#)postgresql_96.xml    1.1    09/10/13 SMI"
        NOTE:  This service manifest is not editable; its contents will
        be overwritten by package or patch operations, including
        operating system upgrade.  Make customizations in a different
        file.
-->
<service_bundle type='manifest' name='postgresql_96'>
<service
        name='application/database/postgresql_96'
        type='service'
        version='1'>
    <!--
       Wait for network interfaces to be initialized.
    -->
        <dependency
                name='network'
                grouping='require_all'
                restart_on='none'
                type='service'>
                <service_fmri value='svc:/milestone/network:default' />
        </dependency>
    <!--
       Wait for all local filesystems to be mounted.
    -->
        <dependency
                name='filesystem-local'
                grouping='require_all'
                restart_on='none'
                type='service'>
                <service_fmri value='svc:/system/filesystem/local:default' />
        </dependency>
        <exec_method
                type='method'
                name='start'
                exec='/lib/svc/method/postgres_96 start'
                timeout_seconds='60' />
        <exec_method
                type='method'
                name='stop'
                exec='/lib/svc/method/postgres_96 stop'
                timeout_seconds='60' />
        <exec_method
                type='method'
                name='refresh'
                exec='/lib/svc/method/postgres_96 refresh'
                timeout_seconds='60' />
        <!--
          Both action_authorization and value_authorization are needed
          to allow the framework general/enabled property to be changed
          when performing action (enable, disable, etc) on the service.
        -->
        <property_group name='general' type='framework'>
        <propval name='value_authorization' type='astring'
            value='solaris.smf.value.postgres' />
        <propval name='action_authorization' type='astring'
            value='solaris.smf.manage.postgres' />
        </property_group>
        <instance name='default' enabled='false'>
            <method_context>
                    <method_credential user='postgres' group='postgres' />
            </method_context>
        <!--
           Make sure the data configurable property points to the
           appropriate database directory and port number in
           postgresql.conf is different than the other instances.
        -->
            <property_group name='postgresql_96' type='application'>
                    <propval name='bin' type='astring'
                           value='/usr/postgres/9.6/bin' />
                    <propval name='data' type='astring'
                           value='/var/postgres/9.6/data' />
                    <propval name='log' type='astring'
               value='server.log' />
            <propval name='initialized' type='boolean'
               value='false' />
            <propval name='value_authorization' type='astring'
               value='solaris.smf.value.postgres' />
            </property_group>
        </instance>
        <stability value='Evolving' />
        <template>
                <common_name>
                        <loctext xml:lang='C'>
                                PostgreSQL RDBMS version 9.6
                        </loctext>
                </common_name>
        </template>
</service>
</service_bundle>
components/database/postgresql-96/files/prof_attr
New file
@@ -0,0 +1 @@
Postgres Administration::::auths=solaris.smf.manage.postgres,solaris.smf.value.postgres
components/database/postgresql-96/files/user_attr
New file
@@ -0,0 +1 @@
postgres::::type=role;profiles=Postgres Administration,All
components/database/postgresql-96/manifests/sample-manifest.p5m
New file
@@ -0,0 +1,3451 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2016 <contributor>
#
set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.summary value="$(COMPONENT_SUMMARY)"
set name=info.classification value="$(COMPONENT_CLASSIFICATION)"
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
license $(COMPONENT_LICENSE_FILE) license='$(COMPONENT_LICENSE)'
file path=usr/postgres/9.6/bin/$(MACH32)/clusterdb
file path=usr/postgres/9.6/bin/$(MACH32)/createdb
file path=usr/postgres/9.6/bin/$(MACH32)/createlang
file path=usr/postgres/9.6/bin/$(MACH32)/createuser
file path=usr/postgres/9.6/bin/$(MACH32)/dropdb
file path=usr/postgres/9.6/bin/$(MACH32)/droplang
file path=usr/postgres/9.6/bin/$(MACH32)/dropuser
file path=usr/postgres/9.6/bin/$(MACH32)/ecpg
file path=usr/postgres/9.6/bin/$(MACH32)/initdb
file path=usr/postgres/9.6/bin/$(MACH32)/oid2name
file path=usr/postgres/9.6/bin/$(MACH32)/pg_archivecleanup
file path=usr/postgres/9.6/bin/$(MACH32)/pg_basebackup
file path=usr/postgres/9.6/bin/$(MACH32)/pg_config
file path=usr/postgres/9.6/bin/$(MACH32)/pg_controldata
file path=usr/postgres/9.6/bin/$(MACH32)/pg_ctl
file path=usr/postgres/9.6/bin/$(MACH32)/pg_dump
file path=usr/postgres/9.6/bin/$(MACH32)/pg_dumpall
file path=usr/postgres/9.6/bin/$(MACH32)/pg_isready
file path=usr/postgres/9.6/bin/$(MACH32)/pg_receivexlog
file path=usr/postgres/9.6/bin/$(MACH32)/pg_recvlogical
file path=usr/postgres/9.6/bin/$(MACH32)/pg_resetxlog
file path=usr/postgres/9.6/bin/$(MACH32)/pg_restore
file path=usr/postgres/9.6/bin/$(MACH32)/pg_rewind
file path=usr/postgres/9.6/bin/$(MACH32)/pg_standby
file path=usr/postgres/9.6/bin/$(MACH32)/pg_test_fsync
file path=usr/postgres/9.6/bin/$(MACH32)/pg_test_timing
file path=usr/postgres/9.6/bin/$(MACH32)/pg_upgrade
file path=usr/postgres/9.6/bin/$(MACH32)/pg_xlogdump
file path=usr/postgres/9.6/bin/$(MACH32)/pgbench
file path=usr/postgres/9.6/bin/$(MACH32)/postgres
link path=usr/postgres/9.6/bin/$(MACH32)/postmaster target=postgres
file path=usr/postgres/9.6/bin/$(MACH32)/psql
file path=usr/postgres/9.6/bin/$(MACH32)/reindexdb
file path=usr/postgres/9.6/bin/$(MACH32)/vacuumdb
file path=usr/postgres/9.6/bin/$(MACH32)/vacuumlo
file path=usr/postgres/9.6/bin/clusterdb
file path=usr/postgres/9.6/bin/createdb
file path=usr/postgres/9.6/bin/createlang
file path=usr/postgres/9.6/bin/createuser
file path=usr/postgres/9.6/bin/dropdb
file path=usr/postgres/9.6/bin/droplang
file path=usr/postgres/9.6/bin/dropuser
file path=usr/postgres/9.6/bin/ecpg
file path=usr/postgres/9.6/bin/initdb
file path=usr/postgres/9.6/bin/oid2name
file path=usr/postgres/9.6/bin/pg_archivecleanup
file path=usr/postgres/9.6/bin/pg_basebackup
file path=usr/postgres/9.6/bin/pg_config
file path=usr/postgres/9.6/bin/pg_controldata
file path=usr/postgres/9.6/bin/pg_ctl
file path=usr/postgres/9.6/bin/pg_dump
file path=usr/postgres/9.6/bin/pg_dumpall
file path=usr/postgres/9.6/bin/pg_isready
file path=usr/postgres/9.6/bin/pg_receivexlog
file path=usr/postgres/9.6/bin/pg_recvlogical
file path=usr/postgres/9.6/bin/pg_resetxlog
file path=usr/postgres/9.6/bin/pg_restore
file path=usr/postgres/9.6/bin/pg_rewind
file path=usr/postgres/9.6/bin/pg_standby
file path=usr/postgres/9.6/bin/pg_test_fsync
file path=usr/postgres/9.6/bin/pg_test_timing
file path=usr/postgres/9.6/bin/pg_upgrade
file path=usr/postgres/9.6/bin/pg_xlogdump
file path=usr/postgres/9.6/bin/pgbench
file path=usr/postgres/9.6/bin/pltcl_delmod
file path=usr/postgres/9.6/bin/pltcl_listmod
file path=usr/postgres/9.6/bin/pltcl_loadmod
file path=usr/postgres/9.6/bin/postgres
link path=usr/postgres/9.6/bin/postmaster target=postgres
file path=usr/postgres/9.6/bin/psql
file path=usr/postgres/9.6/bin/reindexdb
file path=usr/postgres/9.6/bin/vacuumdb
file path=usr/postgres/9.6/bin/vacuumlo
file path=usr/postgres/9.6/doc/extension/autoinc.example
file path=usr/postgres/9.6/doc/extension/insert_username.example
file path=usr/postgres/9.6/doc/extension/moddatetime.example
file path=usr/postgres/9.6/doc/extension/refint.example
file path=usr/postgres/9.6/doc/extension/timetravel.example
file path=usr/postgres/9.6/doc/html/LEGALNOTICE.html
file path=usr/postgres/9.6/doc/html/acronyms.html
file path=usr/postgres/9.6/doc/html/admin.html
file path=usr/postgres/9.6/doc/html/adminpack.html
file path=usr/postgres/9.6/doc/html/app-clusterdb.html
file path=usr/postgres/9.6/doc/html/app-createdb.html
file path=usr/postgres/9.6/doc/html/app-createlang.html
file path=usr/postgres/9.6/doc/html/app-createuser.html
file path=usr/postgres/9.6/doc/html/app-dropdb.html
file path=usr/postgres/9.6/doc/html/app-droplang.html
file path=usr/postgres/9.6/doc/html/app-dropuser.html
file path=usr/postgres/9.6/doc/html/app-ecpg.html
file path=usr/postgres/9.6/doc/html/app-initdb.html
file path=usr/postgres/9.6/doc/html/app-pg-ctl.html
file path=usr/postgres/9.6/doc/html/app-pg-dumpall.html
file path=usr/postgres/9.6/doc/html/app-pg-isready.html
file path=usr/postgres/9.6/doc/html/app-pgbasebackup.html
file path=usr/postgres/9.6/doc/html/app-pgconfig.html
file path=usr/postgres/9.6/doc/html/app-pgcontroldata.html
file path=usr/postgres/9.6/doc/html/app-pgdump.html
file path=usr/postgres/9.6/doc/html/app-pgreceivexlog.html
file path=usr/postgres/9.6/doc/html/app-pgrecvlogical.html
file path=usr/postgres/9.6/doc/html/app-pgresetxlog.html
file path=usr/postgres/9.6/doc/html/app-pgrestore.html
file path=usr/postgres/9.6/doc/html/app-pgrewind.html
file path=usr/postgres/9.6/doc/html/app-postgres.html
file path=usr/postgres/9.6/doc/html/app-postmaster.html
file path=usr/postgres/9.6/doc/html/app-psql.html
file path=usr/postgres/9.6/doc/html/app-reindexdb.html
file path=usr/postgres/9.6/doc/html/app-vacuumdb.html
file path=usr/postgres/9.6/doc/html/appendixes.html
file path=usr/postgres/9.6/doc/html/applevel-consistency.html
file path=usr/postgres/9.6/doc/html/archive-recovery-settings.html
file path=usr/postgres/9.6/doc/html/arrays.html
file path=usr/postgres/9.6/doc/html/auth-delay.html
file path=usr/postgres/9.6/doc/html/auth-methods.html
file path=usr/postgres/9.6/doc/html/auth-pg-hba-conf.html
file path=usr/postgres/9.6/doc/html/auth-username-maps.html
file path=usr/postgres/9.6/doc/html/auto-explain.html
file path=usr/postgres/9.6/doc/html/backup-dump.html
file path=usr/postgres/9.6/doc/html/backup-file.html
file path=usr/postgres/9.6/doc/html/backup.html
file path=usr/postgres/9.6/doc/html/bgworker.html
file path=usr/postgres/9.6/doc/html/biblio.html
file path=usr/postgres/9.6/doc/html/bki-commands.html
file path=usr/postgres/9.6/doc/html/bki-example.html
file path=usr/postgres/9.6/doc/html/bki-format.html
file path=usr/postgres/9.6/doc/html/bki-structure.html
file path=usr/postgres/9.6/doc/html/bki.html
file path=usr/postgres/9.6/doc/html/bloom.html
file path=usr/postgres/9.6/doc/html/bookindex.html
file path=usr/postgres/9.6/doc/html/brin-builtin-opclasses.html
file path=usr/postgres/9.6/doc/html/brin-extensibility.html
file path=usr/postgres/9.6/doc/html/brin-intro.html
file path=usr/postgres/9.6/doc/html/brin.html
file path=usr/postgres/9.6/doc/html/btree-gin.html
file path=usr/postgres/9.6/doc/html/btree-gist.html
file path=usr/postgres/9.6/doc/html/bug-reporting.html
file path=usr/postgres/9.6/doc/html/catalog-pg-aggregate.html
file path=usr/postgres/9.6/doc/html/catalog-pg-am.html
file path=usr/postgres/9.6/doc/html/catalog-pg-amop.html
file path=usr/postgres/9.6/doc/html/catalog-pg-amproc.html
file path=usr/postgres/9.6/doc/html/catalog-pg-attrdef.html
file path=usr/postgres/9.6/doc/html/catalog-pg-attribute.html
file path=usr/postgres/9.6/doc/html/catalog-pg-auth-members.html
file path=usr/postgres/9.6/doc/html/catalog-pg-authid.html
file path=usr/postgres/9.6/doc/html/catalog-pg-cast.html
file path=usr/postgres/9.6/doc/html/catalog-pg-class.html
file path=usr/postgres/9.6/doc/html/catalog-pg-collation.html
file path=usr/postgres/9.6/doc/html/catalog-pg-constraint.html
file path=usr/postgres/9.6/doc/html/catalog-pg-conversion.html
file path=usr/postgres/9.6/doc/html/catalog-pg-database.html
file path=usr/postgres/9.6/doc/html/catalog-pg-db-role-setting.html
file path=usr/postgres/9.6/doc/html/catalog-pg-default-acl.html
file path=usr/postgres/9.6/doc/html/catalog-pg-depend.html
file path=usr/postgres/9.6/doc/html/catalog-pg-description.html
file path=usr/postgres/9.6/doc/html/catalog-pg-enum.html
file path=usr/postgres/9.6/doc/html/catalog-pg-event-trigger.html
file path=usr/postgres/9.6/doc/html/catalog-pg-extension.html
file path=usr/postgres/9.6/doc/html/catalog-pg-foreign-data-wrapper.html
file path=usr/postgres/9.6/doc/html/catalog-pg-foreign-server.html
file path=usr/postgres/9.6/doc/html/catalog-pg-foreign-table.html
file path=usr/postgres/9.6/doc/html/catalog-pg-index.html
file path=usr/postgres/9.6/doc/html/catalog-pg-inherits.html
file path=usr/postgres/9.6/doc/html/catalog-pg-init-privs.html
file path=usr/postgres/9.6/doc/html/catalog-pg-language.html
file path=usr/postgres/9.6/doc/html/catalog-pg-largeobject-metadata.html
file path=usr/postgres/9.6/doc/html/catalog-pg-largeobject.html
file path=usr/postgres/9.6/doc/html/catalog-pg-namespace.html
file path=usr/postgres/9.6/doc/html/catalog-pg-opclass.html
file path=usr/postgres/9.6/doc/html/catalog-pg-operator.html
file path=usr/postgres/9.6/doc/html/catalog-pg-opfamily.html
file path=usr/postgres/9.6/doc/html/catalog-pg-pltemplate.html
file path=usr/postgres/9.6/doc/html/catalog-pg-policy.html
file path=usr/postgres/9.6/doc/html/catalog-pg-proc.html
file path=usr/postgres/9.6/doc/html/catalog-pg-range.html
file path=usr/postgres/9.6/doc/html/catalog-pg-replication-origin.html
file path=usr/postgres/9.6/doc/html/catalog-pg-rewrite.html
file path=usr/postgres/9.6/doc/html/catalog-pg-seclabel.html
file path=usr/postgres/9.6/doc/html/catalog-pg-shdepend.html
file path=usr/postgres/9.6/doc/html/catalog-pg-shdescription.html
file path=usr/postgres/9.6/doc/html/catalog-pg-shseclabel.html
file path=usr/postgres/9.6/doc/html/catalog-pg-statistic.html
file path=usr/postgres/9.6/doc/html/catalog-pg-tablespace.html
file path=usr/postgres/9.6/doc/html/catalog-pg-transform.html
file path=usr/postgres/9.6/doc/html/catalog-pg-trigger.html
file path=usr/postgres/9.6/doc/html/catalog-pg-ts-config-map.html
file path=usr/postgres/9.6/doc/html/catalog-pg-ts-config.html
file path=usr/postgres/9.6/doc/html/catalog-pg-ts-dict.html
file path=usr/postgres/9.6/doc/html/catalog-pg-ts-parser.html
file path=usr/postgres/9.6/doc/html/catalog-pg-ts-template.html
file path=usr/postgres/9.6/doc/html/catalog-pg-type.html
file path=usr/postgres/9.6/doc/html/catalog-pg-user-mapping.html
file path=usr/postgres/9.6/doc/html/catalogs-overview.html
file path=usr/postgres/9.6/doc/html/catalogs.html
file path=usr/postgres/9.6/doc/html/charset.html
file path=usr/postgres/9.6/doc/html/chkpass.html
file path=usr/postgres/9.6/doc/html/citext.html
file path=usr/postgres/9.6/doc/html/client-authentication-problems.html
file path=usr/postgres/9.6/doc/html/client-authentication.html
file path=usr/postgres/9.6/doc/html/client-interfaces.html
file path=usr/postgres/9.6/doc/html/collation.html
file path=usr/postgres/9.6/doc/html/config-setting.html
file path=usr/postgres/9.6/doc/html/connect-estab.html
file path=usr/postgres/9.6/doc/html/continuous-archiving.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-build-sql-delete.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-build-sql-insert.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-build-sql-update.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-cancel-query.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-close.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-connect-u.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-connect.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-disconnect.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-error-message.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-exec.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-fetch.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-function.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-get-connections.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-get-notify.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-get-pkey.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-get-result.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-is-busy.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-open.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-send-query.html
file path=usr/postgres/9.6/doc/html/contrib-prog-client.html
file path=usr/postgres/9.6/doc/html/contrib-prog-server.html
file path=usr/postgres/9.6/doc/html/contrib-prog.html
file path=usr/postgres/9.6/doc/html/contrib-spi.html
file path=usr/postgres/9.6/doc/html/contrib.html
file path=usr/postgres/9.6/doc/html/creating-cluster.html
file path=usr/postgres/9.6/doc/html/cube.html
file path=usr/postgres/9.6/doc/html/custom-scan-execution.html
file path=usr/postgres/9.6/doc/html/custom-scan-path.html
file path=usr/postgres/9.6/doc/html/custom-scan-plan.html
file path=usr/postgres/9.6/doc/html/custom-scan.html
file path=usr/postgres/9.6/doc/html/database-roles.html
file path=usr/postgres/9.6/doc/html/datatype-binary.html
file path=usr/postgres/9.6/doc/html/datatype-bit.html
file path=usr/postgres/9.6/doc/html/datatype-boolean.html
file path=usr/postgres/9.6/doc/html/datatype-character.html
file path=usr/postgres/9.6/doc/html/datatype-datetime.html
file path=usr/postgres/9.6/doc/html/datatype-enum.html
file path=usr/postgres/9.6/doc/html/datatype-geometric.html
file path=usr/postgres/9.6/doc/html/datatype-json.html
file path=usr/postgres/9.6/doc/html/datatype-money.html
file path=usr/postgres/9.6/doc/html/datatype-net-types.html
file path=usr/postgres/9.6/doc/html/datatype-numeric.html
file path=usr/postgres/9.6/doc/html/datatype-oid.html
file path=usr/postgres/9.6/doc/html/datatype-pg-lsn.html
file path=usr/postgres/9.6/doc/html/datatype-pseudo.html
file path=usr/postgres/9.6/doc/html/datatype-textsearch.html
file path=usr/postgres/9.6/doc/html/datatype-uuid.html
file path=usr/postgres/9.6/doc/html/datatype-xml.html
file path=usr/postgres/9.6/doc/html/datatype.html
file path=usr/postgres/9.6/doc/html/datetime-appendix.html
file path=usr/postgres/9.6/doc/html/datetime-config-files.html
file path=usr/postgres/9.6/doc/html/datetime-input-rules.html
file path=usr/postgres/9.6/doc/html/datetime-keywords.html
file path=usr/postgres/9.6/doc/html/datetime-units-history.html
file path=usr/postgres/9.6/doc/html/dblink.html
file path=usr/postgres/9.6/doc/html/ddl-alter.html
file path=usr/postgres/9.6/doc/html/ddl-basics.html
file path=usr/postgres/9.6/doc/html/ddl-constraints.html
file path=usr/postgres/9.6/doc/html/ddl-default.html
file path=usr/postgres/9.6/doc/html/ddl-depend.html
file path=usr/postgres/9.6/doc/html/ddl-foreign-data.html
file path=usr/postgres/9.6/doc/html/ddl-inherit.html
file path=usr/postgres/9.6/doc/html/ddl-others.html
file path=usr/postgres/9.6/doc/html/ddl-partitioning.html
file path=usr/postgres/9.6/doc/html/ddl-priv.html
file path=usr/postgres/9.6/doc/html/ddl-rowsecurity.html
file path=usr/postgres/9.6/doc/html/ddl-schemas.html
file path=usr/postgres/9.6/doc/html/ddl-system-columns.html
file path=usr/postgres/9.6/doc/html/ddl.html
file path=usr/postgres/9.6/doc/html/default-roles.html
file path=usr/postgres/9.6/doc/html/dict-int.html
file path=usr/postgres/9.6/doc/html/dict-xsyn.html
file path=usr/postgres/9.6/doc/html/different-replication-solutions.html
file path=usr/postgres/9.6/doc/html/disk-full.html
file path=usr/postgres/9.6/doc/html/disk-usage.html
file path=usr/postgres/9.6/doc/html/diskusage.html
file path=usr/postgres/9.6/doc/html/dml-delete.html
file path=usr/postgres/9.6/doc/html/dml-insert.html
file path=usr/postgres/9.6/doc/html/dml-update.html
file path=usr/postgres/9.6/doc/html/dml.html
file path=usr/postgres/9.6/doc/html/docguide-authoring.html
file path=usr/postgres/9.6/doc/html/docguide-build.html
file path=usr/postgres/9.6/doc/html/docguide-docbook.html
file path=usr/postgres/9.6/doc/html/docguide-style.html
file path=usr/postgres/9.6/doc/html/docguide-toolsets.html
file path=usr/postgres/9.6/doc/html/docguide.html
file path=usr/postgres/9.6/doc/html/dynamic-trace.html
file path=usr/postgres/9.6/doc/html/earthdistance.html
file path=usr/postgres/9.6/doc/html/ecpg-commands.html
file path=usr/postgres/9.6/doc/html/ecpg-concept.html
file path=usr/postgres/9.6/doc/html/ecpg-connect.html
file path=usr/postgres/9.6/doc/html/ecpg-cpp.html
file path=usr/postgres/9.6/doc/html/ecpg-descriptors.html
file path=usr/postgres/9.6/doc/html/ecpg-develop.html
file path=usr/postgres/9.6/doc/html/ecpg-dynamic.html
file path=usr/postgres/9.6/doc/html/ecpg-errors.html
file path=usr/postgres/9.6/doc/html/ecpg-informix-compat.html
file path=usr/postgres/9.6/doc/html/ecpg-library.html
file path=usr/postgres/9.6/doc/html/ecpg-lo.html
file path=usr/postgres/9.6/doc/html/ecpg-pgtypes.html
file path=usr/postgres/9.6/doc/html/ecpg-preproc.html
file path=usr/postgres/9.6/doc/html/ecpg-process.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-allocate-descriptor.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-commands.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-connect.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-deallocate-descriptor.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-declare.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-describe.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-disconnect.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-execute-immediate.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-get-descriptor.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-open.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-prepare.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-set-autocommit.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-set-connection.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-set-descriptor.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-type.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-var.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-whenever.html
file path=usr/postgres/9.6/doc/html/ecpg-variables.html
file path=usr/postgres/9.6/doc/html/ecpg.html
file path=usr/postgres/9.6/doc/html/encryption-options.html
file path=usr/postgres/9.6/doc/html/errcodes-appendix.html
file path=usr/postgres/9.6/doc/html/error-message-reporting.html
file path=usr/postgres/9.6/doc/html/error-style-guide.html
file path=usr/postgres/9.6/doc/html/event-log-registration.html
file path=usr/postgres/9.6/doc/html/event-trigger-definition.html
file path=usr/postgres/9.6/doc/html/event-trigger-example.html
file path=usr/postgres/9.6/doc/html/event-trigger-interface.html
file path=usr/postgres/9.6/doc/html/event-trigger-matrix.html
file path=usr/postgres/9.6/doc/html/event-trigger-table-rewrite-example.html
file path=usr/postgres/9.6/doc/html/event-triggers.html
file path=usr/postgres/9.6/doc/html/executor.html
file path=usr/postgres/9.6/doc/html/explicit-joins.html
file path=usr/postgres/9.6/doc/html/explicit-locking.html
file path=usr/postgres/9.6/doc/html/extend-extensions.html
file path=usr/postgres/9.6/doc/html/extend-how.html
file path=usr/postgres/9.6/doc/html/extend-pgxs.html
file path=usr/postgres/9.6/doc/html/extend-type-system.html
file path=usr/postgres/9.6/doc/html/extend.html
file path=usr/postgres/9.6/doc/html/external-admin-tools.html
file path=usr/postgres/9.6/doc/html/external-extensions.html
file path=usr/postgres/9.6/doc/html/external-interfaces.html
file path=usr/postgres/9.6/doc/html/external-pl.html
file path=usr/postgres/9.6/doc/html/external-projects.html
file path=usr/postgres/9.6/doc/html/fdw-callbacks.html
file path=usr/postgres/9.6/doc/html/fdw-functions.html
file path=usr/postgres/9.6/doc/html/fdw-helpers.html
file path=usr/postgres/9.6/doc/html/fdw-planning.html
file path=usr/postgres/9.6/doc/html/fdw-row-locking.html
file path=usr/postgres/9.6/doc/html/fdwhandler.html
file path=usr/postgres/9.6/doc/html/features-sql-standard.html
file path=usr/postgres/9.6/doc/html/features.html
file path=usr/postgres/9.6/doc/html/file-fdw.html
file path=usr/postgres/9.6/doc/html/functions-admin.html
file path=usr/postgres/9.6/doc/html/functions-aggregate.html
file path=usr/postgres/9.6/doc/html/functions-array.html
file path=usr/postgres/9.6/doc/html/functions-binarystring.html
file path=usr/postgres/9.6/doc/html/functions-bitstring.html
file path=usr/postgres/9.6/doc/html/functions-comparison.html
file path=usr/postgres/9.6/doc/html/functions-comparisons.html
file path=usr/postgres/9.6/doc/html/functions-conditional.html
file path=usr/postgres/9.6/doc/html/functions-datetime.html
file path=usr/postgres/9.6/doc/html/functions-enum.html
file path=usr/postgres/9.6/doc/html/functions-event-triggers.html
file path=usr/postgres/9.6/doc/html/functions-formatting.html
file path=usr/postgres/9.6/doc/html/functions-geometry.html
file path=usr/postgres/9.6/doc/html/functions-info.html
file path=usr/postgres/9.6/doc/html/functions-json.html
file path=usr/postgres/9.6/doc/html/functions-logical.html
file path=usr/postgres/9.6/doc/html/functions-matching.html
file path=usr/postgres/9.6/doc/html/functions-math.html
file path=usr/postgres/9.6/doc/html/functions-net.html
file path=usr/postgres/9.6/doc/html/functions-range.html
file path=usr/postgres/9.6/doc/html/functions-sequence.html
file path=usr/postgres/9.6/doc/html/functions-srf.html
file path=usr/postgres/9.6/doc/html/functions-string.html
file path=usr/postgres/9.6/doc/html/functions-subquery.html
file path=usr/postgres/9.6/doc/html/functions-textsearch.html
file path=usr/postgres/9.6/doc/html/functions-trigger.html
file path=usr/postgres/9.6/doc/html/functions-window.html
file path=usr/postgres/9.6/doc/html/functions-xml.html
file path=usr/postgres/9.6/doc/html/functions.html
file path=usr/postgres/9.6/doc/html/fuzzystrmatch.html
file path=usr/postgres/9.6/doc/html/generic-wal.html
file path=usr/postgres/9.6/doc/html/geqo-biblio.html
file path=usr/postgres/9.6/doc/html/geqo-intro.html
file path=usr/postgres/9.6/doc/html/geqo-intro2.html
file path=usr/postgres/9.6/doc/html/geqo-pg-intro.html
file path=usr/postgres/9.6/doc/html/geqo.html
file path=usr/postgres/9.6/doc/html/gin-builtin-opclasses.html
file path=usr/postgres/9.6/doc/html/gin-examples.html
file path=usr/postgres/9.6/doc/html/gin-extensibility.html
file path=usr/postgres/9.6/doc/html/gin-implementation.html
file path=usr/postgres/9.6/doc/html/gin-intro.html
file path=usr/postgres/9.6/doc/html/gin-limit.html
file path=usr/postgres/9.6/doc/html/gin-tips.html
file path=usr/postgres/9.6/doc/html/gin.html
file path=usr/postgres/9.6/doc/html/gist-builtin-opclasses.html
file path=usr/postgres/9.6/doc/html/gist-examples.html
file path=usr/postgres/9.6/doc/html/gist-extensibility.html
file path=usr/postgres/9.6/doc/html/gist-implementation.html
file path=usr/postgres/9.6/doc/html/gist-intro.html
file path=usr/postgres/9.6/doc/html/gist.html
file path=usr/postgres/9.6/doc/html/git.html
file path=usr/postgres/9.6/doc/html/high-availability.html
file path=usr/postgres/9.6/doc/html/history.html
file path=usr/postgres/9.6/doc/html/hot-standby.html
file path=usr/postgres/9.6/doc/html/how-parallel-query-works.html
file path=usr/postgres/9.6/doc/html/hstore.html
file path=usr/postgres/9.6/doc/html/index-api.html
file path=usr/postgres/9.6/doc/html/index-cost-estimation.html
file path=usr/postgres/9.6/doc/html/index-functions.html
file path=usr/postgres/9.6/doc/html/index-locking.html
file path=usr/postgres/9.6/doc/html/index-scanning.html
file path=usr/postgres/9.6/doc/html/index-unique-checks.html
file path=usr/postgres/9.6/doc/html/index.html
file path=usr/postgres/9.6/doc/html/indexam.html
file path=usr/postgres/9.6/doc/html/indexes-bitmap-scans.html
file path=usr/postgres/9.6/doc/html/indexes-collations.html
file path=usr/postgres/9.6/doc/html/indexes-examine.html
file path=usr/postgres/9.6/doc/html/indexes-expressional.html
file path=usr/postgres/9.6/doc/html/indexes-index-only-scans.html
file path=usr/postgres/9.6/doc/html/indexes-intro.html
file path=usr/postgres/9.6/doc/html/indexes-multicolumn.html
file path=usr/postgres/9.6/doc/html/indexes-opclass.html
file path=usr/postgres/9.6/doc/html/indexes-ordering.html
file path=usr/postgres/9.6/doc/html/indexes-partial.html
file path=usr/postgres/9.6/doc/html/indexes-types.html
file path=usr/postgres/9.6/doc/html/indexes-unique.html
file path=usr/postgres/9.6/doc/html/indexes.html
file path=usr/postgres/9.6/doc/html/information-schema.html
file path=usr/postgres/9.6/doc/html/infoschema-administrable-role-authorizations.html
file path=usr/postgres/9.6/doc/html/infoschema-applicable-roles.html
file path=usr/postgres/9.6/doc/html/infoschema-attributes.html
file path=usr/postgres/9.6/doc/html/infoschema-character-sets.html
file path=usr/postgres/9.6/doc/html/infoschema-check-constraint-routine-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-check-constraints.html
file path=usr/postgres/9.6/doc/html/infoschema-collation-character-set-applicab.html
file path=usr/postgres/9.6/doc/html/infoschema-collations.html
file path=usr/postgres/9.6/doc/html/infoschema-column-domain-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-column-options.html
file path=usr/postgres/9.6/doc/html/infoschema-column-privileges.html
file path=usr/postgres/9.6/doc/html/infoschema-column-udt-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-columns.html
file path=usr/postgres/9.6/doc/html/infoschema-constraint-column-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-constraint-table-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-data-type-privileges.html
file path=usr/postgres/9.6/doc/html/infoschema-datatypes.html
file path=usr/postgres/9.6/doc/html/infoschema-domain-constraints.html
file path=usr/postgres/9.6/doc/html/infoschema-domain-udt-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-domains.html
file path=usr/postgres/9.6/doc/html/infoschema-element-types.html
file path=usr/postgres/9.6/doc/html/infoschema-enabled-roles.html
file path=usr/postgres/9.6/doc/html/infoschema-foreign-data-wrapper-options.html
file path=usr/postgres/9.6/doc/html/infoschema-foreign-data-wrappers.html
file path=usr/postgres/9.6/doc/html/infoschema-foreign-server-options.html
file path=usr/postgres/9.6/doc/html/infoschema-foreign-servers.html
file path=usr/postgres/9.6/doc/html/infoschema-foreign-table-options.html
file path=usr/postgres/9.6/doc/html/infoschema-foreign-tables.html
file path=usr/postgres/9.6/doc/html/infoschema-information-schema-catalog-name.html
file path=usr/postgres/9.6/doc/html/infoschema-key-column-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-parameters.html
file path=usr/postgres/9.6/doc/html/infoschema-referential-constraints.html
file path=usr/postgres/9.6/doc/html/infoschema-role-column-grants.html
file path=usr/postgres/9.6/doc/html/infoschema-role-routine-grants.html
file path=usr/postgres/9.6/doc/html/infoschema-role-table-grants.html
file path=usr/postgres/9.6/doc/html/infoschema-role-udt-grants.html
file path=usr/postgres/9.6/doc/html/infoschema-role-usage-grants.html
file path=usr/postgres/9.6/doc/html/infoschema-routine-privileges.html
file path=usr/postgres/9.6/doc/html/infoschema-routines.html
file path=usr/postgres/9.6/doc/html/infoschema-schema.html
file path=usr/postgres/9.6/doc/html/infoschema-schemata.html
file path=usr/postgres/9.6/doc/html/infoschema-sequences.html
file path=usr/postgres/9.6/doc/html/infoschema-sql-features.html
file path=usr/postgres/9.6/doc/html/infoschema-sql-implementation-info.html
file path=usr/postgres/9.6/doc/html/infoschema-sql-languages.html
file path=usr/postgres/9.6/doc/html/infoschema-sql-packages.html
file path=usr/postgres/9.6/doc/html/infoschema-sql-parts.html
file path=usr/postgres/9.6/doc/html/infoschema-sql-sizing-profiles.html
file path=usr/postgres/9.6/doc/html/infoschema-sql-sizing.html
file path=usr/postgres/9.6/doc/html/infoschema-table-constraints.html
file path=usr/postgres/9.6/doc/html/infoschema-table-privileges.html
file path=usr/postgres/9.6/doc/html/infoschema-tables.html
file path=usr/postgres/9.6/doc/html/infoschema-transforms.html
file path=usr/postgres/9.6/doc/html/infoschema-triggered-update-columns.html
file path=usr/postgres/9.6/doc/html/infoschema-triggers.html
file path=usr/postgres/9.6/doc/html/infoschema-udt-privileges.html
file path=usr/postgres/9.6/doc/html/infoschema-usage-privileges.html
file path=usr/postgres/9.6/doc/html/infoschema-user-defined-types.html
file path=usr/postgres/9.6/doc/html/infoschema-user-mapping-options.html
file path=usr/postgres/9.6/doc/html/infoschema-user-mappings.html
file path=usr/postgres/9.6/doc/html/infoschema-view-column-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-view-routine-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-view-table-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-views.html
file path=usr/postgres/9.6/doc/html/install-getsource.html
file path=usr/postgres/9.6/doc/html/install-post.html
file path=usr/postgres/9.6/doc/html/install-procedure.html
file path=usr/postgres/9.6/doc/html/install-requirements.html
file path=usr/postgres/9.6/doc/html/install-short.html
file path=usr/postgres/9.6/doc/html/install-windows-full.html
file path=usr/postgres/9.6/doc/html/install-windows-libpq.html
file path=usr/postgres/9.6/doc/html/install-windows.html
file path=usr/postgres/9.6/doc/html/installation-platform-notes.html
file path=usr/postgres/9.6/doc/html/installation.html
file path=usr/postgres/9.6/doc/html/intagg.html
file path=usr/postgres/9.6/doc/html/intarray.html
file path=usr/postgres/9.6/doc/html/internals.html
file path=usr/postgres/9.6/doc/html/intro-whatis.html
file path=usr/postgres/9.6/doc/html/isn.html
file path=usr/postgres/9.6/doc/html/kernel-resources.html
file path=usr/postgres/9.6/doc/html/largeobjects.html
file path=usr/postgres/9.6/doc/html/libpq-async.html
file path=usr/postgres/9.6/doc/html/libpq-build.html
file path=usr/postgres/9.6/doc/html/libpq-cancel.html
file path=usr/postgres/9.6/doc/html/libpq-connect.html
file path=usr/postgres/9.6/doc/html/libpq-control.html
file path=usr/postgres/9.6/doc/html/libpq-copy.html
file path=usr/postgres/9.6/doc/html/libpq-envars.html
file path=usr/postgres/9.6/doc/html/libpq-events.html
file path=usr/postgres/9.6/doc/html/libpq-example.html
file path=usr/postgres/9.6/doc/html/libpq-exec.html
file path=usr/postgres/9.6/doc/html/libpq-fastpath.html
file path=usr/postgres/9.6/doc/html/libpq-ldap.html
file path=usr/postgres/9.6/doc/html/libpq-misc.html
file path=usr/postgres/9.6/doc/html/libpq-notice-processing.html
file path=usr/postgres/9.6/doc/html/libpq-notify.html
file path=usr/postgres/9.6/doc/html/libpq-pgpass.html
file path=usr/postgres/9.6/doc/html/libpq-pgservice.html
file path=usr/postgres/9.6/doc/html/libpq-single-row-mode.html
file path=usr/postgres/9.6/doc/html/libpq-ssl.html
file path=usr/postgres/9.6/doc/html/libpq-status.html
file path=usr/postgres/9.6/doc/html/libpq-threading.html
file path=usr/postgres/9.6/doc/html/libpq.html
file path=usr/postgres/9.6/doc/html/lo-examplesect.html
file path=usr/postgres/9.6/doc/html/lo-funcs.html
file path=usr/postgres/9.6/doc/html/lo-implementation.html
file path=usr/postgres/9.6/doc/html/lo-interfaces.html
file path=usr/postgres/9.6/doc/html/lo-intro.html
file path=usr/postgres/9.6/doc/html/lo.html
file path=usr/postgres/9.6/doc/html/locale.html
file path=usr/postgres/9.6/doc/html/locking-indexes.html
file path=usr/postgres/9.6/doc/html/log-shipping-alternative.html
file path=usr/postgres/9.6/doc/html/logfile-maintenance.html
file path=usr/postgres/9.6/doc/html/logicaldecoding-catalogs.html
file path=usr/postgres/9.6/doc/html/logicaldecoding-example.html
file path=usr/postgres/9.6/doc/html/logicaldecoding-explanation.html
file path=usr/postgres/9.6/doc/html/logicaldecoding-output-plugin.html
file path=usr/postgres/9.6/doc/html/logicaldecoding-sql.html
file path=usr/postgres/9.6/doc/html/logicaldecoding-synchronous.html
file path=usr/postgres/9.6/doc/html/logicaldecoding-walsender.html
file path=usr/postgres/9.6/doc/html/logicaldecoding-writer.html
file path=usr/postgres/9.6/doc/html/logicaldecoding.html
file path=usr/postgres/9.6/doc/html/ltree.html
file path=usr/postgres/9.6/doc/html/maintenance.html
file path=usr/postgres/9.6/doc/html/manage-ag-config.html
file path=usr/postgres/9.6/doc/html/manage-ag-createdb.html
file path=usr/postgres/9.6/doc/html/manage-ag-dropdb.html
file path=usr/postgres/9.6/doc/html/manage-ag-overview.html
file path=usr/postgres/9.6/doc/html/manage-ag-tablespaces.html
file path=usr/postgres/9.6/doc/html/manage-ag-templatedbs.html
file path=usr/postgres/9.6/doc/html/managing-databases.html
file path=usr/postgres/9.6/doc/html/monitoring-locks.html
file path=usr/postgres/9.6/doc/html/monitoring-ps.html
file path=usr/postgres/9.6/doc/html/monitoring-stats.html
file path=usr/postgres/9.6/doc/html/monitoring.html
file path=usr/postgres/9.6/doc/html/multibyte.html
file path=usr/postgres/9.6/doc/html/mvcc-caveats.html
file path=usr/postgres/9.6/doc/html/mvcc-intro.html
file path=usr/postgres/9.6/doc/html/mvcc.html
file path=usr/postgres/9.6/doc/html/nls-programmer.html
file path=usr/postgres/9.6/doc/html/nls-translator.html
file path=usr/postgres/9.6/doc/html/nls.html
file path=usr/postgres/9.6/doc/html/non-durability.html
file path=usr/postgres/9.6/doc/html/notation.html
file path=usr/postgres/9.6/doc/html/oid2name.html
file path=usr/postgres/9.6/doc/html/overview.html
file path=usr/postgres/9.6/doc/html/pageinspect.html
file path=usr/postgres/9.6/doc/html/parallel-plans.html
file path=usr/postgres/9.6/doc/html/parallel-query.html
file path=usr/postgres/9.6/doc/html/parallel-safety.html
file path=usr/postgres/9.6/doc/html/parser-stage.html
file path=usr/postgres/9.6/doc/html/passwordcheck.html
file path=usr/postgres/9.6/doc/html/performance-tips.html
file path=usr/postgres/9.6/doc/html/perm-functions.html
file path=usr/postgres/9.6/doc/html/pgarchivecleanup.html
file path=usr/postgres/9.6/doc/html/pgbench.html
file path=usr/postgres/9.6/doc/html/pgbuffercache.html
file path=usr/postgres/9.6/doc/html/pgcrypto.html
file path=usr/postgres/9.6/doc/html/pgfreespacemap.html
file path=usr/postgres/9.6/doc/html/pgprewarm.html
file path=usr/postgres/9.6/doc/html/pgrowlocks.html
file path=usr/postgres/9.6/doc/html/pgstandby.html
file path=usr/postgres/9.6/doc/html/pgstatstatements.html
file path=usr/postgres/9.6/doc/html/pgstattuple.html
file path=usr/postgres/9.6/doc/html/pgtestfsync.html
file path=usr/postgres/9.6/doc/html/pgtesttiming.html
file path=usr/postgres/9.6/doc/html/pgtrgm.html
file path=usr/postgres/9.6/doc/html/pgupgrade.html
file path=usr/postgres/9.6/doc/html/pgvisibility.html
file path=usr/postgres/9.6/doc/html/pgxlogdump.html
file path=usr/postgres/9.6/doc/html/planner-optimizer.html
file path=usr/postgres/9.6/doc/html/planner-stats-details.html
file path=usr/postgres/9.6/doc/html/planner-stats.html
file path=usr/postgres/9.6/doc/html/plhandler.html
file path=usr/postgres/9.6/doc/html/plperl-builtins.html
file path=usr/postgres/9.6/doc/html/plperl-data.html
file path=usr/postgres/9.6/doc/html/plperl-event-triggers.html
file path=usr/postgres/9.6/doc/html/plperl-funcs.html
file path=usr/postgres/9.6/doc/html/plperl-global.html
file path=usr/postgres/9.6/doc/html/plperl-triggers.html
file path=usr/postgres/9.6/doc/html/plperl-trusted.html
file path=usr/postgres/9.6/doc/html/plperl-under-the-hood.html
file path=usr/postgres/9.6/doc/html/plperl.html
file path=usr/postgres/9.6/doc/html/plpgsql-control-structures.html
file path=usr/postgres/9.6/doc/html/plpgsql-cursors.html
file path=usr/postgres/9.6/doc/html/plpgsql-declarations.html
file path=usr/postgres/9.6/doc/html/plpgsql-development-tips.html
file path=usr/postgres/9.6/doc/html/plpgsql-errors-and-messages.html
file path=usr/postgres/9.6/doc/html/plpgsql-expressions.html
file path=usr/postgres/9.6/doc/html/plpgsql-implementation.html
file path=usr/postgres/9.6/doc/html/plpgsql-overview.html
file path=usr/postgres/9.6/doc/html/plpgsql-porting.html
file path=usr/postgres/9.6/doc/html/plpgsql-statements.html
file path=usr/postgres/9.6/doc/html/plpgsql-structure.html
file path=usr/postgres/9.6/doc/html/plpgsql-trigger.html
file path=usr/postgres/9.6/doc/html/plpgsql.html
file path=usr/postgres/9.6/doc/html/plpython-data.html
file path=usr/postgres/9.6/doc/html/plpython-database.html
file path=usr/postgres/9.6/doc/html/plpython-do.html
file path=usr/postgres/9.6/doc/html/plpython-envar.html
file path=usr/postgres/9.6/doc/html/plpython-funcs.html
file path=usr/postgres/9.6/doc/html/plpython-python23.html
file path=usr/postgres/9.6/doc/html/plpython-sharing.html
file path=usr/postgres/9.6/doc/html/plpython-subtransaction.html
file path=usr/postgres/9.6/doc/html/plpython-trigger.html
file path=usr/postgres/9.6/doc/html/plpython-util.html
file path=usr/postgres/9.6/doc/html/plpython.html
file path=usr/postgres/9.6/doc/html/pltcl-data.html
file path=usr/postgres/9.6/doc/html/pltcl-dbaccess.html
file path=usr/postgres/9.6/doc/html/pltcl-error-handling.html
file path=usr/postgres/9.6/doc/html/pltcl-event-trigger.html
file path=usr/postgres/9.6/doc/html/pltcl-functions.html
file path=usr/postgres/9.6/doc/html/pltcl-global.html
file path=usr/postgres/9.6/doc/html/pltcl-overview.html
file path=usr/postgres/9.6/doc/html/pltcl-procnames.html
file path=usr/postgres/9.6/doc/html/pltcl-trigger.html
file path=usr/postgres/9.6/doc/html/pltcl-unknown.html
file path=usr/postgres/9.6/doc/html/pltcl.html
file path=usr/postgres/9.6/doc/html/populate.html
file path=usr/postgres/9.6/doc/html/postgres-fdw.html
file path=usr/postgres/9.6/doc/html/postgres-user.html
file path=usr/postgres/9.6/doc/html/preface.html
file path=usr/postgres/9.6/doc/html/preventing-server-spoofing.html
file path=usr/postgres/9.6/doc/html/progress-reporting.html
file path=usr/postgres/9.6/doc/html/protocol-changes.html
file path=usr/postgres/9.6/doc/html/protocol-error-fields.html
file path=usr/postgres/9.6/doc/html/protocol-flow.html
file path=usr/postgres/9.6/doc/html/protocol-message-formats.html
file path=usr/postgres/9.6/doc/html/protocol-message-types.html
file path=usr/postgres/9.6/doc/html/protocol-overview.html
file path=usr/postgres/9.6/doc/html/protocol-replication.html
file path=usr/postgres/9.6/doc/html/protocol.html
file path=usr/postgres/9.6/doc/html/queries-limit.html
file path=usr/postgres/9.6/doc/html/queries-order.html
file path=usr/postgres/9.6/doc/html/queries-overview.html
file path=usr/postgres/9.6/doc/html/queries-select-lists.html
file path=usr/postgres/9.6/doc/html/queries-table-expressions.html
file path=usr/postgres/9.6/doc/html/queries-union.html
file path=usr/postgres/9.6/doc/html/queries-values.html
file path=usr/postgres/9.6/doc/html/queries-with.html
file path=usr/postgres/9.6/doc/html/queries.html
file path=usr/postgres/9.6/doc/html/query-path.html
file path=usr/postgres/9.6/doc/html/querytree.html
file path=usr/postgres/9.6/doc/html/rangetypes.html
file path=usr/postgres/9.6/doc/html/recovery-config.html
file path=usr/postgres/9.6/doc/html/recovery-target-settings.html
file path=usr/postgres/9.6/doc/html/reference-client.html
file path=usr/postgres/9.6/doc/html/reference-server.html
file path=usr/postgres/9.6/doc/html/reference.html
file path=usr/postgres/9.6/doc/html/regress-coverage.html
file path=usr/postgres/9.6/doc/html/regress-evaluation.html
file path=usr/postgres/9.6/doc/html/regress-run.html
file path=usr/postgres/9.6/doc/html/regress-tap.html
file path=usr/postgres/9.6/doc/html/regress-variant.html
file path=usr/postgres/9.6/doc/html/regress.html
file path=usr/postgres/9.6/doc/html/release-$(COMPONENT_VERSION).html
file path=usr/postgres/9.6/doc/html/release-0-01.html
file path=usr/postgres/9.6/doc/html/release-0-02.html
file path=usr/postgres/9.6/doc/html/release-0-03.html
file path=usr/postgres/9.6/doc/html/release-1-0.html
file path=usr/postgres/9.6/doc/html/release-1-01.html
file path=usr/postgres/9.6/doc/html/release-1-02.html
file path=usr/postgres/9.6/doc/html/release-1-09.html
file path=usr/postgres/9.6/doc/html/release-6-0.html
file path=usr/postgres/9.6/doc/html/release-6-1-1.html
file path=usr/postgres/9.6/doc/html/release-6-1.html
file path=usr/postgres/9.6/doc/html/release-6-2-1.html
file path=usr/postgres/9.6/doc/html/release-6-2.html
file path=usr/postgres/9.6/doc/html/release-6-3-1.html
file path=usr/postgres/9.6/doc/html/release-6-3-2.html
file path=usr/postgres/9.6/doc/html/release-6-3.html
file path=usr/postgres/9.6/doc/html/release-6-4-1.html
file path=usr/postgres/9.6/doc/html/release-6-4-2.html
file path=usr/postgres/9.6/doc/html/release-6-4.html
file path=usr/postgres/9.6/doc/html/release-6-5-1.html
file path=usr/postgres/9.6/doc/html/release-6-5-2.html
file path=usr/postgres/9.6/doc/html/release-6-5-3.html
file path=usr/postgres/9.6/doc/html/release-6-5.html
file path=usr/postgres/9.6/doc/html/release-7-0-1.html
file path=usr/postgres/9.6/doc/html/release-7-0-2.html
file path=usr/postgres/9.6/doc/html/release-7-0-3.html
file path=usr/postgres/9.6/doc/html/release-7-0.html
file path=usr/postgres/9.6/doc/html/release-7-1-1.html
file path=usr/postgres/9.6/doc/html/release-7-1-2.html
file path=usr/postgres/9.6/doc/html/release-7-1-3.html
file path=usr/postgres/9.6/doc/html/release-7-1.html
file path=usr/postgres/9.6/doc/html/release-7-2-1.html
file path=usr/postgres/9.6/doc/html/release-7-2-2.html
file path=usr/postgres/9.6/doc/html/release-7-2-3.html
file path=usr/postgres/9.6/doc/html/release-7-2-4.html
file path=usr/postgres/9.6/doc/html/release-7-2-5.html
file path=usr/postgres/9.6/doc/html/release-7-2-6.html
file path=usr/postgres/9.6/doc/html/release-7-2-7.html
file path=usr/postgres/9.6/doc/html/release-7-2-8.html
file path=usr/postgres/9.6/doc/html/release-7-2.html
file path=usr/postgres/9.6/doc/html/release-7-3-1.html
file path=usr/postgres/9.6/doc/html/release-7-3-10.html
file path=usr/postgres/9.6/doc/html/release-7-3-11.html
file path=usr/postgres/9.6/doc/html/release-7-3-12.html
file path=usr/postgres/9.6/doc/html/release-7-3-13.html
file path=usr/postgres/9.6/doc/html/release-7-3-14.html
file path=usr/postgres/9.6/doc/html/release-7-3-15.html
file path=usr/postgres/9.6/doc/html/release-7-3-16.html
file path=usr/postgres/9.6/doc/html/release-7-3-17.html
file path=usr/postgres/9.6/doc/html/release-7-3-18.html
file path=usr/postgres/9.6/doc/html/release-7-3-19.html
file path=usr/postgres/9.6/doc/html/release-7-3-2.html
file path=usr/postgres/9.6/doc/html/release-7-3-20.html
file path=usr/postgres/9.6/doc/html/release-7-3-21.html
file path=usr/postgres/9.6/doc/html/release-7-3-3.html
file path=usr/postgres/9.6/doc/html/release-7-3-4.html
file path=usr/postgres/9.6/doc/html/release-7-3-5.html
file path=usr/postgres/9.6/doc/html/release-7-3-6.html
file path=usr/postgres/9.6/doc/html/release-7-3-7.html
file path=usr/postgres/9.6/doc/html/release-7-3-8.html
file path=usr/postgres/9.6/doc/html/release-7-3-9.html
file path=usr/postgres/9.6/doc/html/release-7-3.html
file path=usr/postgres/9.6/doc/html/release-7-4-1.html
file path=usr/postgres/9.6/doc/html/release-7-4-10.html
file path=usr/postgres/9.6/doc/html/release-7-4-11.html
file path=usr/postgres/9.6/doc/html/release-7-4-12.html
file path=usr/postgres/9.6/doc/html/release-7-4-13.html
file path=usr/postgres/9.6/doc/html/release-7-4-14.html
file path=usr/postgres/9.6/doc/html/release-7-4-15.html
file path=usr/postgres/9.6/doc/html/release-7-4-16.html
file path=usr/postgres/9.6/doc/html/release-7-4-17.html
file path=usr/postgres/9.6/doc/html/release-7-4-18.html
file path=usr/postgres/9.6/doc/html/release-7-4-19.html
file path=usr/postgres/9.6/doc/html/release-7-4-2.html
file path=usr/postgres/9.6/doc/html/release-7-4-20.html
file path=usr/postgres/9.6/doc/html/release-7-4-21.html
file path=usr/postgres/9.6/doc/html/release-7-4-22.html
file path=usr/postgres/9.6/doc/html/release-7-4-23.html
file path=usr/postgres/9.6/doc/html/release-7-4-24.html
file path=usr/postgres/9.6/doc/html/release-7-4-25.html
file path=usr/postgres/9.6/doc/html/release-7-4-26.html
file path=usr/postgres/9.6/doc/html/release-7-4-27.html
file path=usr/postgres/9.6/doc/html/release-7-4-28.html
file path=usr/postgres/9.6/doc/html/release-7-4-29.html
file path=usr/postgres/9.6/doc/html/release-7-4-3.html
file path=usr/postgres/9.6/doc/html/release-7-4-30.html
file path=usr/postgres/9.6/doc/html/release-7-4-4.html
file path=usr/postgres/9.6/doc/html/release-7-4-5.html
file path=usr/postgres/9.6/doc/html/release-7-4-6.html
file path=usr/postgres/9.6/doc/html/release-7-4-7.html
file path=usr/postgres/9.6/doc/html/release-7-4-8.html
file path=usr/postgres/9.6/doc/html/release-7-4-9.html
file path=usr/postgres/9.6/doc/html/release-7-4.html
file path=usr/postgres/9.6/doc/html/release-8-0-1.html
file path=usr/postgres/9.6/doc/html/release-8-0-10.html
file path=usr/postgres/9.6/doc/html/release-8-0-11.html
file path=usr/postgres/9.6/doc/html/release-8-0-12.html
file path=usr/postgres/9.6/doc/html/release-8-0-13.html
file path=usr/postgres/9.6/doc/html/release-8-0-14.html
file path=usr/postgres/9.6/doc/html/release-8-0-15.html
file path=usr/postgres/9.6/doc/html/release-8-0-16.html
file path=usr/postgres/9.6/doc/html/release-8-0-17.html
file path=usr/postgres/9.6/doc/html/release-8-0-18.html
file path=usr/postgres/9.6/doc/html/release-8-0-19.html
file path=usr/postgres/9.6/doc/html/release-8-0-2.html
file path=usr/postgres/9.6/doc/html/release-8-0-20.html
file path=usr/postgres/9.6/doc/html/release-8-0-21.html
file path=usr/postgres/9.6/doc/html/release-8-0-22.html
file path=usr/postgres/9.6/doc/html/release-8-0-23.html
file path=usr/postgres/9.6/doc/html/release-8-0-24.html
file path=usr/postgres/9.6/doc/html/release-8-0-25.html
file path=usr/postgres/9.6/doc/html/release-8-0-26.html
file path=usr/postgres/9.6/doc/html/release-8-0-3.html
file path=usr/postgres/9.6/doc/html/release-8-0-4.html
file path=usr/postgres/9.6/doc/html/release-8-0-5.html
file path=usr/postgres/9.6/doc/html/release-8-0-6.html
file path=usr/postgres/9.6/doc/html/release-8-0-7.html
file path=usr/postgres/9.6/doc/html/release-8-0-8.html
file path=usr/postgres/9.6/doc/html/release-8-0-9.html
file path=usr/postgres/9.6/doc/html/release-8-0.html
file path=usr/postgres/9.6/doc/html/release-8-1-1.html
file path=usr/postgres/9.6/doc/html/release-8-1-10.html
file path=usr/postgres/9.6/doc/html/release-8-1-11.html
file path=usr/postgres/9.6/doc/html/release-8-1-12.html
file path=usr/postgres/9.6/doc/html/release-8-1-13.html
file path=usr/postgres/9.6/doc/html/release-8-1-14.html
file path=usr/postgres/9.6/doc/html/release-8-1-15.html
file path=usr/postgres/9.6/doc/html/release-8-1-16.html
file path=usr/postgres/9.6/doc/html/release-8-1-17.html
file path=usr/postgres/9.6/doc/html/release-8-1-18.html
file path=usr/postgres/9.6/doc/html/release-8-1-19.html
file path=usr/postgres/9.6/doc/html/release-8-1-2.html
file path=usr/postgres/9.6/doc/html/release-8-1-20.html
file path=usr/postgres/9.6/doc/html/release-8-1-21.html
file path=usr/postgres/9.6/doc/html/release-8-1-22.html
file path=usr/postgres/9.6/doc/html/release-8-1-23.html
file path=usr/postgres/9.6/doc/html/release-8-1-3.html
file path=usr/postgres/9.6/doc/html/release-8-1-4.html
file path=usr/postgres/9.6/doc/html/release-8-1-5.html
file path=usr/postgres/9.6/doc/html/release-8-1-6.html
file path=usr/postgres/9.6/doc/html/release-8-1-7.html
file path=usr/postgres/9.6/doc/html/release-8-1-8.html
file path=usr/postgres/9.6/doc/html/release-8-1-9.html
file path=usr/postgres/9.6/doc/html/release-8-1.html
file path=usr/postgres/9.6/doc/html/release-8-2-1.html
file path=usr/postgres/9.6/doc/html/release-8-2-10.html
file path=usr/postgres/9.6/doc/html/release-8-2-11.html
file path=usr/postgres/9.6/doc/html/release-8-2-12.html
file path=usr/postgres/9.6/doc/html/release-8-2-13.html
file path=usr/postgres/9.6/doc/html/release-8-2-14.html
file path=usr/postgres/9.6/doc/html/release-8-2-15.html
file path=usr/postgres/9.6/doc/html/release-8-2-16.html
file path=usr/postgres/9.6/doc/html/release-8-2-17.html
file path=usr/postgres/9.6/doc/html/release-8-2-18.html
file path=usr/postgres/9.6/doc/html/release-8-2-19.html
file path=usr/postgres/9.6/doc/html/release-8-2-2.html
file path=usr/postgres/9.6/doc/html/release-8-2-20.html
file path=usr/postgres/9.6/doc/html/release-8-2-21.html
file path=usr/postgres/9.6/doc/html/release-8-2-22.html
file path=usr/postgres/9.6/doc/html/release-8-2-23.html
file path=usr/postgres/9.6/doc/html/release-8-2-3.html
file path=usr/postgres/9.6/doc/html/release-8-2-4.html
file path=usr/postgres/9.6/doc/html/release-8-2-5.html
file path=usr/postgres/9.6/doc/html/release-8-2-6.html
file path=usr/postgres/9.6/doc/html/release-8-2-7.html
file path=usr/postgres/9.6/doc/html/release-8-2-8.html
file path=usr/postgres/9.6/doc/html/release-8-2-9.html
file path=usr/postgres/9.6/doc/html/release-8-2.html
file path=usr/postgres/9.6/doc/html/release-8-3-1.html
file path=usr/postgres/9.6/doc/html/release-8-3-10.html
file path=usr/postgres/9.6/doc/html/release-8-3-11.html
file path=usr/postgres/9.6/doc/html/release-8-3-12.html
file path=usr/postgres/9.6/doc/html/release-8-3-13.html
file path=usr/postgres/9.6/doc/html/release-8-3-14.html
file path=usr/postgres/9.6/doc/html/release-8-3-15.html
file path=usr/postgres/9.6/doc/html/release-8-3-16.html
file path=usr/postgres/9.6/doc/html/release-8-3-17.html
file path=usr/postgres/9.6/doc/html/release-8-3-18.html
file path=usr/postgres/9.6/doc/html/release-8-3-19.html
file path=usr/postgres/9.6/doc/html/release-8-3-2.html
file path=usr/postgres/9.6/doc/html/release-8-3-20.html
file path=usr/postgres/9.6/doc/html/release-8-3-21.html
file path=usr/postgres/9.6/doc/html/release-8-3-22.html
file path=usr/postgres/9.6/doc/html/release-8-3-23.html
file path=usr/postgres/9.6/doc/html/release-8-3-3.html
file path=usr/postgres/9.6/doc/html/release-8-3-4.html
file path=usr/postgres/9.6/doc/html/release-8-3-5.html
file path=usr/postgres/9.6/doc/html/release-8-3-6.html
file path=usr/postgres/9.6/doc/html/release-8-3-7.html
file path=usr/postgres/9.6/doc/html/release-8-3-8.html
file path=usr/postgres/9.6/doc/html/release-8-3-9.html
file path=usr/postgres/9.6/doc/html/release-8-3.html
file path=usr/postgres/9.6/doc/html/release-8-4-1.html
file path=usr/postgres/9.6/doc/html/release-8-4-10.html
file path=usr/postgres/9.6/doc/html/release-8-4-11.html
file path=usr/postgres/9.6/doc/html/release-8-4-12.html
file path=usr/postgres/9.6/doc/html/release-8-4-13.html
file path=usr/postgres/9.6/doc/html/release-8-4-14.html
file path=usr/postgres/9.6/doc/html/release-8-4-15.html
file path=usr/postgres/9.6/doc/html/release-8-4-16.html
file path=usr/postgres/9.6/doc/html/release-8-4-17.html
file path=usr/postgres/9.6/doc/html/release-8-4-18.html
file path=usr/postgres/9.6/doc/html/release-8-4-19.html
file path=usr/postgres/9.6/doc/html/release-8-4-2.html
file path=usr/postgres/9.6/doc/html/release-8-4-20.html
file path=usr/postgres/9.6/doc/html/release-8-4-21.html
file path=usr/postgres/9.6/doc/html/release-8-4-22.html
file path=usr/postgres/9.6/doc/html/release-8-4-3.html
file path=usr/postgres/9.6/doc/html/release-8-4-4.html
file path=usr/postgres/9.6/doc/html/release-8-4-5.html
file path=usr/postgres/9.6/doc/html/release-8-4-6.html
file path=usr/postgres/9.6/doc/html/release-8-4-7.html
file path=usr/postgres/9.6/doc/html/release-8-4-8.html
file path=usr/postgres/9.6/doc/html/release-8-4-9.html
file path=usr/postgres/9.6/doc/html/release-8-4.html
file path=usr/postgres/9.6/doc/html/release-9-0-1.html
file path=usr/postgres/9.6/doc/html/release-9-0-10.html
file path=usr/postgres/9.6/doc/html/release-9-0-11.html
file path=usr/postgres/9.6/doc/html/release-9-0-12.html
file path=usr/postgres/9.6/doc/html/release-9-0-13.html
file path=usr/postgres/9.6/doc/html/release-9-0-14.html
file path=usr/postgres/9.6/doc/html/release-9-0-15.html
file path=usr/postgres/9.6/doc/html/release-9-0-16.html
file path=usr/postgres/9.6/doc/html/release-9-0-17.html
file path=usr/postgres/9.6/doc/html/release-9-0-18.html
file path=usr/postgres/9.6/doc/html/release-9-0-19.html
file path=usr/postgres/9.6/doc/html/release-9-0-2.html
file path=usr/postgres/9.6/doc/html/release-9-0-20.html
file path=usr/postgres/9.6/doc/html/release-9-0-21.html
file path=usr/postgres/9.6/doc/html/release-9-0-22.html
file path=usr/postgres/9.6/doc/html/release-9-0-23.html
file path=usr/postgres/9.6/doc/html/release-9-0-3.html
file path=usr/postgres/9.6/doc/html/release-9-0-4.html
file path=usr/postgres/9.6/doc/html/release-9-0-5.html
file path=usr/postgres/9.6/doc/html/release-9-0-6.html
file path=usr/postgres/9.6/doc/html/release-9-0-7.html
file path=usr/postgres/9.6/doc/html/release-9-0-8.html
file path=usr/postgres/9.6/doc/html/release-9-0-9.html
file path=usr/postgres/9.6/doc/html/release-9-0.html
file path=usr/postgres/9.6/doc/html/release-9-1-1.html
file path=usr/postgres/9.6/doc/html/release-9-1-10.html
file path=usr/postgres/9.6/doc/html/release-9-1-11.html
file path=usr/postgres/9.6/doc/html/release-9-1-12.html
file path=usr/postgres/9.6/doc/html/release-9-1-13.html
file path=usr/postgres/9.6/doc/html/release-9-1-14.html
file path=usr/postgres/9.6/doc/html/release-9-1-15.html
file path=usr/postgres/9.6/doc/html/release-9-1-16.html
file path=usr/postgres/9.6/doc/html/release-9-1-17.html
file path=usr/postgres/9.6/doc/html/release-9-1-18.html
file path=usr/postgres/9.6/doc/html/release-9-1-19.html
file path=usr/postgres/9.6/doc/html/release-9-1-2.html
file path=usr/postgres/9.6/doc/html/release-9-1-20.html
file path=usr/postgres/9.6/doc/html/release-9-1-21.html
file path=usr/postgres/9.6/doc/html/release-9-1-22.html
file path=usr/postgres/9.6/doc/html/release-9-1-23.html
file path=usr/postgres/9.6/doc/html/release-9-1-24.html
file path=usr/postgres/9.6/doc/html/release-9-1-3.html
file path=usr/postgres/9.6/doc/html/release-9-1-4.html
file path=usr/postgres/9.6/doc/html/release-9-1-5.html
file path=usr/postgres/9.6/doc/html/release-9-1-6.html
file path=usr/postgres/9.6/doc/html/release-9-1-7.html
file path=usr/postgres/9.6/doc/html/release-9-1-8.html
file path=usr/postgres/9.6/doc/html/release-9-1-9.html
file path=usr/postgres/9.6/doc/html/release-9-1.html
file path=usr/postgres/9.6/doc/html/release-9-2-1.html
file path=usr/postgres/9.6/doc/html/release-9-2-10.html
file path=usr/postgres/9.6/doc/html/release-9-2-11.html
file path=usr/postgres/9.6/doc/html/release-9-2-12.html
file path=usr/postgres/9.6/doc/html/release-9-2-13.html
file path=usr/postgres/9.6/doc/html/release-9-2-14.html
file path=usr/postgres/9.6/doc/html/release-9-2-15.html
file path=usr/postgres/9.6/doc/html/release-9-2-16.html
file path=usr/postgres/9.6/doc/html/release-9-2-17.html
file path=usr/postgres/9.6/doc/html/release-9-2-18.html
file path=usr/postgres/9.6/doc/html/release-9-2-19.html
file path=usr/postgres/9.6/doc/html/release-9-2-2.html
file path=usr/postgres/9.6/doc/html/release-9-2-3.html
file path=usr/postgres/9.6/doc/html/release-9-2-4.html
file path=usr/postgres/9.6/doc/html/release-9-2-5.html
file path=usr/postgres/9.6/doc/html/release-9-2-6.html
file path=usr/postgres/9.6/doc/html/release-9-2-7.html
file path=usr/postgres/9.6/doc/html/release-9-2-8.html
file path=usr/postgres/9.6/doc/html/release-9-2-9.html
file path=usr/postgres/9.6/doc/html/release-9-2.html
file path=usr/postgres/9.6/doc/html/release-9-3-1.html
file path=usr/postgres/9.6/doc/html/release-9-3-10.html
file path=usr/postgres/9.6/doc/html/release-9-3-11.html
file path=usr/postgres/9.6/doc/html/release-9-3-12.html
file path=usr/postgres/9.6/doc/html/release-9-3-13.html
file path=usr/postgres/9.6/doc/html/release-9-3-14.html
file path=usr/postgres/9.6/doc/html/release-9-3-15.html
file path=usr/postgres/9.6/doc/html/release-9-3-2.html
file path=usr/postgres/9.6/doc/html/release-9-3-3.html
file path=usr/postgres/9.6/doc/html/release-9-3-4.html
file path=usr/postgres/9.6/doc/html/release-9-3-5.html
file path=usr/postgres/9.6/doc/html/release-9-3-6.html
file path=usr/postgres/9.6/doc/html/release-9-3-7.html
file path=usr/postgres/9.6/doc/html/release-9-3-8.html
file path=usr/postgres/9.6/doc/html/release-9-3-9.html
file path=usr/postgres/9.6/doc/html/release-9-3.html
file path=usr/postgres/9.6/doc/html/release-9-4-1.html
file path=usr/postgres/9.6/doc/html/release-9-4-10.html
file path=usr/postgres/9.6/doc/html/release-9-4-2.html
file path=usr/postgres/9.6/doc/html/release-9-4-3.html
file path=usr/postgres/9.6/doc/html/release-9-4-4.html
file path=usr/postgres/9.6/doc/html/release-9-4-5.html
file path=usr/postgres/9.6/doc/html/release-9-4-6.html
file path=usr/postgres/9.6/doc/html/release-9-4-7.html
file path=usr/postgres/9.6/doc/html/release-9-4-8.html
file path=usr/postgres/9.6/doc/html/release-9-4-9.html
file path=usr/postgres/9.6/doc/html/release-9-4.html
file path=usr/postgres/9.6/doc/html/release-9-5-1.html
file path=usr/postgres/9.6/doc/html/release-9-5-2.html
file path=usr/postgres/9.6/doc/html/release-9-5-3.html
file path=usr/postgres/9.6/doc/html/release-9-5-4.html
file path=usr/postgres/9.6/doc/html/release-9-5-5.html
file path=usr/postgres/9.6/doc/html/release-9-5.html
file path=usr/postgres/9.6/doc/html/release-9-6.html
file path=usr/postgres/9.6/doc/html/release.html
file path=usr/postgres/9.6/doc/html/replication-origins.html
file path=usr/postgres/9.6/doc/html/resources.html
file path=usr/postgres/9.6/doc/html/role-attributes.html
file path=usr/postgres/9.6/doc/html/role-membership.html
file path=usr/postgres/9.6/doc/html/role-removal.html
file path=usr/postgres/9.6/doc/html/routine-reindex.html
file path=usr/postgres/9.6/doc/html/routine-vacuuming.html
file path=usr/postgres/9.6/doc/html/row-estimation-examples.html
file path=usr/postgres/9.6/doc/html/rowtypes.html
file path=usr/postgres/9.6/doc/html/rule-system.html
file path=usr/postgres/9.6/doc/html/rules-materializedviews.html
file path=usr/postgres/9.6/doc/html/rules-privileges.html
file path=usr/postgres/9.6/doc/html/rules-status.html
file path=usr/postgres/9.6/doc/html/rules-triggers.html
file path=usr/postgres/9.6/doc/html/rules-update.html
file path=usr/postgres/9.6/doc/html/rules-views.html
file path=usr/postgres/9.6/doc/html/rules.html
file path=usr/postgres/9.6/doc/html/runtime-config-autovacuum.html
file path=usr/postgres/9.6/doc/html/runtime-config-client.html
file path=usr/postgres/9.6/doc/html/runtime-config-compatible.html
file path=usr/postgres/9.6/doc/html/runtime-config-connection.html
file path=usr/postgres/9.6/doc/html/runtime-config-custom.html
file path=usr/postgres/9.6/doc/html/runtime-config-developer.html
file path=usr/postgres/9.6/doc/html/runtime-config-error-handling.html
file path=usr/postgres/9.6/doc/html/runtime-config-file-locations.html
file path=usr/postgres/9.6/doc/html/runtime-config-locks.html
file path=usr/postgres/9.6/doc/html/runtime-config-logging.html
file path=usr/postgres/9.6/doc/html/runtime-config-preset.html
file path=usr/postgres/9.6/doc/html/runtime-config-query.html
file path=usr/postgres/9.6/doc/html/runtime-config-replication.html
file path=usr/postgres/9.6/doc/html/runtime-config-resource.html
file path=usr/postgres/9.6/doc/html/runtime-config-short.html
file path=usr/postgres/9.6/doc/html/runtime-config-statistics.html
file path=usr/postgres/9.6/doc/html/runtime-config-wal.html
file path=usr/postgres/9.6/doc/html/runtime-config.html
file path=usr/postgres/9.6/doc/html/runtime.html
file path=usr/postgres/9.6/doc/html/seg.html
file path=usr/postgres/9.6/doc/html/sepgsql.html
file path=usr/postgres/9.6/doc/html/server-programming.html
file path=usr/postgres/9.6/doc/html/server-shutdown.html
file path=usr/postgres/9.6/doc/html/server-start.html
file path=usr/postgres/9.6/doc/html/source-conventions.html
file path=usr/postgres/9.6/doc/html/source-format.html
file path=usr/postgres/9.6/doc/html/source.html
file path=usr/postgres/9.6/doc/html/sourcerepo.html
file path=usr/postgres/9.6/doc/html/spgist-builtin-opclasses.html
file path=usr/postgres/9.6/doc/html/spgist-examples.html
file path=usr/postgres/9.6/doc/html/spgist-extensibility.html
file path=usr/postgres/9.6/doc/html/spgist-implementation.html
file path=usr/postgres/9.6/doc/html/spgist-intro.html
file path=usr/postgres/9.6/doc/html/spgist.html
file path=usr/postgres/9.6/doc/html/spi-examples.html
file path=usr/postgres/9.6/doc/html/spi-interface-support.html
file path=usr/postgres/9.6/doc/html/spi-interface.html
file path=usr/postgres/9.6/doc/html/spi-memory.html
file path=usr/postgres/9.6/doc/html/spi-realloc.html
file path=usr/postgres/9.6/doc/html/spi-spi-connect.html
file path=usr/postgres/9.6/doc/html/spi-spi-copytuple.html
file path=usr/postgres/9.6/doc/html/spi-spi-cursor-close.html
file path=usr/postgres/9.6/doc/html/spi-spi-cursor-fetch.html
file path=usr/postgres/9.6/doc/html/spi-spi-cursor-find.html
file path=usr/postgres/9.6/doc/html/spi-spi-cursor-move.html
file path=usr/postgres/9.6/doc/html/spi-spi-cursor-open-with-args.html
file path=usr/postgres/9.6/doc/html/spi-spi-cursor-open-with-paramlist.html
file path=usr/postgres/9.6/doc/html/spi-spi-cursor-open.html
file path=usr/postgres/9.6/doc/html/spi-spi-exec.html
file path=usr/postgres/9.6/doc/html/spi-spi-execp.html
file path=usr/postgres/9.6/doc/html/spi-spi-execute-plan-with-paramlist.html
file path=usr/postgres/9.6/doc/html/spi-spi-execute-plan.html
file path=usr/postgres/9.6/doc/html/spi-spi-execute-with-args.html
file path=usr/postgres/9.6/doc/html/spi-spi-execute.html
file path=usr/postgres/9.6/doc/html/spi-spi-finish.html
file path=usr/postgres/9.6/doc/html/spi-spi-fname.html
file path=usr/postgres/9.6/doc/html/spi-spi-fnumber.html
file path=usr/postgres/9.6/doc/html/spi-spi-freeplan.html
file path=usr/postgres/9.6/doc/html/spi-spi-freetuple.html
file path=usr/postgres/9.6/doc/html/spi-spi-freetupletable.html
file path=usr/postgres/9.6/doc/html/spi-spi-getargcount.html
file path=usr/postgres/9.6/doc/html/spi-spi-getargtypeid.html
file path=usr/postgres/9.6/doc/html/spi-spi-getbinval.html
file path=usr/postgres/9.6/doc/html/spi-spi-getnspname.html
file path=usr/postgres/9.6/doc/html/spi-spi-getrelname.html
file path=usr/postgres/9.6/doc/html/spi-spi-gettype.html
file path=usr/postgres/9.6/doc/html/spi-spi-gettypeid.html
file path=usr/postgres/9.6/doc/html/spi-spi-getvalue.html
file path=usr/postgres/9.6/doc/html/spi-spi-is-cursor-plan.html
file path=usr/postgres/9.6/doc/html/spi-spi-keepplan.html
file path=usr/postgres/9.6/doc/html/spi-spi-modifytuple.html
file path=usr/postgres/9.6/doc/html/spi-spi-palloc.html
file path=usr/postgres/9.6/doc/html/spi-spi-pfree.html
file path=usr/postgres/9.6/doc/html/spi-spi-pop.html
file path=usr/postgres/9.6/doc/html/spi-spi-prepare-cursor.html
file path=usr/postgres/9.6/doc/html/spi-spi-prepare-params.html
file path=usr/postgres/9.6/doc/html/spi-spi-prepare.html
file path=usr/postgres/9.6/doc/html/spi-spi-push.html
file path=usr/postgres/9.6/doc/html/spi-spi-returntuple.html
file path=usr/postgres/9.6/doc/html/spi-spi-saveplan.html
file path=usr/postgres/9.6/doc/html/spi-spi-scroll-cursor-fetch.html
file path=usr/postgres/9.6/doc/html/spi-spi-scroll-cursor-move.html
file path=usr/postgres/9.6/doc/html/spi-visibility.html
file path=usr/postgres/9.6/doc/html/spi.html
file path=usr/postgres/9.6/doc/html/sql-abort.html
file path=usr/postgres/9.6/doc/html/sql-alteraggregate.html
file path=usr/postgres/9.6/doc/html/sql-altercollation.html
file path=usr/postgres/9.6/doc/html/sql-alterconversion.html
file path=usr/postgres/9.6/doc/html/sql-alterdatabase.html
file path=usr/postgres/9.6/doc/html/sql-alterdefaultprivileges.html
file path=usr/postgres/9.6/doc/html/sql-alterdomain.html
file path=usr/postgres/9.6/doc/html/sql-altereventtrigger.html
file path=usr/postgres/9.6/doc/html/sql-alterextension.html
file path=usr/postgres/9.6/doc/html/sql-alterforeigndatawrapper.html
file path=usr/postgres/9.6/doc/html/sql-alterforeigntable.html
file path=usr/postgres/9.6/doc/html/sql-alterfunction.html
file path=usr/postgres/9.6/doc/html/sql-altergroup.html
file path=usr/postgres/9.6/doc/html/sql-alterindex.html
file path=usr/postgres/9.6/doc/html/sql-alterlanguage.html
file path=usr/postgres/9.6/doc/html/sql-alterlargeobject.html
file path=usr/postgres/9.6/doc/html/sql-altermaterializedview.html
file path=usr/postgres/9.6/doc/html/sql-alteropclass.html
file path=usr/postgres/9.6/doc/html/sql-alteroperator.html
file path=usr/postgres/9.6/doc/html/sql-alteropfamily.html
file path=usr/postgres/9.6/doc/html/sql-alterpolicy.html
file path=usr/postgres/9.6/doc/html/sql-alterrole.html
file path=usr/postgres/9.6/doc/html/sql-alterrule.html
file path=usr/postgres/9.6/doc/html/sql-alterschema.html
file path=usr/postgres/9.6/doc/html/sql-altersequence.html
file path=usr/postgres/9.6/doc/html/sql-alterserver.html
file path=usr/postgres/9.6/doc/html/sql-altersystem.html
file path=usr/postgres/9.6/doc/html/sql-altertable.html
file path=usr/postgres/9.6/doc/html/sql-altertablespace.html
file path=usr/postgres/9.6/doc/html/sql-altertrigger.html
file path=usr/postgres/9.6/doc/html/sql-altertsconfig.html
file path=usr/postgres/9.6/doc/html/sql-altertsdictionary.html
file path=usr/postgres/9.6/doc/html/sql-altertsparser.html
file path=usr/postgres/9.6/doc/html/sql-altertstemplate.html
file path=usr/postgres/9.6/doc/html/sql-altertype.html
file path=usr/postgres/9.6/doc/html/sql-alteruser.html
file path=usr/postgres/9.6/doc/html/sql-alterusermapping.html
file path=usr/postgres/9.6/doc/html/sql-alterview.html
file path=usr/postgres/9.6/doc/html/sql-analyze.html
file path=usr/postgres/9.6/doc/html/sql-begin.html
file path=usr/postgres/9.6/doc/html/sql-checkpoint.html
file path=usr/postgres/9.6/doc/html/sql-close.html
file path=usr/postgres/9.6/doc/html/sql-cluster.html
file path=usr/postgres/9.6/doc/html/sql-commands.html
file path=usr/postgres/9.6/doc/html/sql-comment.html
file path=usr/postgres/9.6/doc/html/sql-commit-prepared.html
file path=usr/postgres/9.6/doc/html/sql-commit.html
file path=usr/postgres/9.6/doc/html/sql-copy.html
file path=usr/postgres/9.6/doc/html/sql-create-access-method.html
file path=usr/postgres/9.6/doc/html/sql-createaggregate.html
file path=usr/postgres/9.6/doc/html/sql-createcast.html
file path=usr/postgres/9.6/doc/html/sql-createcollation.html
file path=usr/postgres/9.6/doc/html/sql-createconversion.html
file path=usr/postgres/9.6/doc/html/sql-createdatabase.html
file path=usr/postgres/9.6/doc/html/sql-createdomain.html
file path=usr/postgres/9.6/doc/html/sql-createeventtrigger.html
file path=usr/postgres/9.6/doc/html/sql-createextension.html
file path=usr/postgres/9.6/doc/html/sql-createforeigndatawrapper.html
file path=usr/postgres/9.6/doc/html/sql-createforeigntable.html
file path=usr/postgres/9.6/doc/html/sql-createfunction.html
file path=usr/postgres/9.6/doc/html/sql-creategroup.html
file path=usr/postgres/9.6/doc/html/sql-createindex.html
file path=usr/postgres/9.6/doc/html/sql-createlanguage.html
file path=usr/postgres/9.6/doc/html/sql-creatematerializedview.html
file path=usr/postgres/9.6/doc/html/sql-createopclass.html
file path=usr/postgres/9.6/doc/html/sql-createoperator.html
file path=usr/postgres/9.6/doc/html/sql-createopfamily.html
file path=usr/postgres/9.6/doc/html/sql-createpolicy.html
file path=usr/postgres/9.6/doc/html/sql-createrole.html
file path=usr/postgres/9.6/doc/html/sql-createrule.html
file path=usr/postgres/9.6/doc/html/sql-createschema.html
file path=usr/postgres/9.6/doc/html/sql-createsequence.html
file path=usr/postgres/9.6/doc/html/sql-createserver.html
file path=usr/postgres/9.6/doc/html/sql-createtable.html
file path=usr/postgres/9.6/doc/html/sql-createtableas.html
file path=usr/postgres/9.6/doc/html/sql-createtablespace.html
file path=usr/postgres/9.6/doc/html/sql-createtransform.html
file path=usr/postgres/9.6/doc/html/sql-createtrigger.html
file path=usr/postgres/9.6/doc/html/sql-createtsconfig.html
file path=usr/postgres/9.6/doc/html/sql-createtsdictionary.html
file path=usr/postgres/9.6/doc/html/sql-createtsparser.html
file path=usr/postgres/9.6/doc/html/sql-createtstemplate.html
file path=usr/postgres/9.6/doc/html/sql-createtype.html
file path=usr/postgres/9.6/doc/html/sql-createuser.html
file path=usr/postgres/9.6/doc/html/sql-createusermapping.html
file path=usr/postgres/9.6/doc/html/sql-createview.html
file path=usr/postgres/9.6/doc/html/sql-deallocate.html
file path=usr/postgres/9.6/doc/html/sql-declare.html
file path=usr/postgres/9.6/doc/html/sql-delete.html
file path=usr/postgres/9.6/doc/html/sql-discard.html
file path=usr/postgres/9.6/doc/html/sql-do.html
file path=usr/postgres/9.6/doc/html/sql-drop-access-method.html
file path=usr/postgres/9.6/doc/html/sql-drop-owned.html
file path=usr/postgres/9.6/doc/html/sql-dropaggregate.html
file path=usr/postgres/9.6/doc/html/sql-dropcast.html
file path=usr/postgres/9.6/doc/html/sql-dropcollation.html
file path=usr/postgres/9.6/doc/html/sql-dropconversion.html
file path=usr/postgres/9.6/doc/html/sql-dropdatabase.html
file path=usr/postgres/9.6/doc/html/sql-dropdomain.html
file path=usr/postgres/9.6/doc/html/sql-dropeventtrigger.html
file path=usr/postgres/9.6/doc/html/sql-dropextension.html
file path=usr/postgres/9.6/doc/html/sql-dropforeigndatawrapper.html
file path=usr/postgres/9.6/doc/html/sql-dropforeigntable.html
file path=usr/postgres/9.6/doc/html/sql-dropfunction.html
file path=usr/postgres/9.6/doc/html/sql-dropgroup.html
file path=usr/postgres/9.6/doc/html/sql-dropindex.html
file path=usr/postgres/9.6/doc/html/sql-droplanguage.html
file path=usr/postgres/9.6/doc/html/sql-dropmaterializedview.html
file path=usr/postgres/9.6/doc/html/sql-dropopclass.html
file path=usr/postgres/9.6/doc/html/sql-dropoperator.html
file path=usr/postgres/9.6/doc/html/sql-dropopfamily.html
file path=usr/postgres/9.6/doc/html/sql-droppolicy.html
file path=usr/postgres/9.6/doc/html/sql-droprole.html
file path=usr/postgres/9.6/doc/html/sql-droprule.html
file path=usr/postgres/9.6/doc/html/sql-dropschema.html
file path=usr/postgres/9.6/doc/html/sql-dropsequence.html
file path=usr/postgres/9.6/doc/html/sql-dropserver.html
file path=usr/postgres/9.6/doc/html/sql-droptable.html
file path=usr/postgres/9.6/doc/html/sql-droptablespace.html
file path=usr/postgres/9.6/doc/html/sql-droptransform.html
file path=usr/postgres/9.6/doc/html/sql-droptrigger.html
file path=usr/postgres/9.6/doc/html/sql-droptsconfig.html
file path=usr/postgres/9.6/doc/html/sql-droptsdictionary.html
file path=usr/postgres/9.6/doc/html/sql-droptsparser.html
file path=usr/postgres/9.6/doc/html/sql-droptstemplate.html
file path=usr/postgres/9.6/doc/html/sql-droptype.html
file path=usr/postgres/9.6/doc/html/sql-dropuser.html
file path=usr/postgres/9.6/doc/html/sql-dropusermapping.html
file path=usr/postgres/9.6/doc/html/sql-dropview.html
file path=usr/postgres/9.6/doc/html/sql-end.html
file path=usr/postgres/9.6/doc/html/sql-execute.html
file path=usr/postgres/9.6/doc/html/sql-explain.html
file path=usr/postgres/9.6/doc/html/sql-expressions.html
file path=usr/postgres/9.6/doc/html/sql-fetch.html
file path=usr/postgres/9.6/doc/html/sql-grant.html
file path=usr/postgres/9.6/doc/html/sql-importforeignschema.html
file path=usr/postgres/9.6/doc/html/sql-insert.html
file path=usr/postgres/9.6/doc/html/sql-keywords-appendix.html
file path=usr/postgres/9.6/doc/html/sql-listen.html
file path=usr/postgres/9.6/doc/html/sql-load.html
file path=usr/postgres/9.6/doc/html/sql-lock.html
file path=usr/postgres/9.6/doc/html/sql-move.html
file path=usr/postgres/9.6/doc/html/sql-notify.html
file path=usr/postgres/9.6/doc/html/sql-prepare-transaction.html
file path=usr/postgres/9.6/doc/html/sql-prepare.html
file path=usr/postgres/9.6/doc/html/sql-reassign-owned.html
file path=usr/postgres/9.6/doc/html/sql-refreshmaterializedview.html
file path=usr/postgres/9.6/doc/html/sql-reindex.html
file path=usr/postgres/9.6/doc/html/sql-release-savepoint.html
file path=usr/postgres/9.6/doc/html/sql-reset.html
file path=usr/postgres/9.6/doc/html/sql-revoke.html
file path=usr/postgres/9.6/doc/html/sql-rollback-prepared.html
file path=usr/postgres/9.6/doc/html/sql-rollback-to.html
file path=usr/postgres/9.6/doc/html/sql-rollback.html
file path=usr/postgres/9.6/doc/html/sql-savepoint.html
file path=usr/postgres/9.6/doc/html/sql-security-label.html
file path=usr/postgres/9.6/doc/html/sql-select.html
file path=usr/postgres/9.6/doc/html/sql-selectinto.html
file path=usr/postgres/9.6/doc/html/sql-set-constraints.html
file path=usr/postgres/9.6/doc/html/sql-set-role.html
file path=usr/postgres/9.6/doc/html/sql-set-session-authorization.html
file path=usr/postgres/9.6/doc/html/sql-set-transaction.html
file path=usr/postgres/9.6/doc/html/sql-set.html
file path=usr/postgres/9.6/doc/html/sql-show.html
file path=usr/postgres/9.6/doc/html/sql-start-transaction.html
file path=usr/postgres/9.6/doc/html/sql-syntax-calling-funcs.html
file path=usr/postgres/9.6/doc/html/sql-syntax-lexical.html
file path=usr/postgres/9.6/doc/html/sql-syntax.html
file path=usr/postgres/9.6/doc/html/sql-truncate.html
file path=usr/postgres/9.6/doc/html/sql-unlisten.html
file path=usr/postgres/9.6/doc/html/sql-update.html
file path=usr/postgres/9.6/doc/html/sql-vacuum.html
file path=usr/postgres/9.6/doc/html/sql-values.html
file path=usr/postgres/9.6/doc/html/sql.html
file path=usr/postgres/9.6/doc/html/ssh-tunnels.html
file path=usr/postgres/9.6/doc/html/ssl-tcp.html
file path=usr/postgres/9.6/doc/html/sslinfo.html
file path=usr/postgres/9.6/doc/html/standby-settings.html
file path=usr/postgres/9.6/doc/html/storage-file-layout.html
file path=usr/postgres/9.6/doc/html/storage-fsm.html
file path=usr/postgres/9.6/doc/html/storage-init.html
file path=usr/postgres/9.6/doc/html/storage-page-layout.html
file path=usr/postgres/9.6/doc/html/storage-toast.html
file path=usr/postgres/9.6/doc/html/storage-vm.html
file path=usr/postgres/9.6/doc/html/storage.html
file path=usr/postgres/9.6/doc/html/stylesheet.css
file path=usr/postgres/9.6/doc/html/supported-platforms.html
file path=usr/postgres/9.6/doc/html/tablefunc.html
file path=usr/postgres/9.6/doc/html/tablesample-method.html
file path=usr/postgres/9.6/doc/html/tablesample-support-functions.html
file path=usr/postgres/9.6/doc/html/tcn.html
file path=usr/postgres/9.6/doc/html/test-decoding.html
file path=usr/postgres/9.6/doc/html/textsearch-configuration.html
file path=usr/postgres/9.6/doc/html/textsearch-controls.html
file path=usr/postgres/9.6/doc/html/textsearch-debugging.html
file path=usr/postgres/9.6/doc/html/textsearch-dictionaries.html
file path=usr/postgres/9.6/doc/html/textsearch-features.html
file path=usr/postgres/9.6/doc/html/textsearch-indexes.html
file path=usr/postgres/9.6/doc/html/textsearch-intro.html
file path=usr/postgres/9.6/doc/html/textsearch-limitations.html
file path=usr/postgres/9.6/doc/html/textsearch-migration.html
file path=usr/postgres/9.6/doc/html/textsearch-parsers.html
file path=usr/postgres/9.6/doc/html/textsearch-psql.html
file path=usr/postgres/9.6/doc/html/textsearch-tables.html
file path=usr/postgres/9.6/doc/html/textsearch.html
file path=usr/postgres/9.6/doc/html/transaction-iso.html
file path=usr/postgres/9.6/doc/html/trigger-datachanges.html
file path=usr/postgres/9.6/doc/html/trigger-definition.html
file path=usr/postgres/9.6/doc/html/trigger-example.html
file path=usr/postgres/9.6/doc/html/trigger-interface.html
file path=usr/postgres/9.6/doc/html/triggers.html
file path=usr/postgres/9.6/doc/html/tsearch2.html
file path=usr/postgres/9.6/doc/html/tsm-system-rows.html
file path=usr/postgres/9.6/doc/html/tsm-system-time.html
file path=usr/postgres/9.6/doc/html/tutorial-accessdb.html
file path=usr/postgres/9.6/doc/html/tutorial-advanced-intro.html
file path=usr/postgres/9.6/doc/html/tutorial-advanced.html
file path=usr/postgres/9.6/doc/html/tutorial-agg.html
file path=usr/postgres/9.6/doc/html/tutorial-arch.html
file path=usr/postgres/9.6/doc/html/tutorial-concepts.html
file path=usr/postgres/9.6/doc/html/tutorial-conclusion.html
file path=usr/postgres/9.6/doc/html/tutorial-createdb.html
file path=usr/postgres/9.6/doc/html/tutorial-delete.html
file path=usr/postgres/9.6/doc/html/tutorial-fk.html
file path=usr/postgres/9.6/doc/html/tutorial-inheritance.html
file path=usr/postgres/9.6/doc/html/tutorial-install.html
file path=usr/postgres/9.6/doc/html/tutorial-join.html
file path=usr/postgres/9.6/doc/html/tutorial-populate.html
file path=usr/postgres/9.6/doc/html/tutorial-select.html
file path=usr/postgres/9.6/doc/html/tutorial-sql-intro.html
file path=usr/postgres/9.6/doc/html/tutorial-sql.html
file path=usr/postgres/9.6/doc/html/tutorial-start.html
file path=usr/postgres/9.6/doc/html/tutorial-table.html
file path=usr/postgres/9.6/doc/html/tutorial-transactions.html
file path=usr/postgres/9.6/doc/html/tutorial-update.html
file path=usr/postgres/9.6/doc/html/tutorial-views.html
file path=usr/postgres/9.6/doc/html/tutorial-window.html
file path=usr/postgres/9.6/doc/html/tutorial.html
file path=usr/postgres/9.6/doc/html/typeconv-func.html
file path=usr/postgres/9.6/doc/html/typeconv-oper.html
file path=usr/postgres/9.6/doc/html/typeconv-overview.html
file path=usr/postgres/9.6/doc/html/typeconv-query.html
file path=usr/postgres/9.6/doc/html/typeconv-union-case.html
file path=usr/postgres/9.6/doc/html/typeconv.html
file path=usr/postgres/9.6/doc/html/unaccent.html
file path=usr/postgres/9.6/doc/html/unsupported-features-sql-standard.html
file path=usr/postgres/9.6/doc/html/upgrading.html
file path=usr/postgres/9.6/doc/html/user-manag.html
file path=usr/postgres/9.6/doc/html/using-explain.html
file path=usr/postgres/9.6/doc/html/uuid-ossp.html
file path=usr/postgres/9.6/doc/html/vacuumlo.html
file path=usr/postgres/9.6/doc/html/view-pg-available-extension-versions.html
file path=usr/postgres/9.6/doc/html/view-pg-available-extensions.html
file path=usr/postgres/9.6/doc/html/view-pg-config.html
file path=usr/postgres/9.6/doc/html/view-pg-cursors.html
file path=usr/postgres/9.6/doc/html/view-pg-file-settings.html
file path=usr/postgres/9.6/doc/html/view-pg-group.html
file path=usr/postgres/9.6/doc/html/view-pg-indexes.html
file path=usr/postgres/9.6/doc/html/view-pg-locks.html
file path=usr/postgres/9.6/doc/html/view-pg-matviews.html
file path=usr/postgres/9.6/doc/html/view-pg-policies.html
file path=usr/postgres/9.6/doc/html/view-pg-prepared-statements.html
file path=usr/postgres/9.6/doc/html/view-pg-prepared-xacts.html
file path=usr/postgres/9.6/doc/html/view-pg-replication-origin-status.html
file path=usr/postgres/9.6/doc/html/view-pg-replication-slots.html
file path=usr/postgres/9.6/doc/html/view-pg-roles.html
file path=usr/postgres/9.6/doc/html/view-pg-rules.html
file path=usr/postgres/9.6/doc/html/view-pg-seclabels.html
file path=usr/postgres/9.6/doc/html/view-pg-settings.html
file path=usr/postgres/9.6/doc/html/view-pg-shadow.html
file path=usr/postgres/9.6/doc/html/view-pg-stats.html
file path=usr/postgres/9.6/doc/html/view-pg-tables.html
file path=usr/postgres/9.6/doc/html/view-pg-timezone-abbrevs.html
file path=usr/postgres/9.6/doc/html/view-pg-timezone-names.html
file path=usr/postgres/9.6/doc/html/view-pg-user-mappings.html
file path=usr/postgres/9.6/doc/html/view-pg-user.html
file path=usr/postgres/9.6/doc/html/view-pg-views.html
file path=usr/postgres/9.6/doc/html/views-overview.html
file path=usr/postgres/9.6/doc/html/wal-async-commit.html
file path=usr/postgres/9.6/doc/html/wal-configuration.html
file path=usr/postgres/9.6/doc/html/wal-internals.html
file path=usr/postgres/9.6/doc/html/wal-intro.html
file path=usr/postgres/9.6/doc/html/wal-reliability.html
file path=usr/postgres/9.6/doc/html/wal.html
file path=usr/postgres/9.6/doc/html/warm-standby-failover.html
file path=usr/postgres/9.6/doc/html/warm-standby.html
file path=usr/postgres/9.6/doc/html/when-can-parallel-query-be-used.html
file path=usr/postgres/9.6/doc/html/xaggr.html
file path=usr/postgres/9.6/doc/html/xfunc-c.html
file path=usr/postgres/9.6/doc/html/xfunc-internal.html
file path=usr/postgres/9.6/doc/html/xfunc-overload.html
file path=usr/postgres/9.6/doc/html/xfunc-pl.html
file path=usr/postgres/9.6/doc/html/xfunc-sql.html
file path=usr/postgres/9.6/doc/html/xfunc-volatility.html
file path=usr/postgres/9.6/doc/html/xfunc.html
file path=usr/postgres/9.6/doc/html/xindex.html
file path=usr/postgres/9.6/doc/html/xml2.html
file path=usr/postgres/9.6/doc/html/xoper-optimization.html
file path=usr/postgres/9.6/doc/html/xoper.html
file path=usr/postgres/9.6/doc/html/xplang-install.html
file path=usr/postgres/9.6/doc/html/xplang.html
file path=usr/postgres/9.6/doc/html/xtypes.html
file path=usr/postgres/9.6/include/ecpg_config.h
file path=usr/postgres/9.6/include/ecpg_informix.h
file path=usr/postgres/9.6/include/ecpgerrno.h
file path=usr/postgres/9.6/include/ecpglib.h
file path=usr/postgres/9.6/include/ecpgtype.h
file path=usr/postgres/9.6/include/informix/esql/datetime.h
file path=usr/postgres/9.6/include/informix/esql/decimal.h
file path=usr/postgres/9.6/include/informix/esql/sqltypes.h
file path=usr/postgres/9.6/include/internal/c.h
file path=usr/postgres/9.6/include/internal/libpq-int.h
file path=usr/postgres/9.6/include/internal/libpq/pqcomm.h
file path=usr/postgres/9.6/include/internal/port.h
file path=usr/postgres/9.6/include/internal/postgres_fe.h
file path=usr/postgres/9.6/include/internal/pqexpbuffer.h
file path=usr/postgres/9.6/include/libpq-events.h
file path=usr/postgres/9.6/include/libpq-fe.h
file path=usr/postgres/9.6/include/libpq/libpq-fs.h
file path=usr/postgres/9.6/include/pg_config-32.h
file path=usr/postgres/9.6/include/pg_config-64.h
file path=usr/postgres/9.6/include/pg_config_ext.h
file path=usr/postgres/9.6/include/pg_config_manual.h
file path=usr/postgres/9.6/include/pg_config_os.h
file path=usr/postgres/9.6/include/pgtypes_date.h
file path=usr/postgres/9.6/include/pgtypes_error.h
file path=usr/postgres/9.6/include/pgtypes_interval.h
file path=usr/postgres/9.6/include/pgtypes_numeric.h
file path=usr/postgres/9.6/include/pgtypes_timestamp.h
file path=usr/postgres/9.6/include/postgres_ext.h
file path=usr/postgres/9.6/include/server/access/amapi.h
file path=usr/postgres/9.6/include/server/access/amvalidate.h
file path=usr/postgres/9.6/include/server/access/attnum.h
file path=usr/postgres/9.6/include/server/access/brin.h
file path=usr/postgres/9.6/include/server/access/brin_internal.h
file path=usr/postgres/9.6/include/server/access/brin_page.h
file path=usr/postgres/9.6/include/server/access/brin_pageops.h
file path=usr/postgres/9.6/include/server/access/brin_revmap.h
file path=usr/postgres/9.6/include/server/access/brin_tuple.h
file path=usr/postgres/9.6/include/server/access/brin_xlog.h
file path=usr/postgres/9.6/include/server/access/clog.h
file path=usr/postgres/9.6/include/server/access/commit_ts.h
file path=usr/postgres/9.6/include/server/access/genam.h
file path=usr/postgres/9.6/include/server/access/generic_xlog.h
file path=usr/postgres/9.6/include/server/access/gin.h
file path=usr/postgres/9.6/include/server/access/gin_private.h
file path=usr/postgres/9.6/include/server/access/gist.h
file path=usr/postgres/9.6/include/server/access/gist_private.h
file path=usr/postgres/9.6/include/server/access/gistscan.h
file path=usr/postgres/9.6/include/server/access/hash.h
file path=usr/postgres/9.6/include/server/access/heapam.h
file path=usr/postgres/9.6/include/server/access/heapam_xlog.h
file path=usr/postgres/9.6/include/server/access/hio.h
file path=usr/postgres/9.6/include/server/access/htup.h
file path=usr/postgres/9.6/include/server/access/htup_details.h
file path=usr/postgres/9.6/include/server/access/itup.h
file path=usr/postgres/9.6/include/server/access/multixact.h
file path=usr/postgres/9.6/include/server/access/nbtree.h
file path=usr/postgres/9.6/include/server/access/parallel.h
file path=usr/postgres/9.6/include/server/access/printtup.h
file path=usr/postgres/9.6/include/server/access/reloptions.h
file path=usr/postgres/9.6/include/server/access/relscan.h
file path=usr/postgres/9.6/include/server/access/rewriteheap.h
file path=usr/postgres/9.6/include/server/access/rmgr.h
file path=usr/postgres/9.6/include/server/access/rmgrlist.h
file path=usr/postgres/9.6/include/server/access/sdir.h
file path=usr/postgres/9.6/include/server/access/skey.h
file path=usr/postgres/9.6/include/server/access/slru.h
file path=usr/postgres/9.6/include/server/access/spgist.h
file path=usr/postgres/9.6/include/server/access/spgist_private.h
file path=usr/postgres/9.6/include/server/access/stratnum.h
file path=usr/postgres/9.6/include/server/access/subtrans.h
file path=usr/postgres/9.6/include/server/access/sysattr.h
file path=usr/postgres/9.6/include/server/access/timeline.h
file path=usr/postgres/9.6/include/server/access/transam.h
file path=usr/postgres/9.6/include/server/access/tsmapi.h
file path=usr/postgres/9.6/include/server/access/tupconvert.h
file path=usr/postgres/9.6/include/server/access/tupdesc.h
file path=usr/postgres/9.6/include/server/access/tupmacs.h
file path=usr/postgres/9.6/include/server/access/tuptoaster.h
file path=usr/postgres/9.6/include/server/access/twophase.h
file path=usr/postgres/9.6/include/server/access/twophase_rmgr.h
file path=usr/postgres/9.6/include/server/access/valid.h
file path=usr/postgres/9.6/include/server/access/visibilitymap.h
file path=usr/postgres/9.6/include/server/access/xact.h
file path=usr/postgres/9.6/include/server/access/xlog.h
file path=usr/postgres/9.6/include/server/access/xlog_fn.h
file path=usr/postgres/9.6/include/server/access/xlog_internal.h
file path=usr/postgres/9.6/include/server/access/xlogdefs.h
file path=usr/postgres/9.6/include/server/access/xloginsert.h
file path=usr/postgres/9.6/include/server/access/xlogreader.h
file path=usr/postgres/9.6/include/server/access/xlogrecord.h
file path=usr/postgres/9.6/include/server/access/xlogutils.h
file path=usr/postgres/9.6/include/server/bootstrap/bootstrap.h
file path=usr/postgres/9.6/include/server/c.h
file path=usr/postgres/9.6/include/server/catalog/binary_upgrade.h
file path=usr/postgres/9.6/include/server/catalog/catalog.h
file path=usr/postgres/9.6/include/server/catalog/catversion.h
file path=usr/postgres/9.6/include/server/catalog/dependency.h
file path=usr/postgres/9.6/include/server/catalog/genbki.h
file path=usr/postgres/9.6/include/server/catalog/heap.h
file path=usr/postgres/9.6/include/server/catalog/index.h
file path=usr/postgres/9.6/include/server/catalog/indexing.h
file path=usr/postgres/9.6/include/server/catalog/namespace.h
file path=usr/postgres/9.6/include/server/catalog/objectaccess.h
file path=usr/postgres/9.6/include/server/catalog/objectaddress.h
file path=usr/postgres/9.6/include/server/catalog/opfam_internal.h
file path=usr/postgres/9.6/include/server/catalog/pg_aggregate.h
file path=usr/postgres/9.6/include/server/catalog/pg_am.h
file path=usr/postgres/9.6/include/server/catalog/pg_amop.h
file path=usr/postgres/9.6/include/server/catalog/pg_amproc.h
file path=usr/postgres/9.6/include/server/catalog/pg_attrdef.h
file path=usr/postgres/9.6/include/server/catalog/pg_attribute.h
file path=usr/postgres/9.6/include/server/catalog/pg_auth_members.h
file path=usr/postgres/9.6/include/server/catalog/pg_authid.h
file path=usr/postgres/9.6/include/server/catalog/pg_cast.h
file path=usr/postgres/9.6/include/server/catalog/pg_class.h
file path=usr/postgres/9.6/include/server/catalog/pg_collation.h
file path=usr/postgres/9.6/include/server/catalog/pg_collation_fn.h
file path=usr/postgres/9.6/include/server/catalog/pg_constraint.h
file path=usr/postgres/9.6/include/server/catalog/pg_constraint_fn.h
file path=usr/postgres/9.6/include/server/catalog/pg_control.h
file path=usr/postgres/9.6/include/server/catalog/pg_conversion.h
file path=usr/postgres/9.6/include/server/catalog/pg_conversion_fn.h
file path=usr/postgres/9.6/include/server/catalog/pg_database.h
file path=usr/postgres/9.6/include/server/catalog/pg_db_role_setting.h
file path=usr/postgres/9.6/include/server/catalog/pg_default_acl.h
file path=usr/postgres/9.6/include/server/catalog/pg_depend.h
file path=usr/postgres/9.6/include/server/catalog/pg_description.h
file path=usr/postgres/9.6/include/server/catalog/pg_enum.h
file path=usr/postgres/9.6/include/server/catalog/pg_event_trigger.h
file path=usr/postgres/9.6/include/server/catalog/pg_extension.h
file path=usr/postgres/9.6/include/server/catalog/pg_foreign_data_wrapper.h
file path=usr/postgres/9.6/include/server/catalog/pg_foreign_server.h
file path=usr/postgres/9.6/include/server/catalog/pg_foreign_table.h
file path=usr/postgres/9.6/include/server/catalog/pg_index.h
file path=usr/postgres/9.6/include/server/catalog/pg_inherits.h
file path=usr/postgres/9.6/include/server/catalog/pg_inherits_fn.h
file path=usr/postgres/9.6/include/server/catalog/pg_init_privs.h
file path=usr/postgres/9.6/include/server/catalog/pg_language.h
file path=usr/postgres/9.6/include/server/catalog/pg_largeobject.h
file path=usr/postgres/9.6/include/server/catalog/pg_largeobject_metadata.h
file path=usr/postgres/9.6/include/server/catalog/pg_namespace.h
file path=usr/postgres/9.6/include/server/catalog/pg_opclass.h
file path=usr/postgres/9.6/include/server/catalog/pg_operator.h
file path=usr/postgres/9.6/include/server/catalog/pg_operator_fn.h
file path=usr/postgres/9.6/include/server/catalog/pg_opfamily.h
file path=usr/postgres/9.6/include/server/catalog/pg_pltemplate.h
file path=usr/postgres/9.6/include/server/catalog/pg_policy.h
file path=usr/postgres/9.6/include/server/catalog/pg_proc.h
file path=usr/postgres/9.6/include/server/catalog/pg_proc_fn.h
file path=usr/postgres/9.6/include/server/catalog/pg_range.h
file path=usr/postgres/9.6/include/server/catalog/pg_replication_origin.h
file path=usr/postgres/9.6/include/server/catalog/pg_rewrite.h
file path=usr/postgres/9.6/include/server/catalog/pg_seclabel.h
file path=usr/postgres/9.6/include/server/catalog/pg_shdepend.h
file path=usr/postgres/9.6/include/server/catalog/pg_shdescription.h
file path=usr/postgres/9.6/include/server/catalog/pg_shseclabel.h
file path=usr/postgres/9.6/include/server/catalog/pg_statistic.h
file path=usr/postgres/9.6/include/server/catalog/pg_tablespace.h
file path=usr/postgres/9.6/include/server/catalog/pg_transform.h
file path=usr/postgres/9.6/include/server/catalog/pg_trigger.h
file path=usr/postgres/9.6/include/server/catalog/pg_ts_config.h
file path=usr/postgres/9.6/include/server/catalog/pg_ts_config_map.h
file path=usr/postgres/9.6/include/server/catalog/pg_ts_dict.h
file path=usr/postgres/9.6/include/server/catalog/pg_ts_parser.h
file path=usr/postgres/9.6/include/server/catalog/pg_ts_template.h
file path=usr/postgres/9.6/include/server/catalog/pg_type.h
file path=usr/postgres/9.6/include/server/catalog/pg_type_fn.h
file path=usr/postgres/9.6/include/server/catalog/pg_user_mapping.h
file path=usr/postgres/9.6/include/server/catalog/schemapg.h
file path=usr/postgres/9.6/include/server/catalog/storage.h
file path=usr/postgres/9.6/include/server/catalog/storage_xlog.h
file path=usr/postgres/9.6/include/server/catalog/toasting.h
file path=usr/postgres/9.6/include/server/commands/alter.h
file path=usr/postgres/9.6/include/server/commands/async.h
file path=usr/postgres/9.6/include/server/commands/cluster.h
file path=usr/postgres/9.6/include/server/commands/collationcmds.h
file path=usr/postgres/9.6/include/server/commands/comment.h
file path=usr/postgres/9.6/include/server/commands/conversioncmds.h
file path=usr/postgres/9.6/include/server/commands/copy.h
file path=usr/postgres/9.6/include/server/commands/createas.h
file path=usr/postgres/9.6/include/server/commands/dbcommands.h
file path=usr/postgres/9.6/include/server/commands/dbcommands_xlog.h
file path=usr/postgres/9.6/include/server/commands/defrem.h
file path=usr/postgres/9.6/include/server/commands/discard.h
file path=usr/postgres/9.6/include/server/commands/event_trigger.h
file path=usr/postgres/9.6/include/server/commands/explain.h
file path=usr/postgres/9.6/include/server/commands/extension.h
file path=usr/postgres/9.6/include/server/commands/lockcmds.h
file path=usr/postgres/9.6/include/server/commands/matview.h
file path=usr/postgres/9.6/include/server/commands/policy.h
file path=usr/postgres/9.6/include/server/commands/portalcmds.h
file path=usr/postgres/9.6/include/server/commands/prepare.h
file path=usr/postgres/9.6/include/server/commands/proclang.h
file path=usr/postgres/9.6/include/server/commands/progress.h
file path=usr/postgres/9.6/include/server/commands/schemacmds.h
file path=usr/postgres/9.6/include/server/commands/seclabel.h
file path=usr/postgres/9.6/include/server/commands/sequence.h
file path=usr/postgres/9.6/include/server/commands/tablecmds.h
file path=usr/postgres/9.6/include/server/commands/tablespace.h
file path=usr/postgres/9.6/include/server/commands/trigger.h
file path=usr/postgres/9.6/include/server/commands/typecmds.h
file path=usr/postgres/9.6/include/server/commands/user.h
file path=usr/postgres/9.6/include/server/commands/vacuum.h
file path=usr/postgres/9.6/include/server/commands/variable.h
file path=usr/postgres/9.6/include/server/commands/view.h
file path=usr/postgres/9.6/include/server/common/config_info.h
file path=usr/postgres/9.6/include/server/common/controldata_utils.h
file path=usr/postgres/9.6/include/server/common/fe_memutils.h
file path=usr/postgres/9.6/include/server/common/keywords.h
file path=usr/postgres/9.6/include/server/common/pg_lzcompress.h
file path=usr/postgres/9.6/include/server/common/relpath.h
file path=usr/postgres/9.6/include/server/common/restricted_token.h
file path=usr/postgres/9.6/include/server/common/string.h
file path=usr/postgres/9.6/include/server/common/username.h
file path=usr/postgres/9.6/include/server/datatype/timestamp.h
file path=usr/postgres/9.6/include/server/dynloader.h
file path=usr/postgres/9.6/include/server/executor/execParallel.h
file path=usr/postgres/9.6/include/server/executor/execdebug.h
file path=usr/postgres/9.6/include/server/executor/execdesc.h
file path=usr/postgres/9.6/include/server/executor/executor.h
file path=usr/postgres/9.6/include/server/executor/functions.h
file path=usr/postgres/9.6/include/server/executor/hashjoin.h
file path=usr/postgres/9.6/include/server/executor/instrument.h
file path=usr/postgres/9.6/include/server/executor/nodeAgg.h
file path=usr/postgres/9.6/include/server/executor/nodeAppend.h
file path=usr/postgres/9.6/include/server/executor/nodeBitmapAnd.h
file path=usr/postgres/9.6/include/server/executor/nodeBitmapHeapscan.h
file path=usr/postgres/9.6/include/server/executor/nodeBitmapIndexscan.h
file path=usr/postgres/9.6/include/server/executor/nodeBitmapOr.h
file path=usr/postgres/9.6/include/server/executor/nodeCtescan.h
file path=usr/postgres/9.6/include/server/executor/nodeCustom.h
file path=usr/postgres/9.6/include/server/executor/nodeForeignscan.h
file path=usr/postgres/9.6/include/server/executor/nodeFunctionscan.h
file path=usr/postgres/9.6/include/server/executor/nodeGather.h
file path=usr/postgres/9.6/include/server/executor/nodeGroup.h
file path=usr/postgres/9.6/include/server/executor/nodeHash.h
file path=usr/postgres/9.6/include/server/executor/nodeHashjoin.h
file path=usr/postgres/9.6/include/server/executor/nodeIndexonlyscan.h
file path=usr/postgres/9.6/include/server/executor/nodeIndexscan.h
file path=usr/postgres/9.6/include/server/executor/nodeLimit.h
file path=usr/postgres/9.6/include/server/executor/nodeLockRows.h
file path=usr/postgres/9.6/include/server/executor/nodeMaterial.h
file path=usr/postgres/9.6/include/server/executor/nodeMergeAppend.h
file path=usr/postgres/9.6/include/server/executor/nodeMergejoin.h
file path=usr/postgres/9.6/include/server/executor/nodeModifyTable.h
file path=usr/postgres/9.6/include/server/executor/nodeNestloop.h
file path=usr/postgres/9.6/include/server/executor/nodeRecursiveunion.h
file path=usr/postgres/9.6/include/server/executor/nodeResult.h
file path=usr/postgres/9.6/include/server/executor/nodeSamplescan.h
file path=usr/postgres/9.6/include/server/executor/nodeSeqscan.h
file path=usr/postgres/9.6/include/server/executor/nodeSetOp.h
file path=usr/postgres/9.6/include/server/executor/nodeSort.h
file path=usr/postgres/9.6/include/server/executor/nodeSubplan.h
file path=usr/postgres/9.6/include/server/executor/nodeSubqueryscan.h
file path=usr/postgres/9.6/include/server/executor/nodeTidscan.h
file path=usr/postgres/9.6/include/server/executor/nodeUnique.h
file path=usr/postgres/9.6/include/server/executor/nodeValuesscan.h
file path=usr/postgres/9.6/include/server/executor/nodeWindowAgg.h
file path=usr/postgres/9.6/include/server/executor/nodeWorktablescan.h
file path=usr/postgres/9.6/include/server/executor/spi.h
file path=usr/postgres/9.6/include/server/executor/spi_priv.h
file path=usr/postgres/9.6/include/server/executor/tqueue.h
file path=usr/postgres/9.6/include/server/executor/tstoreReceiver.h
file path=usr/postgres/9.6/include/server/executor/tuptable.h
file path=usr/postgres/9.6/include/server/fe_utils/mbprint.h
file path=usr/postgres/9.6/include/server/fe_utils/print.h
file path=usr/postgres/9.6/include/server/fe_utils/psqlscan.h
file path=usr/postgres/9.6/include/server/fe_utils/psqlscan_int.h
file path=usr/postgres/9.6/include/server/fe_utils/simple_list.h
file path=usr/postgres/9.6/include/server/fe_utils/string_utils.h
file path=usr/postgres/9.6/include/server/fmgr.h
file path=usr/postgres/9.6/include/server/foreign/fdwapi.h
file path=usr/postgres/9.6/include/server/foreign/foreign.h
file path=usr/postgres/9.6/include/server/funcapi.h
file path=usr/postgres/9.6/include/server/getaddrinfo.h
file path=usr/postgres/9.6/include/server/getopt_long.h
file path=usr/postgres/9.6/include/server/lib/binaryheap.h
file path=usr/postgres/9.6/include/server/lib/bipartite_match.h
file path=usr/postgres/9.6/include/server/lib/hyperloglog.h
file path=usr/postgres/9.6/include/server/lib/ilist.h
file path=usr/postgres/9.6/include/server/lib/pairingheap.h
file path=usr/postgres/9.6/include/server/lib/rbtree.h
file path=usr/postgres/9.6/include/server/lib/stringinfo.h
file path=usr/postgres/9.6/include/server/libpq/auth.h
file path=usr/postgres/9.6/include/server/libpq/be-fsstubs.h
file path=usr/postgres/9.6/include/server/libpq/crypt.h
file path=usr/postgres/9.6/include/server/libpq/hba.h
file path=usr/postgres/9.6/include/server/libpq/ip.h
file path=usr/postgres/9.6/include/server/libpq/libpq-be.h
file path=usr/postgres/9.6/include/server/libpq/libpq-fs.h
file path=usr/postgres/9.6/include/server/libpq/libpq.h
file path=usr/postgres/9.6/include/server/libpq/md5.h
file path=usr/postgres/9.6/include/server/libpq/pqcomm.h
file path=usr/postgres/9.6/include/server/libpq/pqformat.h
file path=usr/postgres/9.6/include/server/libpq/pqmq.h
file path=usr/postgres/9.6/include/server/libpq/pqsignal.h
file path=usr/postgres/9.6/include/server/mb/pg_wchar.h
file path=usr/postgres/9.6/include/server/miscadmin.h
file path=usr/postgres/9.6/include/server/nodes/bitmapset.h
file path=usr/postgres/9.6/include/server/nodes/execnodes.h
file path=usr/postgres/9.6/include/server/nodes/extensible.h
file path=usr/postgres/9.6/include/server/nodes/lockoptions.h
file path=usr/postgres/9.6/include/server/nodes/makefuncs.h
file path=usr/postgres/9.6/include/server/nodes/memnodes.h
file path=usr/postgres/9.6/include/server/nodes/nodeFuncs.h
file path=usr/postgres/9.6/include/server/nodes/nodes.h
file path=usr/postgres/9.6/include/server/nodes/params.h
file path=usr/postgres/9.6/include/server/nodes/parsenodes.h
file path=usr/postgres/9.6/include/server/nodes/pg_list.h
file path=usr/postgres/9.6/include/server/nodes/plannodes.h
file path=usr/postgres/9.6/include/server/nodes/primnodes.h
file path=usr/postgres/9.6/include/server/nodes/print.h
file path=usr/postgres/9.6/include/server/nodes/readfuncs.h
file path=usr/postgres/9.6/include/server/nodes/relation.h
file path=usr/postgres/9.6/include/server/nodes/replnodes.h
file path=usr/postgres/9.6/include/server/nodes/tidbitmap.h
file path=usr/postgres/9.6/include/server/nodes/value.h
file path=usr/postgres/9.6/include/server/optimizer/clauses.h
file path=usr/postgres/9.6/include/server/optimizer/cost.h
file path=usr/postgres/9.6/include/server/optimizer/geqo.h
file path=usr/postgres/9.6/include/server/optimizer/geqo_copy.h
file path=usr/postgres/9.6/include/server/optimizer/geqo_gene.h
file path=usr/postgres/9.6/include/server/optimizer/geqo_misc.h
file path=usr/postgres/9.6/include/server/optimizer/geqo_mutation.h
file path=usr/postgres/9.6/include/server/optimizer/geqo_pool.h
file path=usr/postgres/9.6/include/server/optimizer/geqo_random.h
file path=usr/postgres/9.6/include/server/optimizer/geqo_recombination.h
file path=usr/postgres/9.6/include/server/optimizer/geqo_selection.h
file path=usr/postgres/9.6/include/server/optimizer/joininfo.h
file path=usr/postgres/9.6/include/server/optimizer/orclauses.h
file path=usr/postgres/9.6/include/server/optimizer/pathnode.h
file path=usr/postgres/9.6/include/server/optimizer/paths.h
file path=usr/postgres/9.6/include/server/optimizer/placeholder.h
file path=usr/postgres/9.6/include/server/optimizer/plancat.h
file path=usr/postgres/9.6/include/server/optimizer/planmain.h
file path=usr/postgres/9.6/include/server/optimizer/planner.h
file path=usr/postgres/9.6/include/server/optimizer/predtest.h
file path=usr/postgres/9.6/include/server/optimizer/prep.h
file path=usr/postgres/9.6/include/server/optimizer/restrictinfo.h
file path=usr/postgres/9.6/include/server/optimizer/subselect.h
file path=usr/postgres/9.6/include/server/optimizer/tlist.h
file path=usr/postgres/9.6/include/server/optimizer/var.h
file path=usr/postgres/9.6/include/server/parser/analyze.h
file path=usr/postgres/9.6/include/server/parser/gram.h
file path=usr/postgres/9.6/include/server/parser/gramparse.h
file path=usr/postgres/9.6/include/server/parser/kwlist.h
file path=usr/postgres/9.6/include/server/parser/parse_agg.h
file path=usr/postgres/9.6/include/server/parser/parse_clause.h
file path=usr/postgres/9.6/include/server/parser/parse_coerce.h
file path=usr/postgres/9.6/include/server/parser/parse_collate.h
file path=usr/postgres/9.6/include/server/parser/parse_cte.h
file path=usr/postgres/9.6/include/server/parser/parse_expr.h
file path=usr/postgres/9.6/include/server/parser/parse_func.h
file path=usr/postgres/9.6/include/server/parser/parse_node.h
file path=usr/postgres/9.6/include/server/parser/parse_oper.h
file path=usr/postgres/9.6/include/server/parser/parse_param.h
file path=usr/postgres/9.6/include/server/parser/parse_relation.h
file path=usr/postgres/9.6/include/server/parser/parse_target.h
file path=usr/postgres/9.6/include/server/parser/parse_type.h
file path=usr/postgres/9.6/include/server/parser/parse_utilcmd.h
file path=usr/postgres/9.6/include/server/parser/parser.h
file path=usr/postgres/9.6/include/server/parser/parsetree.h
file path=usr/postgres/9.6/include/server/parser/scanner.h
file path=usr/postgres/9.6/include/server/parser/scansup.h
file path=usr/postgres/9.6/include/server/pg_config-32.h
file path=usr/postgres/9.6/include/server/pg_config-64.h
file path=usr/postgres/9.6/include/server/pg_config_ext.h
file path=usr/postgres/9.6/include/server/pg_config_manual.h
file path=usr/postgres/9.6/include/server/pg_config_os.h
file path=usr/postgres/9.6/include/server/pg_getopt.h
file path=usr/postgres/9.6/include/server/pg_trace.h
file path=usr/postgres/9.6/include/server/pgstat.h
file path=usr/postgres/9.6/include/server/pgtar.h
file path=usr/postgres/9.6/include/server/pgtime.h
file path=usr/postgres/9.6/include/server/plperl.h
file path=usr/postgres/9.6/include/server/plpgsql.h
file path=usr/postgres/9.6/include/server/plpy_util.h
file path=usr/postgres/9.6/include/server/plpython.h
file path=usr/postgres/9.6/include/server/port.h
file path=usr/postgres/9.6/include/server/port/aix.h
file path=usr/postgres/9.6/include/server/port/atomics.h
file path=usr/postgres/9.6/include/server/port/atomics/arch-arm.h
file path=usr/postgres/9.6/include/server/port/atomics/arch-hppa.h
file path=usr/postgres/9.6/include/server/port/atomics/arch-ia64.h
file path=usr/postgres/9.6/include/server/port/atomics/arch-ppc.h
file path=usr/postgres/9.6/include/server/port/atomics/arch-x86.h
file path=usr/postgres/9.6/include/server/port/atomics/fallback.h
file path=usr/postgres/9.6/include/server/port/atomics/generic-acc.h
file path=usr/postgres/9.6/include/server/port/atomics/generic-gcc.h
file path=usr/postgres/9.6/include/server/port/atomics/generic-msvc.h
file path=usr/postgres/9.6/include/server/port/atomics/generic-sunpro.h
file path=usr/postgres/9.6/include/server/port/atomics/generic-xlc.h
file path=usr/postgres/9.6/include/server/port/atomics/generic.h
file path=usr/postgres/9.6/include/server/port/cygwin.h
file path=usr/postgres/9.6/include/server/port/darwin.h
file path=usr/postgres/9.6/include/server/port/freebsd.h
file path=usr/postgres/9.6/include/server/port/hpux.h
file path=usr/postgres/9.6/include/server/port/linux.h
file path=usr/postgres/9.6/include/server/port/netbsd.h
file path=usr/postgres/9.6/include/server/port/openbsd.h
file path=usr/postgres/9.6/include/server/port/pg_bswap.h
file path=usr/postgres/9.6/include/server/port/pg_crc32c.h
file path=usr/postgres/9.6/include/server/port/sco.h
file path=usr/postgres/9.6/include/server/port/solaris.h
file path=usr/postgres/9.6/include/server/port/unixware.h
file path=usr/postgres/9.6/include/server/port/win32.h
file path=usr/postgres/9.6/include/server/port/win32/arpa/inet.h
file path=usr/postgres/9.6/include/server/port/win32/dlfcn.h
file path=usr/postgres/9.6/include/server/port/win32/grp.h
file path=usr/postgres/9.6/include/server/port/win32/netdb.h
file path=usr/postgres/9.6/include/server/port/win32/netinet/in.h
file path=usr/postgres/9.6/include/server/port/win32/pwd.h
file path=usr/postgres/9.6/include/server/port/win32/sys/socket.h
file path=usr/postgres/9.6/include/server/port/win32/sys/wait.h
file path=usr/postgres/9.6/include/server/port/win32_msvc/dirent.h
file path=usr/postgres/9.6/include/server/port/win32_msvc/sys/file.h
file path=usr/postgres/9.6/include/server/port/win32_msvc/sys/param.h
file path=usr/postgres/9.6/include/server/port/win32_msvc/sys/time.h
file path=usr/postgres/9.6/include/server/port/win32_msvc/unistd.h
file path=usr/postgres/9.6/include/server/port/win32_msvc/utime.h
file path=usr/postgres/9.6/include/server/portability/instr_time.h
file path=usr/postgres/9.6/include/server/portability/mem.h
file path=usr/postgres/9.6/include/server/postgres.h
file path=usr/postgres/9.6/include/server/postgres_ext.h
file path=usr/postgres/9.6/include/server/postgres_fe.h
file path=usr/postgres/9.6/include/server/postmaster/autovacuum.h
file path=usr/postgres/9.6/include/server/postmaster/bgworker.h
file path=usr/postgres/9.6/include/server/postmaster/bgworker_internals.h
file path=usr/postgres/9.6/include/server/postmaster/bgwriter.h
file path=usr/postgres/9.6/include/server/postmaster/fork_process.h
file path=usr/postgres/9.6/include/server/postmaster/pgarch.h
file path=usr/postgres/9.6/include/server/postmaster/postmaster.h
file path=usr/postgres/9.6/include/server/postmaster/startup.h
file path=usr/postgres/9.6/include/server/postmaster/syslogger.h
file path=usr/postgres/9.6/include/server/postmaster/walwriter.h
file path=usr/postgres/9.6/include/server/ppport.h
file path=usr/postgres/9.6/include/server/regex/regcustom.h
file path=usr/postgres/9.6/include/server/regex/regerrs.h
file path=usr/postgres/9.6/include/server/regex/regex.h
file path=usr/postgres/9.6/include/server/regex/regexport.h
file path=usr/postgres/9.6/include/server/regex/regguts.h
file path=usr/postgres/9.6/include/server/replication/basebackup.h
file path=usr/postgres/9.6/include/server/replication/decode.h
file path=usr/postgres/9.6/include/server/replication/logical.h
file path=usr/postgres/9.6/include/server/replication/logicalfuncs.h
file path=usr/postgres/9.6/include/server/replication/message.h
file path=usr/postgres/9.6/include/server/replication/origin.h
file path=usr/postgres/9.6/include/server/replication/output_plugin.h
file path=usr/postgres/9.6/include/server/replication/reorderbuffer.h
file path=usr/postgres/9.6/include/server/replication/slot.h
file path=usr/postgres/9.6/include/server/replication/snapbuild.h
file path=usr/postgres/9.6/include/server/replication/syncrep.h
file path=usr/postgres/9.6/include/server/replication/walreceiver.h
file path=usr/postgres/9.6/include/server/replication/walsender.h
file path=usr/postgres/9.6/include/server/replication/walsender_private.h
file path=usr/postgres/9.6/include/server/rewrite/prs2lock.h
file path=usr/postgres/9.6/include/server/rewrite/rewriteDefine.h
file path=usr/postgres/9.6/include/server/rewrite/rewriteHandler.h
file path=usr/postgres/9.6/include/server/rewrite/rewriteManip.h
file path=usr/postgres/9.6/include/server/rewrite/rewriteRemove.h
file path=usr/postgres/9.6/include/server/rewrite/rewriteSupport.h
file path=usr/postgres/9.6/include/server/rewrite/rowsecurity.h
file path=usr/postgres/9.6/include/server/rusagestub.h
file path=usr/postgres/9.6/include/server/snowball/header.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/api.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/header.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_danish.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_dutch.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_english.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_finnish.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_french.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_german.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_hungarian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_italian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_norwegian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_porter.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_portuguese.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_spanish.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_swedish.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_2_romanian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_KOI8_R_russian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_danish.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_dutch.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_english.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_finnish.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_french.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_german.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_hungarian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_italian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_norwegian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_porter.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_portuguese.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_romanian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_russian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_spanish.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_swedish.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_turkish.h
file path=usr/postgres/9.6/include/server/storage/backendid.h
file path=usr/postgres/9.6/include/server/storage/barrier.h
file path=usr/postgres/9.6/include/server/storage/block.h
file path=usr/postgres/9.6/include/server/storage/buf.h
file path=usr/postgres/9.6/include/server/storage/buf_internals.h
file path=usr/postgres/9.6/include/server/storage/buffile.h
file path=usr/postgres/9.6/include/server/storage/bufmgr.h
file path=usr/postgres/9.6/include/server/storage/bufpage.h
file path=usr/postgres/9.6/include/server/storage/checksum.h
file path=usr/postgres/9.6/include/server/storage/checksum_impl.h
file path=usr/postgres/9.6/include/server/storage/copydir.h
file path=usr/postgres/9.6/include/server/storage/dsm.h
file path=usr/postgres/9.6/include/server/storage/dsm_impl.h
file path=usr/postgres/9.6/include/server/storage/fd.h
file path=usr/postgres/9.6/include/server/storage/freespace.h
file path=usr/postgres/9.6/include/server/storage/fsm_internals.h
file path=usr/postgres/9.6/include/server/storage/indexfsm.h
file path=usr/postgres/9.6/include/server/storage/ipc.h
file path=usr/postgres/9.6/include/server/storage/item.h
file path=usr/postgres/9.6/include/server/storage/itemid.h
file path=usr/postgres/9.6/include/server/storage/itemptr.h
file path=usr/postgres/9.6/include/server/storage/large_object.h
file path=usr/postgres/9.6/include/server/storage/latch.h
file path=usr/postgres/9.6/include/server/storage/lmgr.h
file path=usr/postgres/9.6/include/server/storage/lock.h
file path=usr/postgres/9.6/include/server/storage/lockdefs.h
file path=usr/postgres/9.6/include/server/storage/lwlock.h
file path=usr/postgres/9.6/include/server/storage/lwlocknames.h
file path=usr/postgres/9.6/include/server/storage/off.h
file path=usr/postgres/9.6/include/server/storage/pg_sema.h
file path=usr/postgres/9.6/include/server/storage/pg_shmem.h
file path=usr/postgres/9.6/include/server/storage/pmsignal.h
file path=usr/postgres/9.6/include/server/storage/pos.h
file path=usr/postgres/9.6/include/server/storage/predicate.h
file path=usr/postgres/9.6/include/server/storage/predicate_internals.h
file path=usr/postgres/9.6/include/server/storage/proc.h
file path=usr/postgres/9.6/include/server/storage/procarray.h
file path=usr/postgres/9.6/include/server/storage/procsignal.h
file path=usr/postgres/9.6/include/server/storage/reinit.h
file path=usr/postgres/9.6/include/server/storage/relfilenode.h
file path=usr/postgres/9.6/include/server/storage/s_lock.h
file path=usr/postgres/9.6/include/server/storage/shm_mq.h
file path=usr/postgres/9.6/include/server/storage/shm_toc.h
file path=usr/postgres/9.6/include/server/storage/shmem.h
file path=usr/postgres/9.6/include/server/storage/sinval.h
file path=usr/postgres/9.6/include/server/storage/sinvaladt.h
file path=usr/postgres/9.6/include/server/storage/smgr.h
file path=usr/postgres/9.6/include/server/storage/spin.h
file path=usr/postgres/9.6/include/server/storage/standby.h
file path=usr/postgres/9.6/include/server/storage/standbydefs.h
file path=usr/postgres/9.6/include/server/tcop/deparse_utility.h
file path=usr/postgres/9.6/include/server/tcop/dest.h
file path=usr/postgres/9.6/include/server/tcop/fastpath.h
file path=usr/postgres/9.6/include/server/tcop/pquery.h
file path=usr/postgres/9.6/include/server/tcop/tcopprot.h
file path=usr/postgres/9.6/include/server/tcop/utility.h
file path=usr/postgres/9.6/include/server/tsearch/dicts/regis.h
file path=usr/postgres/9.6/include/server/tsearch/dicts/spell.h
file path=usr/postgres/9.6/include/server/tsearch/ts_cache.h
file path=usr/postgres/9.6/include/server/tsearch/ts_locale.h
file path=usr/postgres/9.6/include/server/tsearch/ts_public.h
file path=usr/postgres/9.6/include/server/tsearch/ts_type.h
file path=usr/postgres/9.6/include/server/tsearch/ts_utils.h
file path=usr/postgres/9.6/include/server/utils/acl.h
file path=usr/postgres/9.6/include/server/utils/aclchk_internal.h
file path=usr/postgres/9.6/include/server/utils/array.h
file path=usr/postgres/9.6/include/server/utils/arrayaccess.h
file path=usr/postgres/9.6/include/server/utils/ascii.h
file path=usr/postgres/9.6/include/server/utils/attoptcache.h
file path=usr/postgres/9.6/include/server/utils/builtins.h
file path=usr/postgres/9.6/include/server/utils/bytea.h
file path=usr/postgres/9.6/include/server/utils/cash.h
file path=usr/postgres/9.6/include/server/utils/catcache.h
file path=usr/postgres/9.6/include/server/utils/combocid.h
file path=usr/postgres/9.6/include/server/utils/date.h
file path=usr/postgres/9.6/include/server/utils/datetime.h
file path=usr/postgres/9.6/include/server/utils/datum.h
file path=usr/postgres/9.6/include/server/utils/dynahash.h
file path=usr/postgres/9.6/include/server/utils/dynamic_loader.h
file path=usr/postgres/9.6/include/server/utils/elog.h
file path=usr/postgres/9.6/include/server/utils/errcodes.h
file path=usr/postgres/9.6/include/server/utils/evtcache.h
file path=usr/postgres/9.6/include/server/utils/expandeddatum.h
file path=usr/postgres/9.6/include/server/utils/fmgroids.h
file path=usr/postgres/9.6/include/server/utils/fmgrtab.h
file path=usr/postgres/9.6/include/server/utils/formatting.h
file path=usr/postgres/9.6/include/server/utils/geo_decls.h
file path=usr/postgres/9.6/include/server/utils/guc.h
file path=usr/postgres/9.6/include/server/utils/guc_tables.h
file path=usr/postgres/9.6/include/server/utils/help_config.h
file path=usr/postgres/9.6/include/server/utils/hsearch.h
file path=usr/postgres/9.6/include/server/utils/index_selfuncs.h
file path=usr/postgres/9.6/include/server/utils/inet.h
file path=usr/postgres/9.6/include/server/utils/int8.h
file path=usr/postgres/9.6/include/server/utils/inval.h
file path=usr/postgres/9.6/include/server/utils/json.h
file path=usr/postgres/9.6/include/server/utils/jsonapi.h
file path=usr/postgres/9.6/include/server/utils/jsonb.h
file path=usr/postgres/9.6/include/server/utils/logtape.h
file path=usr/postgres/9.6/include/server/utils/lsyscache.h
file path=usr/postgres/9.6/include/server/utils/memdebug.h
file path=usr/postgres/9.6/include/server/utils/memutils.h
file path=usr/postgres/9.6/include/server/utils/nabstime.h
file path=usr/postgres/9.6/include/server/utils/numeric.h
file path=usr/postgres/9.6/include/server/utils/palloc.h
file path=usr/postgres/9.6/include/server/utils/pg_crc.h
file path=usr/postgres/9.6/include/server/utils/pg_locale.h
file path=usr/postgres/9.6/include/server/utils/pg_lsn.h
file path=usr/postgres/9.6/include/server/utils/pg_rusage.h
file path=usr/postgres/9.6/include/server/utils/plancache.h
file path=usr/postgres/9.6/include/server/utils/portal.h
file path=usr/postgres/9.6/include/server/utils/probes.h
file path=usr/postgres/9.6/include/server/utils/ps_status.h
file path=usr/postgres/9.6/include/server/utils/rangetypes.h
file path=usr/postgres/9.6/include/server/utils/rel.h
file path=usr/postgres/9.6/include/server/utils/relcache.h
file path=usr/postgres/9.6/include/server/utils/relfilenodemap.h
file path=usr/postgres/9.6/include/server/utils/relmapper.h
file path=usr/postgres/9.6/include/server/utils/reltrigger.h
file path=usr/postgres/9.6/include/server/utils/resowner.h
file path=usr/postgres/9.6/include/server/utils/resowner_private.h
file path=usr/postgres/9.6/include/server/utils/rls.h
file path=usr/postgres/9.6/include/server/utils/ruleutils.h
file path=usr/postgres/9.6/include/server/utils/sampling.h
file path=usr/postgres/9.6/include/server/utils/selfuncs.h
file path=usr/postgres/9.6/include/server/utils/snapmgr.h
file path=usr/postgres/9.6/include/server/utils/snapshot.h
file path=usr/postgres/9.6/include/server/utils/sortsupport.h
file path=usr/postgres/9.6/include/server/utils/spccache.h
file path=usr/postgres/9.6/include/server/utils/syscache.h
file path=usr/postgres/9.6/include/server/utils/timeout.h
file path=usr/postgres/9.6/include/server/utils/timestamp.h
file path=usr/postgres/9.6/include/server/utils/tqual.h
file path=usr/postgres/9.6/include/server/utils/tuplesort.h
file path=usr/postgres/9.6/include/server/utils/tuplestore.h
file path=usr/postgres/9.6/include/server/utils/typcache.h
file path=usr/postgres/9.6/include/server/utils/tzparser.h
file path=usr/postgres/9.6/include/server/utils/uuid.h
file path=usr/postgres/9.6/include/server/utils/varbit.h
file path=usr/postgres/9.6/include/server/utils/xml.h
file path=usr/postgres/9.6/include/server/windowapi.h
file path=usr/postgres/9.6/include/sql3types.h
file path=usr/postgres/9.6/include/sqlca.h
file path=usr/postgres/9.6/include/sqlda-compat.h
file path=usr/postgres/9.6/include/sqlda-native.h
file path=usr/postgres/9.6/include/sqlda.h
file path=usr/postgres/9.6/lib/$(MACH64)/_int.so
file path=usr/postgres/9.6/lib/$(MACH64)/adminpack.so
file path=usr/postgres/9.6/lib/$(MACH64)/ascii_and_mic.so
file path=usr/postgres/9.6/lib/$(MACH64)/auth_delay.so
file path=usr/postgres/9.6/lib/$(MACH64)/auto_explain.so
file path=usr/postgres/9.6/lib/$(MACH64)/autoinc.so
file path=usr/postgres/9.6/lib/$(MACH64)/bloom.so
file path=usr/postgres/9.6/lib/$(MACH64)/btree_gin.so
file path=usr/postgres/9.6/lib/$(MACH64)/btree_gist.so
file path=usr/postgres/9.6/lib/$(MACH64)/chkpass.so
file path=usr/postgres/9.6/lib/$(MACH64)/citext.so
file path=usr/postgres/9.6/lib/$(MACH64)/cube.so
file path=usr/postgres/9.6/lib/$(MACH64)/cyrillic_and_mic.so
file path=usr/postgres/9.6/lib/$(MACH64)/dblink.so
file path=usr/postgres/9.6/lib/$(MACH64)/dict_int.so
file path=usr/postgres/9.6/lib/$(MACH64)/dict_snowball.so
file path=usr/postgres/9.6/lib/$(MACH64)/dict_xsyn.so
file path=usr/postgres/9.6/lib/$(MACH64)/earthdistance.so
file path=usr/postgres/9.6/lib/$(MACH64)/euc2004_sjis2004.so
file path=usr/postgres/9.6/lib/$(MACH64)/euc_cn_and_mic.so
file path=usr/postgres/9.6/lib/$(MACH64)/euc_jp_and_sjis.so
file path=usr/postgres/9.6/lib/$(MACH64)/euc_kr_and_mic.so
file path=usr/postgres/9.6/lib/$(MACH64)/euc_tw_and_big5.so
file path=usr/postgres/9.6/lib/$(MACH64)/file_fdw.so
file path=usr/postgres/9.6/lib/$(MACH64)/fuzzystrmatch.so
file path=usr/postgres/9.6/lib/$(MACH64)/hstore.so
file path=usr/postgres/9.6/lib/$(MACH64)/hstore_plperl.so
file path=usr/postgres/9.6/lib/$(MACH64)/hstore_plpython2.so
file path=usr/postgres/9.6/lib/$(MACH64)/insert_username.so
file path=usr/postgres/9.6/lib/$(MACH64)/isn.so
file path=usr/postgres/9.6/lib/$(MACH64)/latin2_and_win1250.so
file path=usr/postgres/9.6/lib/$(MACH64)/latin_and_mic.so
file path=usr/postgres/9.6/lib/$(MACH64)/libecpg.a
link path=usr/postgres/9.6/lib/$(MACH64)/libecpg.so target=libecpg.so.6.8
link path=usr/postgres/9.6/lib/$(MACH64)/libecpg.so.6 target=libecpg.so.6.8
file path=usr/postgres/9.6/lib/$(MACH64)/libecpg.so.6.8
file path=usr/postgres/9.6/lib/$(MACH64)/libecpg_compat.a
link path=usr/postgres/9.6/lib/$(MACH64)/libecpg_compat.so \
    target=libecpg_compat.so.3.8
link path=usr/postgres/9.6/lib/$(MACH64)/libecpg_compat.so.3 \
    target=libecpg_compat.so.3.8
file path=usr/postgres/9.6/lib/$(MACH64)/libecpg_compat.so.3.8
file path=usr/postgres/9.6/lib/$(MACH64)/libpgcommon.a
file path=usr/postgres/9.6/lib/$(MACH64)/libpgfeutils.a
file path=usr/postgres/9.6/lib/$(MACH64)/libpgport.a
file path=usr/postgres/9.6/lib/$(MACH64)/libpgtypes.a
link path=usr/postgres/9.6/lib/$(MACH64)/libpgtypes.so target=libpgtypes.so.3.7
link path=usr/postgres/9.6/lib/$(MACH64)/libpgtypes.so.3 \
    target=libpgtypes.so.3.7
file path=usr/postgres/9.6/lib/$(MACH64)/libpgtypes.so.3.7
file path=usr/postgres/9.6/lib/$(MACH64)/libpq.a
link path=usr/postgres/9.6/lib/$(MACH64)/libpq.so target=libpq.so.5.9
link path=usr/postgres/9.6/lib/$(MACH64)/libpq.so.5 target=libpq.so.5.9
file path=usr/postgres/9.6/lib/$(MACH64)/libpq.so.5.9
file path=usr/postgres/9.6/lib/$(MACH64)/libpqwalreceiver.so
file path=usr/postgres/9.6/lib/$(MACH64)/lo.so
file path=usr/postgres/9.6/lib/$(MACH64)/ltree.so
file path=usr/postgres/9.6/lib/$(MACH64)/ltree_plpython2.so
file path=usr/postgres/9.6/lib/$(MACH64)/moddatetime.so
file path=usr/postgres/9.6/lib/$(MACH64)/pageinspect.so
file path=usr/postgres/9.6/lib/$(MACH64)/passwordcheck.so
file path=usr/postgres/9.6/lib/$(MACH64)/pg_buffercache.so
file path=usr/postgres/9.6/lib/$(MACH64)/pg_freespacemap.so
file path=usr/postgres/9.6/lib/$(MACH64)/pg_prewarm.so
file path=usr/postgres/9.6/lib/$(MACH64)/pg_stat_statements.so
file path=usr/postgres/9.6/lib/$(MACH64)/pg_trgm.so
file path=usr/postgres/9.6/lib/$(MACH64)/pg_visibility.so
file path=usr/postgres/9.6/lib/$(MACH64)/pgcrypto.so
file path=usr/postgres/9.6/lib/$(MACH64)/pgrowlocks.so
file path=usr/postgres/9.6/lib/$(MACH64)/pgstattuple.so
file path=usr/postgres/9.6/lib/$(MACH64)/pgxml.so
file path=usr/postgres/9.6/lib/$(MACH64)/pgxs/config/install-sh
file path=usr/postgres/9.6/lib/$(MACH64)/pgxs/config/missing
file path=usr/postgres/9.6/lib/$(MACH64)/pgxs/src/Makefile.global
file path=usr/postgres/9.6/lib/$(MACH64)/pgxs/src/Makefile.port
file path=usr/postgres/9.6/lib/$(MACH64)/pgxs/src/Makefile.shlib
file path=usr/postgres/9.6/lib/$(MACH64)/pgxs/src/makefiles/pgxs.mk
file path=usr/postgres/9.6/lib/$(MACH64)/pgxs/src/nls-global.mk
file path=usr/postgres/9.6/lib/$(MACH64)/pgxs/src/test/regress/pg_regress
file path=usr/postgres/9.6/lib/$(MACH64)/pkgconfig/libecpg.pc
file path=usr/postgres/9.6/lib/$(MACH64)/pkgconfig/libecpg_compat.pc
file path=usr/postgres/9.6/lib/$(MACH64)/pkgconfig/libpgtypes.pc
file path=usr/postgres/9.6/lib/$(MACH64)/pkgconfig/libpq.pc
file path=usr/postgres/9.6/lib/$(MACH64)/plperl.so
file path=usr/postgres/9.6/lib/$(MACH64)/plpgsql.so
file path=usr/postgres/9.6/lib/$(MACH64)/plpython2.so
file path=usr/postgres/9.6/lib/$(MACH64)/pltcl.so
file path=usr/postgres/9.6/lib/$(MACH64)/postgres_fdw.so
file path=usr/postgres/9.6/lib/$(MACH64)/refint.so
file path=usr/postgres/9.6/lib/$(MACH64)/regress.so
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/agg.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/array.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/constrf.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/constro.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/dept.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/desc.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/emp.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/hash.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/jsonb.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/onek.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/person.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/real_city.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/rect.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/streets.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/stud_emp.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/student.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/tenk.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/tsearch.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/abstime.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/advisory_lock.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/aggregates.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/alter_generic.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/alter_operator.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/alter_table.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/amutils.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/arrays.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/async.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/bit.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/bitmapops.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/boolean.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/box.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/brin.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/btree_index.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/case.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/char.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/char_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/char_2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/circle.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/cluster.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/collate.linux.utf8.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/collate.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/combocid.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/comments.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/conversion.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/copy2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/copydml.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/copyselect.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_aggregate.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_am.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_cast.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_function_3.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_index.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_misc.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_operator.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_table.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_table_like.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_type.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_view.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/date.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/dbsize.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/delete.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/dependency.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/domain.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/drop_if_exists.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/drop_operator.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/enum.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/equivclass.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/errors.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/event_trigger.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/float4-exp-three-digits.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/float4.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/float8-exp-three-digits-win32.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/float8-small-is-zero.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/float8-small-is-zero_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/float8.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/foreign_data.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/foreign_key.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/functional_deps.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/geometry.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/geometry_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/geometry_2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/gin.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/gist.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/groupingsets.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/guc.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/hash_index.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/horology.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/hs_standby_allowed.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/hs_standby_check.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/hs_standby_disallowed.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/hs_standby_functions.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/indirect_toast.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/inet.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/inherit.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/init_privs.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/insert.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/insert_conflict.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/int2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/int4.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/int8-exp-three-digits.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/int8.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/interval.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/join.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/json.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/json_encoding.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/json_encoding_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/jsonb.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/limit.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/line.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/lock.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/lseg.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/macaddr.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/matview.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/misc_functions.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/money.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/name.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/namespace.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/numeric.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/numeric_big.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/numerology.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/numerology_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/object_address.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/oid.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/oidjoins.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/opr_sanity.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/path.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/pg_lsn.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/plancache.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/plpgsql.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/point.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/polygon.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/polymorphism.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/portals.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/portals_p2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/prepare.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/prepared_xacts.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/prepared_xacts_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/privileges.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/psql.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/psql_crosstab.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/random.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/rangefuncs.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/rangetypes.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/regex.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/regproc.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/reltime.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/replica_identity.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/returning.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/roleattributes.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/rolenames.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/rowsecurity.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/rowtypes.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/rules.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/sanity_check.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/security_label.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_distinct.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_distinct_on.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_having.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_having_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_having_2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_implicit.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_implicit_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_implicit_2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_into.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_parallel.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_views.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_views_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/sequence.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/sequence_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/spgist.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/stats.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/strings.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/subselect.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/tablesample.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/temp.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/text.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/time.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/timestamp.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/timestamptz.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/timetz.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/tinterval.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/transactions.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/triggers.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/truncate.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/tsdicts.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/tsearch.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/tstypes.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/txid.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/type_sanity.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/typed_table.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/union.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/updatable_views.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/update.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/uuid.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/vacuum.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/varchar.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/varchar_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/varchar_2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/window.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/with.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/without_oid.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/xml.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/xml_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/xml_2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/xmlmap.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/xmlmap_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/input/constraints.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/input/copy.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/input/create_function_1.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/input/create_function_2.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/input/largeobject.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/input/misc.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/input/tablespace.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/output/constraints.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/output/copy.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/output/create_function_1.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/output/create_function_2.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/output/largeobject.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/output/largeobject_1.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/output/misc.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/output/tablespace.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/parallel_schedule
file path=usr/postgres/9.6/lib/$(MACH64)/regress/resultmap
file path=usr/postgres/9.6/lib/$(MACH64)/regress/serial_schedule
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/abstime.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/advisory_lock.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/aggregates.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/alter_generic.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/alter_operator.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/alter_table.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/amutils.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/arrays.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/async.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/bit.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/bitmapops.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/boolean.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/box.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/brin.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/btree_index.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/case.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/char.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/circle.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/cluster.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/collate.linux.utf8.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/collate.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/combocid.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/comments.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/conversion.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/copy2.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/copydml.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/copyselect.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_aggregate.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_am.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_cast.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_function_3.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_index.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_misc.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_operator.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_table.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_table_like.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_type.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_view.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/date.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/dbsize.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/delete.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/dependency.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/domain.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/drop_if_exists.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/drop_operator.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/enum.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/equivclass.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/errors.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/event_trigger.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/float4.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/float8.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/foreign_data.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/foreign_key.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/functional_deps.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/geometry.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/gin.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/gist.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/groupingsets.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/guc.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/hash_index.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/horology.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/hs_primary_extremes.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/hs_primary_setup.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/hs_standby_allowed.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/hs_standby_check.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/hs_standby_disallowed.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/hs_standby_functions.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/indirect_toast.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/inet.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/inherit.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/init_privs.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/insert.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/insert_conflict.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/int2.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/int4.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/int8.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/interval.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/join.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/json.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/json_encoding.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/jsonb.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/limit.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/line.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/lock.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/lseg.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/macaddr.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/matview.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/misc_functions.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/money.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/name.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/namespace.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/numeric.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/numeric_big.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/numerology.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/object_address.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/oid.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/oidjoins.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/opr_sanity.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/path.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/pg_lsn.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/plancache.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/plpgsql.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/point.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/polygon.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/polymorphism.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/portals.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/portals_p2.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/prepare.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/prepared_xacts.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/privileges.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/psql.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/psql_crosstab.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/random.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/rangefuncs.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/rangetypes.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/regex.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/regproc.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/reltime.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/replica_identity.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/returning.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/roleattributes.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/rolenames.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/rowsecurity.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/rowtypes.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/rules.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/sanity_check.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/security_label.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/select.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/select_distinct.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/select_distinct_on.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/select_having.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/select_implicit.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/select_into.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/select_parallel.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/select_views.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/sequence.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/spgist.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/stats.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/strings.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/subselect.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/tablesample.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/temp.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/text.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/time.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/timestamp.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/timestamptz.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/timetz.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/tinterval.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/transactions.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/triggers.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/truncate.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/tsdicts.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/tsearch.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/tstypes.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/txid.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/type_sanity.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/typed_table.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/union.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/updatable_views.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/update.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/uuid.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/vacuum.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/varchar.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/window.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/with.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/without_oid.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/xml.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/xmlmap.sql
file path=usr/postgres/9.6/lib/$(MACH64)/seg.so
file path=usr/postgres/9.6/lib/$(MACH64)/sslinfo.so
file path=usr/postgres/9.6/lib/$(MACH64)/tablefunc.so
file path=usr/postgres/9.6/lib/$(MACH64)/tcn.so
file path=usr/postgres/9.6/lib/$(MACH64)/test_decoding.so
file path=usr/postgres/9.6/lib/$(MACH64)/timetravel.so
file path=usr/postgres/9.6/lib/$(MACH64)/tsearch2.so
file path=usr/postgres/9.6/lib/$(MACH64)/tsm_system_rows.so
file path=usr/postgres/9.6/lib/$(MACH64)/tsm_system_time.so
file path=usr/postgres/9.6/lib/$(MACH64)/unaccent.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_ascii.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_big5.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_cyrillic.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_euc2004.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_euc_cn.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_euc_jp.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_euc_kr.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_euc_tw.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_gb18030.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_gbk.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_iso8859.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_iso8859_1.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_johab.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_sjis.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_sjis2004.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_uhc.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_win.so
file path=usr/postgres/9.6/lib/_int.so
file path=usr/postgres/9.6/lib/adminpack.so
file path=usr/postgres/9.6/lib/ascii_and_mic.so
file path=usr/postgres/9.6/lib/auth_delay.so
file path=usr/postgres/9.6/lib/auto_explain.so
file path=usr/postgres/9.6/lib/autoinc.so
file path=usr/postgres/9.6/lib/bloom.so
file path=usr/postgres/9.6/lib/btree_gin.so
file path=usr/postgres/9.6/lib/btree_gist.so
file path=usr/postgres/9.6/lib/chkpass.so
file path=usr/postgres/9.6/lib/citext.so
file path=usr/postgres/9.6/lib/cube.so
file path=usr/postgres/9.6/lib/cyrillic_and_mic.so
file path=usr/postgres/9.6/lib/dblink.so
file path=usr/postgres/9.6/lib/dict_int.so
file path=usr/postgres/9.6/lib/dict_snowball.so
file path=usr/postgres/9.6/lib/dict_xsyn.so
file path=usr/postgres/9.6/lib/earthdistance.so
file path=usr/postgres/9.6/lib/euc2004_sjis2004.so
file path=usr/postgres/9.6/lib/euc_cn_and_mic.so
file path=usr/postgres/9.6/lib/euc_jp_and_sjis.so
file path=usr/postgres/9.6/lib/euc_kr_and_mic.so
file path=usr/postgres/9.6/lib/euc_tw_and_big5.so
file path=usr/postgres/9.6/lib/file_fdw.so
file path=usr/postgres/9.6/lib/fuzzystrmatch.so
file path=usr/postgres/9.6/lib/hstore.so
file path=usr/postgres/9.6/lib/hstore_plperl.so
file path=usr/postgres/9.6/lib/insert_username.so
file path=usr/postgres/9.6/lib/isn.so
file path=usr/postgres/9.6/lib/latin2_and_win1250.so
file path=usr/postgres/9.6/lib/latin_and_mic.so
file path=usr/postgres/9.6/lib/libecpg.a
link path=usr/postgres/9.6/lib/libecpg.so target=libecpg.so.6.8
link path=usr/postgres/9.6/lib/libecpg.so.6 target=libecpg.so.6.8
file path=usr/postgres/9.6/lib/libecpg.so.6.8
file path=usr/postgres/9.6/lib/libecpg_compat.a
link path=usr/postgres/9.6/lib/libecpg_compat.so target=libecpg_compat.so.3.8
link path=usr/postgres/9.6/lib/libecpg_compat.so.3 target=libecpg_compat.so.3.8
file path=usr/postgres/9.6/lib/libecpg_compat.so.3.8
file path=usr/postgres/9.6/lib/libpgcommon.a
file path=usr/postgres/9.6/lib/libpgfeutils.a
file path=usr/postgres/9.6/lib/libpgport.a
file path=usr/postgres/9.6/lib/libpgtypes.a
link path=usr/postgres/9.6/lib/libpgtypes.so target=libpgtypes.so.3.7
link path=usr/postgres/9.6/lib/libpgtypes.so.3 target=libpgtypes.so.3.7
file path=usr/postgres/9.6/lib/libpgtypes.so.3.7
file path=usr/postgres/9.6/lib/libpq.a
link path=usr/postgres/9.6/lib/libpq.so target=libpq.so.5.9
link path=usr/postgres/9.6/lib/libpq.so.5 target=libpq.so.5.9
file path=usr/postgres/9.6/lib/libpq.so.5.9
file path=usr/postgres/9.6/lib/libpqwalreceiver.so
file path=usr/postgres/9.6/lib/lo.so
file path=usr/postgres/9.6/lib/ltree.so
file path=usr/postgres/9.6/lib/moddatetime.so
file path=usr/postgres/9.6/lib/pageinspect.so
file path=usr/postgres/9.6/lib/passwordcheck.so
file path=usr/postgres/9.6/lib/pg_buffercache.so
file path=usr/postgres/9.6/lib/pg_freespacemap.so
file path=usr/postgres/9.6/lib/pg_prewarm.so
file path=usr/postgres/9.6/lib/pg_stat_statements.so
file path=usr/postgres/9.6/lib/pg_trgm.so
file path=usr/postgres/9.6/lib/pg_visibility.so
file path=usr/postgres/9.6/lib/pgcrypto.so
file path=usr/postgres/9.6/lib/pgrowlocks.so
file path=usr/postgres/9.6/lib/pgstattuple.so
file path=usr/postgres/9.6/lib/pgxml.so
file path=usr/postgres/9.6/lib/pgxs/config/install-sh
file path=usr/postgres/9.6/lib/pgxs/config/missing
file path=usr/postgres/9.6/lib/pgxs/src/Makefile.global
file path=usr/postgres/9.6/lib/pgxs/src/Makefile.port
file path=usr/postgres/9.6/lib/pgxs/src/Makefile.shlib
file path=usr/postgres/9.6/lib/pgxs/src/makefiles/pgxs.mk
file path=usr/postgres/9.6/lib/pgxs/src/nls-global.mk
file path=usr/postgres/9.6/lib/pgxs/src/test/regress/pg_regress
file path=usr/postgres/9.6/lib/pkgconfig/libecpg.pc
file path=usr/postgres/9.6/lib/pkgconfig/libecpg_compat.pc
file path=usr/postgres/9.6/lib/pkgconfig/libpgtypes.pc
file path=usr/postgres/9.6/lib/pkgconfig/libpq.pc
file path=usr/postgres/9.6/lib/plperl.so
file path=usr/postgres/9.6/lib/plpgsql.so
file path=usr/postgres/9.6/lib/postgres_fdw.so
file path=usr/postgres/9.6/lib/refint.so
file path=usr/postgres/9.6/lib/seg.so
file path=usr/postgres/9.6/lib/sslinfo.so
file path=usr/postgres/9.6/lib/tablefunc.so
file path=usr/postgres/9.6/lib/tcn.so
file path=usr/postgres/9.6/lib/test_decoding.so
file path=usr/postgres/9.6/lib/timetravel.so
file path=usr/postgres/9.6/lib/tsearch2.so
file path=usr/postgres/9.6/lib/tsm_system_rows.so
file path=usr/postgres/9.6/lib/tsm_system_time.so
file path=usr/postgres/9.6/lib/unaccent.so
file path=usr/postgres/9.6/lib/utf8_and_ascii.so
file path=usr/postgres/9.6/lib/utf8_and_big5.so
file path=usr/postgres/9.6/lib/utf8_and_cyrillic.so
file path=usr/postgres/9.6/lib/utf8_and_euc2004.so
file path=usr/postgres/9.6/lib/utf8_and_euc_cn.so
file path=usr/postgres/9.6/lib/utf8_and_euc_jp.so
file path=usr/postgres/9.6/lib/utf8_and_euc_kr.so
file path=usr/postgres/9.6/lib/utf8_and_euc_tw.so
file path=usr/postgres/9.6/lib/utf8_and_gb18030.so
file path=usr/postgres/9.6/lib/utf8_and_gbk.so
file path=usr/postgres/9.6/lib/utf8_and_iso8859.so
file path=usr/postgres/9.6/lib/utf8_and_iso8859_1.so
file path=usr/postgres/9.6/lib/utf8_and_johab.so
file path=usr/postgres/9.6/lib/utf8_and_sjis.so
file path=usr/postgres/9.6/lib/utf8_and_sjis2004.so
file path=usr/postgres/9.6/lib/utf8_and_uhc.so
file path=usr/postgres/9.6/lib/utf8_and_win.so
file path=usr/postgres/9.6/man/man1/clusterdb.1
file path=usr/postgres/9.6/man/man1/createdb.1
file path=usr/postgres/9.6/man/man1/createlang.1
file path=usr/postgres/9.6/man/man1/createuser.1
file path=usr/postgres/9.6/man/man1/dropdb.1
file path=usr/postgres/9.6/man/man1/droplang.1
file path=usr/postgres/9.6/man/man1/dropuser.1
file path=usr/postgres/9.6/man/man1/ecpg.1
file path=usr/postgres/9.6/man/man1/initdb.1
file path=usr/postgres/9.6/man/man1/oid2name.1
file path=usr/postgres/9.6/man/man1/pg_archivecleanup.1
file path=usr/postgres/9.6/man/man1/pg_basebackup.1
file path=usr/postgres/9.6/man/man1/pg_config.1
file path=usr/postgres/9.6/man/man1/pg_controldata.1
file path=usr/postgres/9.6/man/man1/pg_ctl.1
file path=usr/postgres/9.6/man/man1/pg_dump.1
file path=usr/postgres/9.6/man/man1/pg_dumpall.1
file path=usr/postgres/9.6/man/man1/pg_isready.1
file path=usr/postgres/9.6/man/man1/pg_receivexlog.1
file path=usr/postgres/9.6/man/man1/pg_recvlogical.1
file path=usr/postgres/9.6/man/man1/pg_resetxlog.1
file path=usr/postgres/9.6/man/man1/pg_restore.1
file path=usr/postgres/9.6/man/man1/pg_rewind.1
file path=usr/postgres/9.6/man/man1/pg_standby.1
file path=usr/postgres/9.6/man/man1/pg_test_fsync.1
file path=usr/postgres/9.6/man/man1/pg_test_timing.1
file path=usr/postgres/9.6/man/man1/pg_upgrade.1
file path=usr/postgres/9.6/man/man1/pg_xlogdump.1
file path=usr/postgres/9.6/man/man1/pgbench.1
file path=usr/postgres/9.6/man/man1/postgres.1
file path=usr/postgres/9.6/man/man1/postmaster.1
file path=usr/postgres/9.6/man/man1/psql.1
file path=usr/postgres/9.6/man/man1/reindexdb.1
file path=usr/postgres/9.6/man/man1/vacuumdb.1
file path=usr/postgres/9.6/man/man1/vacuumlo.1
file path=usr/postgres/9.6/man/man3/SPI_connect.3
file path=usr/postgres/9.6/man/man3/SPI_copytuple.3
file path=usr/postgres/9.6/man/man3/SPI_cursor_close.3
file path=usr/postgres/9.6/man/man3/SPI_cursor_fetch.3
file path=usr/postgres/9.6/man/man3/SPI_cursor_find.3
file path=usr/postgres/9.6/man/man3/SPI_cursor_move.3
file path=usr/postgres/9.6/man/man3/SPI_cursor_open.3
file path=usr/postgres/9.6/man/man3/SPI_cursor_open_with_args.3
file path=usr/postgres/9.6/man/man3/SPI_cursor_open_with_paramlist.3
file path=usr/postgres/9.6/man/man3/SPI_exec.3
file path=usr/postgres/9.6/man/man3/SPI_execp.3
file path=usr/postgres/9.6/man/man3/SPI_execute.3
file path=usr/postgres/9.6/man/man3/SPI_execute_plan.3
file path=usr/postgres/9.6/man/man3/SPI_execute_plan_with_paramlist.3
file path=usr/postgres/9.6/man/man3/SPI_execute_with_args.3
file path=usr/postgres/9.6/man/man3/SPI_finish.3
file path=usr/postgres/9.6/man/man3/SPI_fname.3
file path=usr/postgres/9.6/man/man3/SPI_fnumber.3
file path=usr/postgres/9.6/man/man3/SPI_freeplan.3
file path=usr/postgres/9.6/man/man3/SPI_freetuple.3
file path=usr/postgres/9.6/man/man3/SPI_freetuptable.3
file path=usr/postgres/9.6/man/man3/SPI_getargcount.3
file path=usr/postgres/9.6/man/man3/SPI_getargtypeid.3
file path=usr/postgres/9.6/man/man3/SPI_getbinval.3
file path=usr/postgres/9.6/man/man3/SPI_getnspname.3
file path=usr/postgres/9.6/man/man3/SPI_getrelname.3
file path=usr/postgres/9.6/man/man3/SPI_gettype.3
file path=usr/postgres/9.6/man/man3/SPI_gettypeid.3
file path=usr/postgres/9.6/man/man3/SPI_getvalue.3
file path=usr/postgres/9.6/man/man3/SPI_is_cursor_plan.3
file path=usr/postgres/9.6/man/man3/SPI_keepplan.3
file path=usr/postgres/9.6/man/man3/SPI_modifytuple.3
file path=usr/postgres/9.6/man/man3/SPI_palloc.3
file path=usr/postgres/9.6/man/man3/SPI_pfree.3
file path=usr/postgres/9.6/man/man3/SPI_pop.3
file path=usr/postgres/9.6/man/man3/SPI_prepare.3
file path=usr/postgres/9.6/man/man3/SPI_prepare_cursor.3
file path=usr/postgres/9.6/man/man3/SPI_prepare_params.3
file path=usr/postgres/9.6/man/man3/SPI_push.3
file path=usr/postgres/9.6/man/man3/SPI_repalloc.3
file path=usr/postgres/9.6/man/man3/SPI_returntuple.3
file path=usr/postgres/9.6/man/man3/SPI_saveplan.3
file path=usr/postgres/9.6/man/man3/SPI_scroll_cursor_fetch.3
file path=usr/postgres/9.6/man/man3/SPI_scroll_cursor_move.3
file path=usr/postgres/9.6/man/man3/dblink.3
file path=usr/postgres/9.6/man/man3/dblink_build_sql_delete.3
file path=usr/postgres/9.6/man/man3/dblink_build_sql_insert.3
file path=usr/postgres/9.6/man/man3/dblink_build_sql_update.3
file path=usr/postgres/9.6/man/man3/dblink_cancel_query.3
file path=usr/postgres/9.6/man/man3/dblink_close.3
file path=usr/postgres/9.6/man/man3/dblink_connect.3
file path=usr/postgres/9.6/man/man3/dblink_connect_u.3
file path=usr/postgres/9.6/man/man3/dblink_disconnect.3
file path=usr/postgres/9.6/man/man3/dblink_error_message.3
file path=usr/postgres/9.6/man/man3/dblink_exec.3
file path=usr/postgres/9.6/man/man3/dblink_fetch.3
file path=usr/postgres/9.6/man/man3/dblink_get_connections.3
file path=usr/postgres/9.6/man/man3/dblink_get_notify.3
file path=usr/postgres/9.6/man/man3/dblink_get_pkey.3
file path=usr/postgres/9.6/man/man3/dblink_get_result.3
file path=usr/postgres/9.6/man/man3/dblink_is_busy.3
file path=usr/postgres/9.6/man/man3/dblink_open.3
file path=usr/postgres/9.6/man/man3/dblink_send_query.3
file path=usr/postgres/9.6/man/man5/ABORT.5sql
file path=usr/postgres/9.6/man/man5/ALTER_AGGREGATE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_COLLATION.5sql
file path=usr/postgres/9.6/man/man5/ALTER_CONVERSION.5sql
file path=usr/postgres/9.6/man/man5/ALTER_DATABASE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_DEFAULT_PRIVILEGES.5sql
file path=usr/postgres/9.6/man/man5/ALTER_DOMAIN.5sql
file path=usr/postgres/9.6/man/man5/ALTER_EVENT_TRIGGER.5sql
file path=usr/postgres/9.6/man/man5/ALTER_EXTENSION.5sql
file path=usr/postgres/9.6/man/man5/ALTER_FOREIGN_DATA_WRAPPER.5sql
file path=usr/postgres/9.6/man/man5/ALTER_FOREIGN_TABLE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_FUNCTION.5sql
file path=usr/postgres/9.6/man/man5/ALTER_GROUP.5sql
file path=usr/postgres/9.6/man/man5/ALTER_INDEX.5sql
file path=usr/postgres/9.6/man/man5/ALTER_LANGUAGE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_LARGE_OBJECT.5sql
file path=usr/postgres/9.6/man/man5/ALTER_MATERIALIZED_VIEW.5sql
file path=usr/postgres/9.6/man/man5/ALTER_OPERATOR.5sql
file path=usr/postgres/9.6/man/man5/ALTER_OPERATOR_CLASS.5sql
file path=usr/postgres/9.6/man/man5/ALTER_OPERATOR_FAMILY.5sql
file path=usr/postgres/9.6/man/man5/ALTER_POLICY.5sql
file path=usr/postgres/9.6/man/man5/ALTER_ROLE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_RULE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_SCHEMA.5sql
file path=usr/postgres/9.6/man/man5/ALTER_SEQUENCE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_SERVER.5sql
file path=usr/postgres/9.6/man/man5/ALTER_SYSTEM.5sql
file path=usr/postgres/9.6/man/man5/ALTER_TABLE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_TABLESPACE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_TEXT_SEARCH_CONFIGURATION.5sql
file path=usr/postgres/9.6/man/man5/ALTER_TEXT_SEARCH_DICTIONARY.5sql
file path=usr/postgres/9.6/man/man5/ALTER_TEXT_SEARCH_PARSER.5sql
file path=usr/postgres/9.6/man/man5/ALTER_TEXT_SEARCH_TEMPLATE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_TRIGGER.5sql
file path=usr/postgres/9.6/man/man5/ALTER_TYPE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_USER.5sql
file path=usr/postgres/9.6/man/man5/ALTER_USER_MAPPING.5sql
file path=usr/postgres/9.6/man/man5/ALTER_VIEW.5sql
file path=usr/postgres/9.6/man/man5/ANALYZE.5sql
file path=usr/postgres/9.6/man/man5/BEGIN.5sql
file path=usr/postgres/9.6/man/man5/CHECKPOINT.5sql
file path=usr/postgres/9.6/man/man5/CLOSE.5sql
file path=usr/postgres/9.6/man/man5/CLUSTER.5sql
file path=usr/postgres/9.6/man/man5/COMMENT.5sql
file path=usr/postgres/9.6/man/man5/COMMIT.5sql
file path=usr/postgres/9.6/man/man5/COMMIT_PREPARED.5sql
file path=usr/postgres/9.6/man/man5/COPY.5sql
file path=usr/postgres/9.6/man/man5/CREATE_ACCESS_METHOD.5sql
file path=usr/postgres/9.6/man/man5/CREATE_AGGREGATE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_CAST.5sql
file path=usr/postgres/9.6/man/man5/CREATE_COLLATION.5sql
file path=usr/postgres/9.6/man/man5/CREATE_CONVERSION.5sql
file path=usr/postgres/9.6/man/man5/CREATE_DATABASE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_DOMAIN.5sql
file path=usr/postgres/9.6/man/man5/CREATE_EVENT_TRIGGER.5sql
file path=usr/postgres/9.6/man/man5/CREATE_EXTENSION.5sql
file path=usr/postgres/9.6/man/man5/CREATE_FOREIGN_DATA_WRAPPER.5sql
file path=usr/postgres/9.6/man/man5/CREATE_FOREIGN_TABLE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_FUNCTION.5sql
file path=usr/postgres/9.6/man/man5/CREATE_GROUP.5sql
file path=usr/postgres/9.6/man/man5/CREATE_INDEX.5sql
file path=usr/postgres/9.6/man/man5/CREATE_LANGUAGE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_MATERIALIZED_VIEW.5sql
file path=usr/postgres/9.6/man/man5/CREATE_OPERATOR.5sql
file path=usr/postgres/9.6/man/man5/CREATE_OPERATOR_CLASS.5sql
file path=usr/postgres/9.6/man/man5/CREATE_OPERATOR_FAMILY.5sql
file path=usr/postgres/9.6/man/man5/CREATE_POLICY.5sql
file path=usr/postgres/9.6/man/man5/CREATE_ROLE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_RULE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_SCHEMA.5sql
file path=usr/postgres/9.6/man/man5/CREATE_SEQUENCE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_SERVER.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TABLE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TABLESPACE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TABLE_AS.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TEXT_SEARCH_CONFIGURATION.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TEXT_SEARCH_DICTIONARY.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TEXT_SEARCH_PARSER.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TEXT_SEARCH_TEMPLATE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TRANSFORM.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TRIGGER.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TYPE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_USER.5sql
file path=usr/postgres/9.6/man/man5/CREATE_USER_MAPPING.5sql
file path=usr/postgres/9.6/man/man5/CREATE_VIEW.5sql
file path=usr/postgres/9.6/man/man5/DEALLOCATE.5sql
file path=usr/postgres/9.6/man/man5/DECLARE.5sql
file path=usr/postgres/9.6/man/man5/DELETE.5sql
file path=usr/postgres/9.6/man/man5/DISCARD.5sql
file path=usr/postgres/9.6/man/man5/DO.5sql
file path=usr/postgres/9.6/man/man5/DROP_ACCESS_METHOD.5sql
file path=usr/postgres/9.6/man/man5/DROP_AGGREGATE.5sql
file path=usr/postgres/9.6/man/man5/DROP_CAST.5sql
file path=usr/postgres/9.6/man/man5/DROP_COLLATION.5sql
file path=usr/postgres/9.6/man/man5/DROP_CONVERSION.5sql
file path=usr/postgres/9.6/man/man5/DROP_DATABASE.5sql
file path=usr/postgres/9.6/man/man5/DROP_DOMAIN.5sql
file path=usr/postgres/9.6/man/man5/DROP_EVENT_TRIGGER.5sql
file path=usr/postgres/9.6/man/man5/DROP_EXTENSION.5sql
file path=usr/postgres/9.6/man/man5/DROP_FOREIGN_DATA_WRAPPER.5sql
file path=usr/postgres/9.6/man/man5/DROP_FOREIGN_TABLE.5sql
file path=usr/postgres/9.6/man/man5/DROP_FUNCTION.5sql
file path=usr/postgres/9.6/man/man5/DROP_GROUP.5sql
file path=usr/postgres/9.6/man/man5/DROP_INDEX.5sql
file path=usr/postgres/9.6/man/man5/DROP_LANGUAGE.5sql
file path=usr/postgres/9.6/man/man5/DROP_MATERIALIZED_VIEW.5sql
file path=usr/postgres/9.6/man/man5/DROP_OPERATOR.5sql
file path=usr/postgres/9.6/man/man5/DROP_OPERATOR_CLASS.5sql
file path=usr/postgres/9.6/man/man5/DROP_OPERATOR_FAMILY.5sql
file path=usr/postgres/9.6/man/man5/DROP_OWNED.5sql
file path=usr/postgres/9.6/man/man5/DROP_POLICY.5sql
file path=usr/postgres/9.6/man/man5/DROP_ROLE.5sql
file path=usr/postgres/9.6/man/man5/DROP_RULE.5sql
file path=usr/postgres/9.6/man/man5/DROP_SCHEMA.5sql
file path=usr/postgres/9.6/man/man5/DROP_SEQUENCE.5sql
file path=usr/postgres/9.6/man/man5/DROP_SERVER.5sql
file path=usr/postgres/9.6/man/man5/DROP_TABLE.5sql
file path=usr/postgres/9.6/man/man5/DROP_TABLESPACE.5sql
file path=usr/postgres/9.6/man/man5/DROP_TEXT_SEARCH_CONFIGURATION.5sql
file path=usr/postgres/9.6/man/man5/DROP_TEXT_SEARCH_DICTIONARY.5sql
file path=usr/postgres/9.6/man/man5/DROP_TEXT_SEARCH_PARSER.5sql
file path=usr/postgres/9.6/man/man5/DROP_TEXT_SEARCH_TEMPLATE.5sql
file path=usr/postgres/9.6/man/man5/DROP_TRANSFORM.5sql
file path=usr/postgres/9.6/man/man5/DROP_TRIGGER.5sql
file path=usr/postgres/9.6/man/man5/DROP_TYPE.5sql
file path=usr/postgres/9.6/man/man5/DROP_USER.5sql
file path=usr/postgres/9.6/man/man5/DROP_USER_MAPPING.5sql
file path=usr/postgres/9.6/man/man5/DROP_VIEW.5sql
file path=usr/postgres/9.6/man/man5/END.5sql
file path=usr/postgres/9.6/man/man5/EXECUTE.5sql
file path=usr/postgres/9.6/man/man5/EXPLAIN.5sql
file path=usr/postgres/9.6/man/man5/FETCH.5sql
file path=usr/postgres/9.6/man/man5/GRANT.5sql
file path=usr/postgres/9.6/man/man5/IMPORT_FOREIGN_SCHEMA.5sql
file path=usr/postgres/9.6/man/man5/INSERT.5sql
file path=usr/postgres/9.6/man/man5/LISTEN.5sql
file path=usr/postgres/9.6/man/man5/LOAD.5sql
file path=usr/postgres/9.6/man/man5/LOCK.5sql
file path=usr/postgres/9.6/man/man5/MOVE.5sql
file path=usr/postgres/9.6/man/man5/NOTIFY.5sql
file path=usr/postgres/9.6/man/man5/PREPARE.5sql
file path=usr/postgres/9.6/man/man5/PREPARE_TRANSACTION.5sql
file path=usr/postgres/9.6/man/man5/REASSIGN_OWNED.5sql
file path=usr/postgres/9.6/man/man5/REFRESH_MATERIALIZED_VIEW.5sql
file path=usr/postgres/9.6/man/man5/REINDEX.5sql
file path=usr/postgres/9.6/man/man5/RELEASE_SAVEPOINT.5sql
file path=usr/postgres/9.6/man/man5/RESET.5sql
file path=usr/postgres/9.6/man/man5/REVOKE.5sql
file path=usr/postgres/9.6/man/man5/ROLLBACK.5sql
file path=usr/postgres/9.6/man/man5/ROLLBACK_PREPARED.5sql
file path=usr/postgres/9.6/man/man5/ROLLBACK_TO_SAVEPOINT.5sql
file path=usr/postgres/9.6/man/man5/SAVEPOINT.5sql
file path=usr/postgres/9.6/man/man5/SECURITY_LABEL.5sql
file path=usr/postgres/9.6/man/man5/SELECT.5sql
file path=usr/postgres/9.6/man/man5/SELECT_INTO.5sql
file path=usr/postgres/9.6/man/man5/SET.5sql
file path=usr/postgres/9.6/man/man5/SET_CONSTRAINTS.5sql
file path=usr/postgres/9.6/man/man5/SET_ROLE.5sql
file path=usr/postgres/9.6/man/man5/SET_SESSION_AUTHORIZATION.5sql
file path=usr/postgres/9.6/man/man5/SET_TRANSACTION.5sql
file path=usr/postgres/9.6/man/man5/SHOW.5sql
file path=usr/postgres/9.6/man/man5/START_TRANSACTION.5sql
file path=usr/postgres/9.6/man/man5/TABLE.5sql
file path=usr/postgres/9.6/man/man5/TRUNCATE.5sql
file path=usr/postgres/9.6/man/man5/UNLISTEN.5sql
file path=usr/postgres/9.6/man/man5/UPDATE.5sql
file path=usr/postgres/9.6/man/man5/VACUUM.5sql
file path=usr/postgres/9.6/man/man5/VALUES.5sql
file path=usr/postgres/9.6/man/man5/WITH.5sql
file path=usr/postgres/9.6/share/conversion_create.sql
file path=usr/postgres/9.6/share/extension/adminpack--1.0.sql
file path=usr/postgres/9.6/share/extension/adminpack.control
file path=usr/postgres/9.6/share/extension/autoinc--1.0.sql
file path=usr/postgres/9.6/share/extension/autoinc--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/autoinc.control
file path=usr/postgres/9.6/share/extension/bloom--1.0.sql
file path=usr/postgres/9.6/share/extension/bloom.control
file path=usr/postgres/9.6/share/extension/btree_gin--1.0.sql
file path=usr/postgres/9.6/share/extension/btree_gin--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/btree_gin.control
file path=usr/postgres/9.6/share/extension/btree_gist--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/btree_gist--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/btree_gist--1.2.sql
file path=usr/postgres/9.6/share/extension/btree_gist--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/btree_gist.control
file path=usr/postgres/9.6/share/extension/chkpass--1.0.sql
file path=usr/postgres/9.6/share/extension/chkpass--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/chkpass.control
file path=usr/postgres/9.6/share/extension/citext--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/citext--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/citext--1.2--1.3.sql
file path=usr/postgres/9.6/share/extension/citext--1.3.sql
file path=usr/postgres/9.6/share/extension/citext--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/citext.control
file path=usr/postgres/9.6/share/extension/cube--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/cube--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/cube--1.2.sql
file path=usr/postgres/9.6/share/extension/cube--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/cube.control
file path=usr/postgres/9.6/share/extension/dblink--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/dblink--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/dblink--1.2.sql
file path=usr/postgres/9.6/share/extension/dblink--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/dblink.control
file path=usr/postgres/9.6/share/extension/dict_int--1.0.sql
file path=usr/postgres/9.6/share/extension/dict_int--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/dict_int.control
file path=usr/postgres/9.6/share/extension/dict_xsyn--1.0.sql
file path=usr/postgres/9.6/share/extension/dict_xsyn--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/dict_xsyn.control
file path=usr/postgres/9.6/share/extension/earthdistance--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/earthdistance--1.1.sql
file path=usr/postgres/9.6/share/extension/earthdistance--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/earthdistance.control
file path=usr/postgres/9.6/share/extension/file_fdw--1.0.sql
file path=usr/postgres/9.6/share/extension/file_fdw.control
file path=usr/postgres/9.6/share/extension/fuzzystrmatch--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/fuzzystrmatch--1.1.sql
file path=usr/postgres/9.6/share/extension/fuzzystrmatch--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/fuzzystrmatch.control
file path=usr/postgres/9.6/share/extension/hstore--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/hstore--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/hstore--1.2--1.3.sql
file path=usr/postgres/9.6/share/extension/hstore--1.3--1.4.sql
file path=usr/postgres/9.6/share/extension/hstore--1.4.sql
file path=usr/postgres/9.6/share/extension/hstore--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/hstore.control
file path=usr/postgres/9.6/share/extension/hstore_plperl--1.0.sql
file path=usr/postgres/9.6/share/extension/hstore_plperl.control
file path=usr/postgres/9.6/share/extension/hstore_plperlu--1.0.sql
file path=usr/postgres/9.6/share/extension/hstore_plperlu.control
file path=usr/postgres/9.6/share/extension/hstore_plpython2u--1.0.sql
file path=usr/postgres/9.6/share/extension/hstore_plpython2u.control
file path=usr/postgres/9.6/share/extension/hstore_plpython3u--1.0.sql
file path=usr/postgres/9.6/share/extension/hstore_plpython3u.control
file path=usr/postgres/9.6/share/extension/hstore_plpythonu--1.0.sql
file path=usr/postgres/9.6/share/extension/hstore_plpythonu.control
file path=usr/postgres/9.6/share/extension/insert_username--1.0.sql
file path=usr/postgres/9.6/share/extension/insert_username--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/insert_username.control
file path=usr/postgres/9.6/share/extension/intagg--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/intagg--1.1.sql
file path=usr/postgres/9.6/share/extension/intagg--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/intagg.control
file path=usr/postgres/9.6/share/extension/intarray--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/intarray--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/intarray--1.2.sql
file path=usr/postgres/9.6/share/extension/intarray--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/intarray.control
file path=usr/postgres/9.6/share/extension/isn--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/isn--1.1.sql
file path=usr/postgres/9.6/share/extension/isn--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/isn.control
file path=usr/postgres/9.6/share/extension/lo--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/lo--1.1.sql
file path=usr/postgres/9.6/share/extension/lo--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/lo.control
file path=usr/postgres/9.6/share/extension/ltree--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/ltree--1.1.sql
file path=usr/postgres/9.6/share/extension/ltree--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/ltree.control
file path=usr/postgres/9.6/share/extension/ltree_plpython2u--1.0.sql
file path=usr/postgres/9.6/share/extension/ltree_plpython2u.control
file path=usr/postgres/9.6/share/extension/ltree_plpython3u--1.0.sql
file path=usr/postgres/9.6/share/extension/ltree_plpython3u.control
file path=usr/postgres/9.6/share/extension/ltree_plpythonu--1.0.sql
file path=usr/postgres/9.6/share/extension/ltree_plpythonu.control
file path=usr/postgres/9.6/share/extension/moddatetime--1.0.sql
file path=usr/postgres/9.6/share/extension/moddatetime--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/moddatetime.control
file path=usr/postgres/9.6/share/extension/pageinspect--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pageinspect--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/pageinspect--1.2--1.3.sql
file path=usr/postgres/9.6/share/extension/pageinspect--1.3--1.4.sql
file path=usr/postgres/9.6/share/extension/pageinspect--1.4--1.5.sql
file path=usr/postgres/9.6/share/extension/pageinspect--1.5.sql
file path=usr/postgres/9.6/share/extension/pageinspect--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pageinspect.control
file path=usr/postgres/9.6/share/extension/pg_buffercache--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_buffercache--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/pg_buffercache--1.2.sql
file path=usr/postgres/9.6/share/extension/pg_buffercache--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pg_buffercache.control
file path=usr/postgres/9.6/share/extension/pg_freespacemap--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_freespacemap--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_freespacemap--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pg_freespacemap.control
file path=usr/postgres/9.6/share/extension/pg_prewarm--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_prewarm--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_prewarm.control
file path=usr/postgres/9.6/share/extension/pg_stat_statements--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_stat_statements--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/pg_stat_statements--1.2--1.3.sql
file path=usr/postgres/9.6/share/extension/pg_stat_statements--1.3--1.4.sql
file path=usr/postgres/9.6/share/extension/pg_stat_statements--1.4.sql
file path=usr/postgres/9.6/share/extension/pg_stat_statements--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pg_stat_statements.control
file path=usr/postgres/9.6/share/extension/pg_trgm--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_trgm--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/pg_trgm--1.2--1.3.sql
file path=usr/postgres/9.6/share/extension/pg_trgm--1.3.sql
file path=usr/postgres/9.6/share/extension/pg_trgm--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pg_trgm.control
file path=usr/postgres/9.6/share/extension/pg_visibility--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_visibility--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_visibility.control
file path=usr/postgres/9.6/share/extension/pgcrypto--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pgcrypto--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/pgcrypto--1.2--1.3.sql
file path=usr/postgres/9.6/share/extension/pgcrypto--1.3.sql
file path=usr/postgres/9.6/share/extension/pgcrypto--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pgcrypto.control
file path=usr/postgres/9.6/share/extension/pgrowlocks--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pgrowlocks--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/pgrowlocks--1.2.sql
file path=usr/postgres/9.6/share/extension/pgrowlocks--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pgrowlocks.control
file path=usr/postgres/9.6/share/extension/pgstattuple--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pgstattuple--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/pgstattuple--1.2--1.3.sql
file path=usr/postgres/9.6/share/extension/pgstattuple--1.3--1.4.sql
file path=usr/postgres/9.6/share/extension/pgstattuple--1.4.sql
file path=usr/postgres/9.6/share/extension/pgstattuple--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pgstattuple.control
file path=usr/postgres/9.6/share/extension/plperl--1.0.sql
file path=usr/postgres/9.6/share/extension/plperl--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/plperl.control
file path=usr/postgres/9.6/share/extension/plperlu--1.0.sql
file path=usr/postgres/9.6/share/extension/plperlu--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/plperlu.control
file path=usr/postgres/9.6/share/extension/plpgsql--1.0.sql
file path=usr/postgres/9.6/share/extension/plpgsql--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/plpgsql.control
file path=usr/postgres/9.6/share/extension/plpython2u--1.0.sql
file path=usr/postgres/9.6/share/extension/plpython2u--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/plpython2u.control
file path=usr/postgres/9.6/share/extension/plpythonu--1.0.sql
file path=usr/postgres/9.6/share/extension/plpythonu--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/plpythonu.control
file path=usr/postgres/9.6/share/extension/pltcl--1.0.sql
file path=usr/postgres/9.6/share/extension/pltcl--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pltcl.control
file path=usr/postgres/9.6/share/extension/pltclu--1.0.sql
file path=usr/postgres/9.6/share/extension/pltclu--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pltclu.control
file path=usr/postgres/9.6/share/extension/postgres_fdw--1.0.sql
file path=usr/postgres/9.6/share/extension/postgres_fdw.control
file path=usr/postgres/9.6/share/extension/refint--1.0.sql
file path=usr/postgres/9.6/share/extension/refint--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/refint.control
file path=usr/postgres/9.6/share/extension/seg--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/seg--1.1.sql
file path=usr/postgres/9.6/share/extension/seg--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/seg.control
file path=usr/postgres/9.6/share/extension/sslinfo--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/sslinfo--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/sslinfo--1.2.sql
file path=usr/postgres/9.6/share/extension/sslinfo--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/sslinfo.control
file path=usr/postgres/9.6/share/extension/tablefunc--1.0.sql
file path=usr/postgres/9.6/share/extension/tablefunc--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/tablefunc.control
file path=usr/postgres/9.6/share/extension/tcn--1.0.sql
file path=usr/postgres/9.6/share/extension/tcn.control
file path=usr/postgres/9.6/share/extension/timetravel--1.0.sql
file path=usr/postgres/9.6/share/extension/timetravel--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/timetravel.control
file path=usr/postgres/9.6/share/extension/tsearch2--1.0.sql
file path=usr/postgres/9.6/share/extension/tsearch2--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/tsearch2.control
file path=usr/postgres/9.6/share/extension/tsm_system_rows--1.0.sql
file path=usr/postgres/9.6/share/extension/tsm_system_rows.control
file path=usr/postgres/9.6/share/extension/tsm_system_time--1.0.sql
file path=usr/postgres/9.6/share/extension/tsm_system_time.control
file path=usr/postgres/9.6/share/extension/unaccent--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/unaccent--1.1.sql
file path=usr/postgres/9.6/share/extension/unaccent--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/unaccent.control
file path=usr/postgres/9.6/share/extension/xml2--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/xml2--1.1.sql
file path=usr/postgres/9.6/share/extension/xml2--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/xml2.control
file path=usr/postgres/9.6/share/information_schema.sql
file path=usr/postgres/9.6/share/pg_hba.conf.sample
file path=usr/postgres/9.6/share/pg_ident.conf.sample
file path=usr/postgres/9.6/share/pg_service.conf.sample
file path=usr/postgres/9.6/share/postgres.bki
file path=usr/postgres/9.6/share/postgres.description
file path=usr/postgres/9.6/share/postgres.shdescription
file path=usr/postgres/9.6/share/postgresql.conf.sample
file path=usr/postgres/9.6/share/psqlrc.sample
file path=usr/postgres/9.6/share/recovery.conf.sample
file path=usr/postgres/9.6/share/snowball_create.sql
file path=usr/postgres/9.6/share/sql_features.txt
file path=usr/postgres/9.6/share/system_views.sql
file path=usr/postgres/9.6/share/timezonesets/Africa.txt
file path=usr/postgres/9.6/share/timezonesets/America.txt
file path=usr/postgres/9.6/share/timezonesets/Antarctica.txt
file path=usr/postgres/9.6/share/timezonesets/Asia.txt
file path=usr/postgres/9.6/share/timezonesets/Atlantic.txt
file path=usr/postgres/9.6/share/timezonesets/Australia
file path=usr/postgres/9.6/share/timezonesets/Australia.txt
file path=usr/postgres/9.6/share/timezonesets/Default
file path=usr/postgres/9.6/share/timezonesets/Etc.txt
file path=usr/postgres/9.6/share/timezonesets/Europe.txt
file path=usr/postgres/9.6/share/timezonesets/India
file path=usr/postgres/9.6/share/timezonesets/Indian.txt
file path=usr/postgres/9.6/share/timezonesets/Pacific.txt
file path=usr/postgres/9.6/share/tsearch_data/danish.stop
file path=usr/postgres/9.6/share/tsearch_data/dutch.stop
file path=usr/postgres/9.6/share/tsearch_data/english.stop
file path=usr/postgres/9.6/share/tsearch_data/finnish.stop
file path=usr/postgres/9.6/share/tsearch_data/french.stop
file path=usr/postgres/9.6/share/tsearch_data/german.stop
file path=usr/postgres/9.6/share/tsearch_data/hungarian.stop
file path=usr/postgres/9.6/share/tsearch_data/hunspell_sample.affix
file path=usr/postgres/9.6/share/tsearch_data/hunspell_sample_long.affix
file path=usr/postgres/9.6/share/tsearch_data/hunspell_sample_long.dict
file path=usr/postgres/9.6/share/tsearch_data/hunspell_sample_num.affix
file path=usr/postgres/9.6/share/tsearch_data/hunspell_sample_num.dict
file path=usr/postgres/9.6/share/tsearch_data/ispell_sample.affix
file path=usr/postgres/9.6/share/tsearch_data/ispell_sample.dict
file path=usr/postgres/9.6/share/tsearch_data/italian.stop
file path=usr/postgres/9.6/share/tsearch_data/norwegian.stop
file path=usr/postgres/9.6/share/tsearch_data/portuguese.stop
file path=usr/postgres/9.6/share/tsearch_data/russian.stop
file path=usr/postgres/9.6/share/tsearch_data/spanish.stop
file path=usr/postgres/9.6/share/tsearch_data/swedish.stop
file path=usr/postgres/9.6/share/tsearch_data/synonym_sample.syn
file path=usr/postgres/9.6/share/tsearch_data/thesaurus_sample.ths
file path=usr/postgres/9.6/share/tsearch_data/turkish.stop
file path=usr/postgres/9.6/share/tsearch_data/unaccent.rules
file path=usr/postgres/9.6/share/tsearch_data/xsyn_sample.rules
file path=usr/postgres/9.6/share/unknown.pltcl
file path=usr/share/locale/cs/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/id/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/nb/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/ro/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/ro/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/ro/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/ro/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/sv/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/sv/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/sv/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/ta/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/tr/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/tr/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/tr/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/tr/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/tr/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/psql-9.6.mo
components/database/postgresql-96/patches/pg_config.patch
New file
@@ -0,0 +1,11 @@
--- postgresql-9.6.1/src/common/Makefile.1    2016-12-21 14:05:50.165591501 +0300
+++ postgresql-9.6.1/src/common/Makefile    2016-12-21 14:06:15.182397557 +0300
@@ -31,7 +31,7 @@
 override CPPFLAGS += -DVAL_CPPFLAGS="\"$(STD_CPPFLAGS)\""
 override CPPFLAGS += -DVAL_CFLAGS="\"$(CFLAGS)\""
 override CPPFLAGS += -DVAL_CFLAGS_SL="\"$(CFLAGS_SL)\""
-override CPPFLAGS += -DVAL_LDFLAGS="\"$(STD_LDFLAGS)\""
+override CPPFLAGS += -DVAL_LDFLAGS="\"-L$(libdir) $(STD_LDFLAGS)\""
 override CPPFLAGS += -DVAL_LDFLAGS_EX="\"$(LDFLAGS_EX)\""
 override CPPFLAGS += -DVAL_LDFLAGS_SL="\"$(LDFLAGS_SL)\""
 override CPPFLAGS += -DVAL_LIBS="\"$(LIBS)\""
components/database/postgresql-96/patches/plpython_rpath64.patch
New file
@@ -0,0 +1,11 @@
--- postgresql-9.5.0/src/pl/plpython/Makefile.~1~    2016-01-05 00:29:34.000000000 +0300
+++ postgresql-9.5.0/src/pl/plpython/Makefile    2016-01-22 14:39:20.967007169 +0300
@@ -13,7 +13,7 @@
 override CPPFLAGS := -I. -I$(srcdir) $(python_includespec) $(CPPFLAGS)
-rpathdir = $(python_libdir)
+#rpathdir = $(python_libdir)
 PGFILEDESC = "PL/Python - procedural language"
components/database/postgresql-96/postgresql96-contrib.p5m
New file
@@ -0,0 +1,274 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2016 Alexander Pyhalov
#
set name=pkg.fmri value=pkg:/database/postgres-96/contrib@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.summary value="PostgreSQL community contributed tools not part of core product"
set name=info.classification value=org.opensolaris.category.2008:System/Databases
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
license COPYRIGHT license="PostgreSQL"
file path=usr/postgres/9.6/bin/oid2name
file path=usr/postgres/9.6/bin/pg_archivecleanup
file path=usr/postgres/9.6/bin/pg_standby
file path=usr/postgres/9.6/bin/pg_test_fsync
file path=usr/postgres/9.6/bin/pg_test_timing
file path=usr/postgres/9.6/bin/pg_xlogdump
file path=usr/postgres/9.6/bin/pgbench
file path=usr/postgres/9.6/bin/vacuumlo
file path=usr/postgres/9.6/lib/$(MACH64)/_int.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/adminpack.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/auth_delay.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/auto_explain.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/autoinc.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/bloom.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/btree_gin.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/btree_gist.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/chkpass.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/citext.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/cube.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/dblink.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/dict_int.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/dict_xsyn.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/earthdistance.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/file_fdw.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/fuzzystrmatch.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/hstore.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/hstore_plperl.so
file path=usr/postgres/9.6/lib/$(MACH64)/hstore_plpython2.so
file path=usr/postgres/9.6/lib/$(MACH64)/insert_username.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/isn.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/lo.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/ltree.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/ltree_plpython2.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/moddatetime.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/pageinspect.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/passwordcheck.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/pg_buffercache.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/pg_freespacemap.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/pg_prewarm.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/pg_stat_statements.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/pg_trgm.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/pg_visibility.so
file path=usr/postgres/9.6/lib/$(MACH64)/pgcrypto.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/pgrowlocks.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/pgstattuple.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/pgxml.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/postgres_fdw.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/refint.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/seg.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/sslinfo.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/tablefunc.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/tcn.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/test_decoding.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/timetravel.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/tsm_system_rows.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/tsm_system_time.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/tsearch2.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/unaccent.so mode=0555
file path=usr/postgres/9.6/lib/unaccent.so mode=0555
file path=usr/postgres/9.6/share/extension/adminpack--1.0.sql
file path=usr/postgres/9.6/share/extension/adminpack.control
file path=usr/postgres/9.6/share/extension/autoinc--1.0.sql
file path=usr/postgres/9.6/share/extension/autoinc--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/autoinc.control
file path=usr/postgres/9.6/share/extension/bloom--1.0.sql
file path=usr/postgres/9.6/share/extension/bloom.control
file path=usr/postgres/9.6/share/extension/btree_gin--1.0.sql
file path=usr/postgres/9.6/share/extension/btree_gin--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/btree_gin.control
file path=usr/postgres/9.6/share/extension/btree_gist--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/btree_gist--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/btree_gist--1.2.sql
file path=usr/postgres/9.6/share/extension/btree_gist--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/btree_gist.control
file path=usr/postgres/9.6/share/extension/chkpass--1.0.sql
file path=usr/postgres/9.6/share/extension/chkpass--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/chkpass.control
file path=usr/postgres/9.6/share/extension/citext--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/citext--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/citext--1.2--1.3.sql
file path=usr/postgres/9.6/share/extension/citext--1.3.sql
file path=usr/postgres/9.6/share/extension/citext--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/citext.control
file path=usr/postgres/9.6/share/extension/cube--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/cube--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/cube--1.2.sql
file path=usr/postgres/9.6/share/extension/cube--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/cube.control
file path=usr/postgres/9.6/share/extension/dblink--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/dblink--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/dblink--1.2.sql
file path=usr/postgres/9.6/share/extension/dblink--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/dblink.control
file path=usr/postgres/9.6/share/extension/dict_int--1.0.sql
file path=usr/postgres/9.6/share/extension/dict_int--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/dict_int.control
file path=usr/postgres/9.6/share/extension/dict_xsyn--1.0.sql
file path=usr/postgres/9.6/share/extension/dict_xsyn--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/dict_xsyn.control
file path=usr/postgres/9.6/share/extension/earthdistance--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/earthdistance--1.1.sql
file path=usr/postgres/9.6/share/extension/earthdistance--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/earthdistance.control
file path=usr/postgres/9.6/share/extension/file_fdw--1.0.sql
file path=usr/postgres/9.6/share/extension/file_fdw.control
file path=usr/postgres/9.6/share/extension/fuzzystrmatch--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/fuzzystrmatch--1.1.sql
file path=usr/postgres/9.6/share/extension/fuzzystrmatch--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/fuzzystrmatch.control
file path=usr/postgres/9.6/share/extension/hstore--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/hstore--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/hstore--1.2--1.3.sql
file path=usr/postgres/9.6/share/extension/hstore--1.3--1.4.sql
file path=usr/postgres/9.6/share/extension/hstore--1.4.sql
file path=usr/postgres/9.6/share/extension/hstore--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/hstore.control
file path=usr/postgres/9.6/share/extension/hstore_plperl--1.0.sql
file path=usr/postgres/9.6/share/extension/hstore_plperl.control
file path=usr/postgres/9.6/share/extension/hstore_plperlu--1.0.sql
file path=usr/postgres/9.6/share/extension/hstore_plperlu.control
file path=usr/postgres/9.6/share/extension/hstore_plpython2u--1.0.sql
file path=usr/postgres/9.6/share/extension/hstore_plpython2u.control
file path=usr/postgres/9.6/share/extension/hstore_plpython3u--1.0.sql
file path=usr/postgres/9.6/share/extension/hstore_plpython3u.control
file path=usr/postgres/9.6/share/extension/hstore_plpythonu--1.0.sql
file path=usr/postgres/9.6/share/extension/hstore_plpythonu.control
file path=usr/postgres/9.6/share/extension/insert_username--1.0.sql
file path=usr/postgres/9.6/share/extension/insert_username--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/insert_username.control
file path=usr/postgres/9.6/share/extension/intagg--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/intagg--1.1.sql
file path=usr/postgres/9.6/share/extension/intagg--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/intagg.control
file path=usr/postgres/9.6/share/extension/intarray--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/intarray--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/intarray--1.2.sql
file path=usr/postgres/9.6/share/extension/intarray--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/intarray.control
file path=usr/postgres/9.6/share/extension/isn--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/isn--1.1.sql
file path=usr/postgres/9.6/share/extension/isn--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/isn.control
file path=usr/postgres/9.6/share/extension/lo--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/lo--1.1.sql
file path=usr/postgres/9.6/share/extension/lo--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/lo.control
file path=usr/postgres/9.6/share/extension/ltree--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/ltree--1.1.sql
file path=usr/postgres/9.6/share/extension/ltree--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/ltree.control
file path=usr/postgres/9.6/share/extension/ltree_plpython2u--1.0.sql
file path=usr/postgres/9.6/share/extension/ltree_plpython2u.control
file path=usr/postgres/9.6/share/extension/ltree_plpython3u--1.0.sql
file path=usr/postgres/9.6/share/extension/ltree_plpython3u.control
file path=usr/postgres/9.6/share/extension/ltree_plpythonu--1.0.sql
file path=usr/postgres/9.6/share/extension/ltree_plpythonu.control
file path=usr/postgres/9.6/share/extension/moddatetime--1.0.sql
file path=usr/postgres/9.6/share/extension/moddatetime--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/moddatetime.control
file path=usr/postgres/9.6/share/extension/pageinspect--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pageinspect--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/pageinspect--1.2--1.3.sql
file path=usr/postgres/9.6/share/extension/pageinspect--1.3--1.4.sql
file path=usr/postgres/9.6/share/extension/pageinspect--1.4--1.5.sql
file path=usr/postgres/9.6/share/extension/pageinspect--1.5.sql
file path=usr/postgres/9.6/share/extension/pageinspect--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pageinspect.control
file path=usr/postgres/9.6/share/extension/pg_buffercache--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_buffercache--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/pg_buffercache--1.2.sql
file path=usr/postgres/9.6/share/extension/pg_buffercache--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pg_buffercache.control
file path=usr/postgres/9.6/share/extension/pg_freespacemap--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_freespacemap--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_freespacemap--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pg_freespacemap.control
file path=usr/postgres/9.6/share/extension/pg_prewarm--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_prewarm--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_prewarm.control
file path=usr/postgres/9.6/share/extension/pg_stat_statements--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_stat_statements--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/pg_stat_statements--1.2--1.3.sql
file path=usr/postgres/9.6/share/extension/pg_stat_statements--1.3--1.4.sql
file path=usr/postgres/9.6/share/extension/pg_stat_statements--1.4.sql
file path=usr/postgres/9.6/share/extension/pg_stat_statements--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pg_stat_statements.control
file path=usr/postgres/9.6/share/extension/pg_trgm--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_trgm--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/pg_trgm--1.2--1.3.sql
file path=usr/postgres/9.6/share/extension/pg_trgm--1.3.sql
file path=usr/postgres/9.6/share/extension/pg_trgm--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pg_trgm.control
file path=usr/postgres/9.6/share/extension/pg_visibility--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_visibility--1.1.sql
file path=usr/postgres/9.6/share/extension/pg_visibility.control
file path=usr/postgres/9.6/share/extension/pgcrypto--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pgcrypto--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/pgcrypto--1.2--1.3.sql
file path=usr/postgres/9.6/share/extension/pgcrypto--1.3.sql
file path=usr/postgres/9.6/share/extension/pgcrypto--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pgcrypto.control
file path=usr/postgres/9.6/share/extension/pgrowlocks--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pgrowlocks--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/pgrowlocks--1.2.sql
file path=usr/postgres/9.6/share/extension/pgrowlocks--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pgrowlocks.control
file path=usr/postgres/9.6/share/extension/pgstattuple--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/pgstattuple--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/pgstattuple--1.2--1.3.sql
file path=usr/postgres/9.6/share/extension/pgstattuple--1.3--1.4.sql
file path=usr/postgres/9.6/share/extension/pgstattuple--1.4.sql
file path=usr/postgres/9.6/share/extension/pgstattuple--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pgstattuple.control
file path=usr/postgres/9.6/share/extension/postgres_fdw--1.0.sql
file path=usr/postgres/9.6/share/extension/postgres_fdw.control
file path=usr/postgres/9.6/share/extension/refint--1.0.sql
file path=usr/postgres/9.6/share/extension/refint--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/refint.control
file path=usr/postgres/9.6/share/extension/seg--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/seg--1.1.sql
file path=usr/postgres/9.6/share/extension/seg--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/seg.control
file path=usr/postgres/9.6/share/extension/sslinfo--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/sslinfo--1.1--1.2.sql
file path=usr/postgres/9.6/share/extension/sslinfo--1.2.sql
file path=usr/postgres/9.6/share/extension/sslinfo--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/sslinfo.control
file path=usr/postgres/9.6/share/extension/tablefunc--1.0.sql
file path=usr/postgres/9.6/share/extension/tablefunc--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/tablefunc.control
file path=usr/postgres/9.6/share/extension/tcn--1.0.sql
file path=usr/postgres/9.6/share/extension/tcn.control
file path=usr/postgres/9.6/share/extension/timetravel--1.0.sql
file path=usr/postgres/9.6/share/extension/timetravel--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/timetravel.control
file path=usr/postgres/9.6/share/extension/tsearch2--1.0.sql
file path=usr/postgres/9.6/share/extension/tsearch2--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/tsearch2.control
file path=usr/postgres/9.6/share/extension/tsm_system_rows--1.0.sql
file path=usr/postgres/9.6/share/extension/tsm_system_rows.control
file path=usr/postgres/9.6/share/extension/tsm_system_time--1.0.sql
file path=usr/postgres/9.6/share/extension/tsm_system_time.control
file path=usr/postgres/9.6/share/extension/unaccent--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/unaccent--1.1.sql
file path=usr/postgres/9.6/share/extension/unaccent--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/unaccent.control
file path=usr/postgres/9.6/share/extension/xml2--1.0--1.1.sql
file path=usr/postgres/9.6/share/extension/xml2--1.1.sql
file path=usr/postgres/9.6/share/extension/xml2--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/xml2.control
components/database/postgresql-96/postgresql96-developer.p5m
New file
@@ -0,0 +1,734 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2016 Alexander Pyhalov
#
set name=pkg.fmri value=pkg:/database/postgres-96/developer@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.summary value="PostgreSQL development tools and header files"
set name=info.classification value=org.opensolaris.category.2008:Development/Databases
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
license COPYRIGHT license="PostgreSQL"
depend fmri=pkg:/database/postgres-96/library@$(IPS_COMPONENT_VERSION) type=require
file path=usr/postgres/9.6/bin/$(MACH32)/pg_config mode=0555
file path=usr/postgres/9.6/bin/pg_config mode=0555
file path=usr/postgres/9.6/bin/$(MACH32)/ecpg mode=0555
file path=usr/postgres/9.6/bin/ecpg mode=0555
file files/pg_config.h path=usr/postgres/9.6/include/pg_config.h
hardlink path=usr/postgres/9.6/include/server/pg_config.h target=../pg_config.h
file path=usr/postgres/9.6/include/ecpg_config.h
file path=usr/postgres/9.6/include/ecpg_informix.h
file path=usr/postgres/9.6/include/ecpgerrno.h
file path=usr/postgres/9.6/include/ecpglib.h
file path=usr/postgres/9.6/include/ecpgtype.h
file path=usr/postgres/9.6/include/informix/esql/datetime.h
file path=usr/postgres/9.6/include/informix/esql/decimal.h
file path=usr/postgres/9.6/include/informix/esql/sqltypes.h
file path=usr/postgres/9.6/include/internal/c.h
file path=usr/postgres/9.6/include/internal/libpq-int.h
file path=usr/postgres/9.6/include/internal/libpq/pqcomm.h
file path=usr/postgres/9.6/include/internal/port.h
file path=usr/postgres/9.6/include/internal/postgres_fe.h
file path=usr/postgres/9.6/include/internal/pqexpbuffer.h
file path=usr/postgres/9.6/include/libpq-events.h
file path=usr/postgres/9.6/include/libpq-fe.h
file path=usr/postgres/9.6/include/libpq/libpq-fs.h
file path=usr/postgres/9.6/include/pg_config-32.h
file path=usr/postgres/9.6/include/pg_config-64.h
file path=usr/postgres/9.6/include/pg_config_ext.h
file path=usr/postgres/9.6/include/pg_config_manual.h
file path=usr/postgres/9.6/include/pg_config_os.h
file path=usr/postgres/9.6/include/pgtypes_date.h
file path=usr/postgres/9.6/include/pgtypes_error.h
file path=usr/postgres/9.6/include/pgtypes_interval.h
file path=usr/postgres/9.6/include/pgtypes_numeric.h
file path=usr/postgres/9.6/include/pgtypes_timestamp.h
file path=usr/postgres/9.6/include/postgres_ext.h
file path=usr/postgres/9.6/include/server/access/amapi.h
file path=usr/postgres/9.6/include/server/access/amvalidate.h
file path=usr/postgres/9.6/include/server/access/attnum.h
file path=usr/postgres/9.6/include/server/access/brin.h
file path=usr/postgres/9.6/include/server/access/brin_internal.h
file path=usr/postgres/9.6/include/server/access/brin_page.h
file path=usr/postgres/9.6/include/server/access/brin_pageops.h
file path=usr/postgres/9.6/include/server/access/brin_revmap.h
file path=usr/postgres/9.6/include/server/access/brin_tuple.h
file path=usr/postgres/9.6/include/server/access/brin_xlog.h
file path=usr/postgres/9.6/include/server/access/clog.h
file path=usr/postgres/9.6/include/server/access/commit_ts.h
file path=usr/postgres/9.6/include/server/access/genam.h
file path=usr/postgres/9.6/include/server/access/generic_xlog.h
file path=usr/postgres/9.6/include/server/access/gin.h
file path=usr/postgres/9.6/include/server/access/gin_private.h
file path=usr/postgres/9.6/include/server/access/gist.h
file path=usr/postgres/9.6/include/server/access/gist_private.h
file path=usr/postgres/9.6/include/server/access/gistscan.h
file path=usr/postgres/9.6/include/server/access/hash.h
file path=usr/postgres/9.6/include/server/access/heapam.h
file path=usr/postgres/9.6/include/server/access/heapam_xlog.h
file path=usr/postgres/9.6/include/server/access/hio.h
file path=usr/postgres/9.6/include/server/access/htup.h
file path=usr/postgres/9.6/include/server/access/htup_details.h
file path=usr/postgres/9.6/include/server/access/itup.h
file path=usr/postgres/9.6/include/server/access/multixact.h
file path=usr/postgres/9.6/include/server/access/nbtree.h
file path=usr/postgres/9.6/include/server/access/parallel.h
file path=usr/postgres/9.6/include/server/access/printtup.h
file path=usr/postgres/9.6/include/server/access/reloptions.h
file path=usr/postgres/9.6/include/server/access/relscan.h
file path=usr/postgres/9.6/include/server/access/rewriteheap.h
file path=usr/postgres/9.6/include/server/access/rmgr.h
file path=usr/postgres/9.6/include/server/access/rmgrlist.h
file path=usr/postgres/9.6/include/server/access/sdir.h
file path=usr/postgres/9.6/include/server/access/skey.h
file path=usr/postgres/9.6/include/server/access/slru.h
file path=usr/postgres/9.6/include/server/access/spgist.h
file path=usr/postgres/9.6/include/server/access/spgist_private.h
file path=usr/postgres/9.6/include/server/access/stratnum.h
file path=usr/postgres/9.6/include/server/access/subtrans.h
file path=usr/postgres/9.6/include/server/access/sysattr.h
file path=usr/postgres/9.6/include/server/access/timeline.h
file path=usr/postgres/9.6/include/server/access/transam.h
file path=usr/postgres/9.6/include/server/access/tsmapi.h
file path=usr/postgres/9.6/include/server/access/tupconvert.h
file path=usr/postgres/9.6/include/server/access/tupdesc.h
file path=usr/postgres/9.6/include/server/access/tupmacs.h
file path=usr/postgres/9.6/include/server/access/tuptoaster.h
file path=usr/postgres/9.6/include/server/access/twophase.h
file path=usr/postgres/9.6/include/server/access/twophase_rmgr.h
file path=usr/postgres/9.6/include/server/access/valid.h
file path=usr/postgres/9.6/include/server/access/visibilitymap.h
file path=usr/postgres/9.6/include/server/access/xact.h
file path=usr/postgres/9.6/include/server/access/xlog.h
file path=usr/postgres/9.6/include/server/access/xlog_fn.h
file path=usr/postgres/9.6/include/server/access/xlog_internal.h
file path=usr/postgres/9.6/include/server/access/xlogdefs.h
file path=usr/postgres/9.6/include/server/access/xloginsert.h
file path=usr/postgres/9.6/include/server/access/xlogreader.h
file path=usr/postgres/9.6/include/server/access/xlogrecord.h
file path=usr/postgres/9.6/include/server/access/xlogutils.h
file path=usr/postgres/9.6/include/server/bootstrap/bootstrap.h
file path=usr/postgres/9.6/include/server/c.h
file path=usr/postgres/9.6/include/server/catalog/binary_upgrade.h
file path=usr/postgres/9.6/include/server/catalog/catalog.h
file path=usr/postgres/9.6/include/server/catalog/catversion.h
file path=usr/postgres/9.6/include/server/catalog/dependency.h
file path=usr/postgres/9.6/include/server/catalog/genbki.h
file path=usr/postgres/9.6/include/server/catalog/heap.h
file path=usr/postgres/9.6/include/server/catalog/index.h
file path=usr/postgres/9.6/include/server/catalog/indexing.h
file path=usr/postgres/9.6/include/server/catalog/namespace.h
file path=usr/postgres/9.6/include/server/catalog/objectaccess.h
file path=usr/postgres/9.6/include/server/catalog/objectaddress.h
file path=usr/postgres/9.6/include/server/catalog/opfam_internal.h
file path=usr/postgres/9.6/include/server/catalog/pg_aggregate.h
file path=usr/postgres/9.6/include/server/catalog/pg_am.h
file path=usr/postgres/9.6/include/server/catalog/pg_amop.h
file path=usr/postgres/9.6/include/server/catalog/pg_amproc.h
file path=usr/postgres/9.6/include/server/catalog/pg_attrdef.h
file path=usr/postgres/9.6/include/server/catalog/pg_attribute.h
file path=usr/postgres/9.6/include/server/catalog/pg_auth_members.h
file path=usr/postgres/9.6/include/server/catalog/pg_authid.h
file path=usr/postgres/9.6/include/server/catalog/pg_cast.h
file path=usr/postgres/9.6/include/server/catalog/pg_class.h
file path=usr/postgres/9.6/include/server/catalog/pg_collation.h
file path=usr/postgres/9.6/include/server/catalog/pg_collation_fn.h
file path=usr/postgres/9.6/include/server/catalog/pg_constraint.h
file path=usr/postgres/9.6/include/server/catalog/pg_constraint_fn.h
file path=usr/postgres/9.6/include/server/catalog/pg_control.h
file path=usr/postgres/9.6/include/server/catalog/pg_conversion.h
file path=usr/postgres/9.6/include/server/catalog/pg_conversion_fn.h
file path=usr/postgres/9.6/include/server/catalog/pg_database.h
file path=usr/postgres/9.6/include/server/catalog/pg_db_role_setting.h
file path=usr/postgres/9.6/include/server/catalog/pg_default_acl.h
file path=usr/postgres/9.6/include/server/catalog/pg_depend.h
file path=usr/postgres/9.6/include/server/catalog/pg_description.h
file path=usr/postgres/9.6/include/server/catalog/pg_enum.h
file path=usr/postgres/9.6/include/server/catalog/pg_event_trigger.h
file path=usr/postgres/9.6/include/server/catalog/pg_extension.h
file path=usr/postgres/9.6/include/server/catalog/pg_foreign_data_wrapper.h
file path=usr/postgres/9.6/include/server/catalog/pg_foreign_server.h
file path=usr/postgres/9.6/include/server/catalog/pg_foreign_table.h
file path=usr/postgres/9.6/include/server/catalog/pg_index.h
file path=usr/postgres/9.6/include/server/catalog/pg_inherits.h
file path=usr/postgres/9.6/include/server/catalog/pg_inherits_fn.h
file path=usr/postgres/9.6/include/server/catalog/pg_init_privs.h
file path=usr/postgres/9.6/include/server/catalog/pg_language.h
file path=usr/postgres/9.6/include/server/catalog/pg_largeobject.h
file path=usr/postgres/9.6/include/server/catalog/pg_largeobject_metadata.h
file path=usr/postgres/9.6/include/server/catalog/pg_namespace.h
file path=usr/postgres/9.6/include/server/catalog/pg_opclass.h
file path=usr/postgres/9.6/include/server/catalog/pg_operator.h
file path=usr/postgres/9.6/include/server/catalog/pg_operator_fn.h
file path=usr/postgres/9.6/include/server/catalog/pg_opfamily.h
file path=usr/postgres/9.6/include/server/catalog/pg_pltemplate.h
file path=usr/postgres/9.6/include/server/catalog/pg_policy.h
file path=usr/postgres/9.6/include/server/catalog/pg_proc.h
file path=usr/postgres/9.6/include/server/catalog/pg_proc_fn.h
file path=usr/postgres/9.6/include/server/catalog/pg_range.h
file path=usr/postgres/9.6/include/server/catalog/pg_replication_origin.h
file path=usr/postgres/9.6/include/server/catalog/pg_rewrite.h
file path=usr/postgres/9.6/include/server/catalog/pg_seclabel.h
file path=usr/postgres/9.6/include/server/catalog/pg_shdepend.h
file path=usr/postgres/9.6/include/server/catalog/pg_shdescription.h
file path=usr/postgres/9.6/include/server/catalog/pg_shseclabel.h
file path=usr/postgres/9.6/include/server/catalog/pg_statistic.h
file path=usr/postgres/9.6/include/server/catalog/pg_tablespace.h
file path=usr/postgres/9.6/include/server/catalog/pg_transform.h
file path=usr/postgres/9.6/include/server/catalog/pg_trigger.h
file path=usr/postgres/9.6/include/server/catalog/pg_ts_config.h
file path=usr/postgres/9.6/include/server/catalog/pg_ts_config_map.h
file path=usr/postgres/9.6/include/server/catalog/pg_ts_dict.h
file path=usr/postgres/9.6/include/server/catalog/pg_ts_parser.h
file path=usr/postgres/9.6/include/server/catalog/pg_ts_template.h
file path=usr/postgres/9.6/include/server/catalog/pg_type.h
file path=usr/postgres/9.6/include/server/catalog/pg_type_fn.h
file path=usr/postgres/9.6/include/server/catalog/pg_user_mapping.h
file path=usr/postgres/9.6/include/server/catalog/schemapg.h
file path=usr/postgres/9.6/include/server/catalog/storage.h
file path=usr/postgres/9.6/include/server/catalog/storage_xlog.h
file path=usr/postgres/9.6/include/server/catalog/toasting.h
file path=usr/postgres/9.6/include/server/commands/alter.h
file path=usr/postgres/9.6/include/server/commands/async.h
file path=usr/postgres/9.6/include/server/commands/cluster.h
file path=usr/postgres/9.6/include/server/commands/collationcmds.h
file path=usr/postgres/9.6/include/server/commands/comment.h
file path=usr/postgres/9.6/include/server/commands/conversioncmds.h
file path=usr/postgres/9.6/include/server/commands/copy.h
file path=usr/postgres/9.6/include/server/commands/createas.h
file path=usr/postgres/9.6/include/server/commands/dbcommands.h
file path=usr/postgres/9.6/include/server/commands/dbcommands_xlog.h
file path=usr/postgres/9.6/include/server/commands/defrem.h
file path=usr/postgres/9.6/include/server/commands/discard.h
file path=usr/postgres/9.6/include/server/commands/event_trigger.h
file path=usr/postgres/9.6/include/server/commands/explain.h
file path=usr/postgres/9.6/include/server/commands/extension.h
file path=usr/postgres/9.6/include/server/commands/lockcmds.h
file path=usr/postgres/9.6/include/server/commands/matview.h
file path=usr/postgres/9.6/include/server/commands/policy.h
file path=usr/postgres/9.6/include/server/commands/portalcmds.h
file path=usr/postgres/9.6/include/server/commands/prepare.h
file path=usr/postgres/9.6/include/server/commands/proclang.h
file path=usr/postgres/9.6/include/server/commands/progress.h
file path=usr/postgres/9.6/include/server/commands/schemacmds.h
file path=usr/postgres/9.6/include/server/commands/seclabel.h
file path=usr/postgres/9.6/include/server/commands/sequence.h
file path=usr/postgres/9.6/include/server/commands/tablecmds.h
file path=usr/postgres/9.6/include/server/commands/tablespace.h
file path=usr/postgres/9.6/include/server/commands/trigger.h
file path=usr/postgres/9.6/include/server/commands/typecmds.h
file path=usr/postgres/9.6/include/server/commands/user.h
file path=usr/postgres/9.6/include/server/commands/vacuum.h
file path=usr/postgres/9.6/include/server/commands/variable.h
file path=usr/postgres/9.6/include/server/commands/view.h
file path=usr/postgres/9.6/include/server/common/config_info.h
file path=usr/postgres/9.6/include/server/common/controldata_utils.h
file path=usr/postgres/9.6/include/server/common/fe_memutils.h
file path=usr/postgres/9.6/include/server/common/keywords.h
file path=usr/postgres/9.6/include/server/common/pg_lzcompress.h
file path=usr/postgres/9.6/include/server/common/relpath.h
file path=usr/postgres/9.6/include/server/common/restricted_token.h
file path=usr/postgres/9.6/include/server/common/string.h
file path=usr/postgres/9.6/include/server/common/username.h
file path=usr/postgres/9.6/include/server/datatype/timestamp.h
file path=usr/postgres/9.6/include/server/dynloader.h
file path=usr/postgres/9.6/include/server/executor/execParallel.h
file path=usr/postgres/9.6/include/server/executor/execdebug.h
file path=usr/postgres/9.6/include/server/executor/execdesc.h
file path=usr/postgres/9.6/include/server/executor/executor.h
file path=usr/postgres/9.6/include/server/executor/functions.h
file path=usr/postgres/9.6/include/server/executor/hashjoin.h
file path=usr/postgres/9.6/include/server/executor/instrument.h
file path=usr/postgres/9.6/include/server/executor/nodeAgg.h
file path=usr/postgres/9.6/include/server/executor/nodeAppend.h
file path=usr/postgres/9.6/include/server/executor/nodeBitmapAnd.h
file path=usr/postgres/9.6/include/server/executor/nodeBitmapHeapscan.h
file path=usr/postgres/9.6/include/server/executor/nodeBitmapIndexscan.h
file path=usr/postgres/9.6/include/server/executor/nodeBitmapOr.h
file path=usr/postgres/9.6/include/server/executor/nodeCtescan.h
file path=usr/postgres/9.6/include/server/executor/nodeCustom.h
file path=usr/postgres/9.6/include/server/executor/nodeForeignscan.h
file path=usr/postgres/9.6/include/server/executor/nodeFunctionscan.h
file path=usr/postgres/9.6/include/server/executor/nodeGather.h
file path=usr/postgres/9.6/include/server/executor/nodeGroup.h
file path=usr/postgres/9.6/include/server/executor/nodeHash.h
file path=usr/postgres/9.6/include/server/executor/nodeHashjoin.h
file path=usr/postgres/9.6/include/server/executor/nodeIndexonlyscan.h
file path=usr/postgres/9.6/include/server/executor/nodeIndexscan.h
file path=usr/postgres/9.6/include/server/executor/nodeLimit.h
file path=usr/postgres/9.6/include/server/executor/nodeLockRows.h
file path=usr/postgres/9.6/include/server/executor/nodeMaterial.h
file path=usr/postgres/9.6/include/server/executor/nodeMergeAppend.h
file path=usr/postgres/9.6/include/server/executor/nodeMergejoin.h
file path=usr/postgres/9.6/include/server/executor/nodeModifyTable.h
file path=usr/postgres/9.6/include/server/executor/nodeNestloop.h
file path=usr/postgres/9.6/include/server/executor/nodeRecursiveunion.h
file path=usr/postgres/9.6/include/server/executor/nodeResult.h
file path=usr/postgres/9.6/include/server/executor/nodeSamplescan.h
file path=usr/postgres/9.6/include/server/executor/nodeSeqscan.h
file path=usr/postgres/9.6/include/server/executor/nodeSetOp.h
file path=usr/postgres/9.6/include/server/executor/nodeSort.h
file path=usr/postgres/9.6/include/server/executor/nodeSubplan.h
file path=usr/postgres/9.6/include/server/executor/nodeSubqueryscan.h
file path=usr/postgres/9.6/include/server/executor/nodeTidscan.h
file path=usr/postgres/9.6/include/server/executor/nodeUnique.h
file path=usr/postgres/9.6/include/server/executor/nodeValuesscan.h
file path=usr/postgres/9.6/include/server/executor/nodeWindowAgg.h
file path=usr/postgres/9.6/include/server/executor/nodeWorktablescan.h
file path=usr/postgres/9.6/include/server/executor/spi.h
file path=usr/postgres/9.6/include/server/executor/spi_priv.h
file path=usr/postgres/9.6/include/server/executor/tqueue.h
file path=usr/postgres/9.6/include/server/executor/tstoreReceiver.h
file path=usr/postgres/9.6/include/server/executor/tuptable.h
file path=usr/postgres/9.6/include/server/fe_utils/mbprint.h
file path=usr/postgres/9.6/include/server/fe_utils/print.h
file path=usr/postgres/9.6/include/server/fe_utils/psqlscan.h
file path=usr/postgres/9.6/include/server/fe_utils/psqlscan_int.h
file path=usr/postgres/9.6/include/server/fe_utils/simple_list.h
file path=usr/postgres/9.6/include/server/fe_utils/string_utils.h
file path=usr/postgres/9.6/include/server/fmgr.h
file path=usr/postgres/9.6/include/server/foreign/fdwapi.h
file path=usr/postgres/9.6/include/server/foreign/foreign.h
file path=usr/postgres/9.6/include/server/funcapi.h
file path=usr/postgres/9.6/include/server/getaddrinfo.h
file path=usr/postgres/9.6/include/server/getopt_long.h
file path=usr/postgres/9.6/include/server/lib/binaryheap.h
file path=usr/postgres/9.6/include/server/lib/bipartite_match.h
file path=usr/postgres/9.6/include/server/lib/hyperloglog.h
file path=usr/postgres/9.6/include/server/lib/ilist.h
file path=usr/postgres/9.6/include/server/lib/pairingheap.h
file path=usr/postgres/9.6/include/server/lib/rbtree.h
file path=usr/postgres/9.6/include/server/lib/stringinfo.h
file path=usr/postgres/9.6/include/server/libpq/auth.h
file path=usr/postgres/9.6/include/server/libpq/be-fsstubs.h
file path=usr/postgres/9.6/include/server/libpq/crypt.h
file path=usr/postgres/9.6/include/server/libpq/hba.h
file path=usr/postgres/9.6/include/server/libpq/ip.h
file path=usr/postgres/9.6/include/server/libpq/libpq-be.h
file path=usr/postgres/9.6/include/server/libpq/libpq-fs.h
file path=usr/postgres/9.6/include/server/libpq/libpq.h
file path=usr/postgres/9.6/include/server/libpq/md5.h
file path=usr/postgres/9.6/include/server/libpq/pqcomm.h
file path=usr/postgres/9.6/include/server/libpq/pqformat.h
file path=usr/postgres/9.6/include/server/libpq/pqmq.h
file path=usr/postgres/9.6/include/server/libpq/pqsignal.h
file path=usr/postgres/9.6/include/server/mb/pg_wchar.h
file path=usr/postgres/9.6/include/server/miscadmin.h
file path=usr/postgres/9.6/include/server/nodes/bitmapset.h
file path=usr/postgres/9.6/include/server/nodes/execnodes.h
file path=usr/postgres/9.6/include/server/nodes/extensible.h
file path=usr/postgres/9.6/include/server/nodes/lockoptions.h
file path=usr/postgres/9.6/include/server/nodes/makefuncs.h
file path=usr/postgres/9.6/include/server/nodes/memnodes.h
file path=usr/postgres/9.6/include/server/nodes/nodeFuncs.h
file path=usr/postgres/9.6/include/server/nodes/nodes.h
file path=usr/postgres/9.6/include/server/nodes/params.h
file path=usr/postgres/9.6/include/server/nodes/parsenodes.h
file path=usr/postgres/9.6/include/server/nodes/pg_list.h
file path=usr/postgres/9.6/include/server/nodes/plannodes.h
file path=usr/postgres/9.6/include/server/nodes/primnodes.h
file path=usr/postgres/9.6/include/server/nodes/print.h
file path=usr/postgres/9.6/include/server/nodes/readfuncs.h
file path=usr/postgres/9.6/include/server/nodes/relation.h
file path=usr/postgres/9.6/include/server/nodes/replnodes.h
file path=usr/postgres/9.6/include/server/nodes/tidbitmap.h
file path=usr/postgres/9.6/include/server/nodes/value.h
file path=usr/postgres/9.6/include/server/optimizer/clauses.h
file path=usr/postgres/9.6/include/server/optimizer/cost.h
file path=usr/postgres/9.6/include/server/optimizer/geqo.h
file path=usr/postgres/9.6/include/server/optimizer/geqo_copy.h
file path=usr/postgres/9.6/include/server/optimizer/geqo_gene.h
file path=usr/postgres/9.6/include/server/optimizer/geqo_misc.h
file path=usr/postgres/9.6/include/server/optimizer/geqo_mutation.h
file path=usr/postgres/9.6/include/server/optimizer/geqo_pool.h
file path=usr/postgres/9.6/include/server/optimizer/geqo_random.h
file path=usr/postgres/9.6/include/server/optimizer/geqo_recombination.h
file path=usr/postgres/9.6/include/server/optimizer/geqo_selection.h
file path=usr/postgres/9.6/include/server/optimizer/joininfo.h
file path=usr/postgres/9.6/include/server/optimizer/orclauses.h
file path=usr/postgres/9.6/include/server/optimizer/pathnode.h
file path=usr/postgres/9.6/include/server/optimizer/paths.h
file path=usr/postgres/9.6/include/server/optimizer/placeholder.h
file path=usr/postgres/9.6/include/server/optimizer/plancat.h
file path=usr/postgres/9.6/include/server/optimizer/planmain.h
file path=usr/postgres/9.6/include/server/optimizer/planner.h
file path=usr/postgres/9.6/include/server/optimizer/predtest.h
file path=usr/postgres/9.6/include/server/optimizer/prep.h
file path=usr/postgres/9.6/include/server/optimizer/restrictinfo.h
file path=usr/postgres/9.6/include/server/optimizer/subselect.h
file path=usr/postgres/9.6/include/server/optimizer/tlist.h
file path=usr/postgres/9.6/include/server/optimizer/var.h
file path=usr/postgres/9.6/include/server/parser/analyze.h
file path=usr/postgres/9.6/include/server/parser/gram.h
file path=usr/postgres/9.6/include/server/parser/gramparse.h
file path=usr/postgres/9.6/include/server/parser/kwlist.h
file path=usr/postgres/9.6/include/server/parser/parse_agg.h
file path=usr/postgres/9.6/include/server/parser/parse_clause.h
file path=usr/postgres/9.6/include/server/parser/parse_coerce.h
file path=usr/postgres/9.6/include/server/parser/parse_collate.h
file path=usr/postgres/9.6/include/server/parser/parse_cte.h
file path=usr/postgres/9.6/include/server/parser/parse_expr.h
file path=usr/postgres/9.6/include/server/parser/parse_func.h
file path=usr/postgres/9.6/include/server/parser/parse_node.h
file path=usr/postgres/9.6/include/server/parser/parse_oper.h
file path=usr/postgres/9.6/include/server/parser/parse_param.h
file path=usr/postgres/9.6/include/server/parser/parse_relation.h
file path=usr/postgres/9.6/include/server/parser/parse_target.h
file path=usr/postgres/9.6/include/server/parser/parse_type.h
file path=usr/postgres/9.6/include/server/parser/parse_utilcmd.h
file path=usr/postgres/9.6/include/server/parser/parser.h
file path=usr/postgres/9.6/include/server/parser/parsetree.h
file path=usr/postgres/9.6/include/server/parser/scanner.h
file path=usr/postgres/9.6/include/server/parser/scansup.h
file path=usr/postgres/9.6/include/server/pg_config-32.h
file path=usr/postgres/9.6/include/server/pg_config-64.h
file path=usr/postgres/9.6/include/server/pg_config_ext.h
file path=usr/postgres/9.6/include/server/pg_config_manual.h
file path=usr/postgres/9.6/include/server/pg_config_os.h
file path=usr/postgres/9.6/include/server/pg_getopt.h
file path=usr/postgres/9.6/include/server/pg_trace.h
file path=usr/postgres/9.6/include/server/pgstat.h
file path=usr/postgres/9.6/include/server/pgtar.h
file path=usr/postgres/9.6/include/server/pgtime.h
file path=usr/postgres/9.6/include/server/plperl.h
file path=usr/postgres/9.6/include/server/plpgsql.h
file path=usr/postgres/9.6/include/server/plpy_util.h
file path=usr/postgres/9.6/include/server/plpython.h
file path=usr/postgres/9.6/include/server/port.h
file path=usr/postgres/9.6/include/server/port/aix.h
file path=usr/postgres/9.6/include/server/port/atomics.h
file path=usr/postgres/9.6/include/server/port/atomics/arch-arm.h
file path=usr/postgres/9.6/include/server/port/atomics/arch-hppa.h
file path=usr/postgres/9.6/include/server/port/atomics/arch-ia64.h
file path=usr/postgres/9.6/include/server/port/atomics/arch-ppc.h
file path=usr/postgres/9.6/include/server/port/atomics/arch-x86.h
file path=usr/postgres/9.6/include/server/port/atomics/fallback.h
file path=usr/postgres/9.6/include/server/port/atomics/generic-acc.h
file path=usr/postgres/9.6/include/server/port/atomics/generic-gcc.h
file path=usr/postgres/9.6/include/server/port/atomics/generic-msvc.h
file path=usr/postgres/9.6/include/server/port/atomics/generic-sunpro.h
file path=usr/postgres/9.6/include/server/port/atomics/generic-xlc.h
file path=usr/postgres/9.6/include/server/port/atomics/generic.h
file path=usr/postgres/9.6/include/server/port/cygwin.h
file path=usr/postgres/9.6/include/server/port/darwin.h
file path=usr/postgres/9.6/include/server/port/freebsd.h
file path=usr/postgres/9.6/include/server/port/hpux.h
file path=usr/postgres/9.6/include/server/port/linux.h
file path=usr/postgres/9.6/include/server/port/netbsd.h
file path=usr/postgres/9.6/include/server/port/openbsd.h
file path=usr/postgres/9.6/include/server/port/pg_bswap.h
file path=usr/postgres/9.6/include/server/port/pg_crc32c.h
file path=usr/postgres/9.6/include/server/port/sco.h
file path=usr/postgres/9.6/include/server/port/solaris.h
file path=usr/postgres/9.6/include/server/port/unixware.h
file path=usr/postgres/9.6/include/server/port/win32.h
file path=usr/postgres/9.6/include/server/port/win32/arpa/inet.h
file path=usr/postgres/9.6/include/server/port/win32/dlfcn.h
file path=usr/postgres/9.6/include/server/port/win32/grp.h
file path=usr/postgres/9.6/include/server/port/win32/netdb.h
file path=usr/postgres/9.6/include/server/port/win32/netinet/in.h
file path=usr/postgres/9.6/include/server/port/win32/pwd.h
file path=usr/postgres/9.6/include/server/port/win32/sys/socket.h
file path=usr/postgres/9.6/include/server/port/win32/sys/wait.h
file path=usr/postgres/9.6/include/server/port/win32_msvc/dirent.h
file path=usr/postgres/9.6/include/server/port/win32_msvc/sys/file.h
file path=usr/postgres/9.6/include/server/port/win32_msvc/sys/param.h
file path=usr/postgres/9.6/include/server/port/win32_msvc/sys/time.h
file path=usr/postgres/9.6/include/server/port/win32_msvc/unistd.h
file path=usr/postgres/9.6/include/server/port/win32_msvc/utime.h
file path=usr/postgres/9.6/include/server/portability/instr_time.h
file path=usr/postgres/9.6/include/server/portability/mem.h
file path=usr/postgres/9.6/include/server/postgres.h
file path=usr/postgres/9.6/include/server/postgres_ext.h
file path=usr/postgres/9.6/include/server/postgres_fe.h
file path=usr/postgres/9.6/include/server/postmaster/autovacuum.h
file path=usr/postgres/9.6/include/server/postmaster/bgworker.h
file path=usr/postgres/9.6/include/server/postmaster/bgworker_internals.h
file path=usr/postgres/9.6/include/server/postmaster/bgwriter.h
file path=usr/postgres/9.6/include/server/postmaster/fork_process.h
file path=usr/postgres/9.6/include/server/postmaster/pgarch.h
file path=usr/postgres/9.6/include/server/postmaster/postmaster.h
file path=usr/postgres/9.6/include/server/postmaster/startup.h
file path=usr/postgres/9.6/include/server/postmaster/syslogger.h
file path=usr/postgres/9.6/include/server/postmaster/walwriter.h
file path=usr/postgres/9.6/include/server/ppport.h
file path=usr/postgres/9.6/include/server/regex/regcustom.h
file path=usr/postgres/9.6/include/server/regex/regerrs.h
file path=usr/postgres/9.6/include/server/regex/regex.h
file path=usr/postgres/9.6/include/server/regex/regexport.h
file path=usr/postgres/9.6/include/server/regex/regguts.h
file path=usr/postgres/9.6/include/server/replication/basebackup.h
file path=usr/postgres/9.6/include/server/replication/decode.h
file path=usr/postgres/9.6/include/server/replication/logical.h
file path=usr/postgres/9.6/include/server/replication/logicalfuncs.h
file path=usr/postgres/9.6/include/server/replication/message.h
file path=usr/postgres/9.6/include/server/replication/origin.h
file path=usr/postgres/9.6/include/server/replication/output_plugin.h
file path=usr/postgres/9.6/include/server/replication/reorderbuffer.h
file path=usr/postgres/9.6/include/server/replication/slot.h
file path=usr/postgres/9.6/include/server/replication/snapbuild.h
file path=usr/postgres/9.6/include/server/replication/syncrep.h
file path=usr/postgres/9.6/include/server/replication/walreceiver.h
file path=usr/postgres/9.6/include/server/replication/walsender.h
file path=usr/postgres/9.6/include/server/replication/walsender_private.h
file path=usr/postgres/9.6/include/server/rewrite/prs2lock.h
file path=usr/postgres/9.6/include/server/rewrite/rewriteDefine.h
file path=usr/postgres/9.6/include/server/rewrite/rewriteHandler.h
file path=usr/postgres/9.6/include/server/rewrite/rewriteManip.h
file path=usr/postgres/9.6/include/server/rewrite/rewriteRemove.h
file path=usr/postgres/9.6/include/server/rewrite/rewriteSupport.h
file path=usr/postgres/9.6/include/server/rewrite/rowsecurity.h
file path=usr/postgres/9.6/include/server/rusagestub.h
file path=usr/postgres/9.6/include/server/snowball/header.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/api.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/header.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_danish.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_dutch.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_english.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_finnish.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_french.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_german.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_hungarian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_italian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_norwegian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_porter.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_portuguese.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_spanish.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_1_swedish.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_ISO_8859_2_romanian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_KOI8_R_russian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_danish.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_dutch.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_english.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_finnish.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_french.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_german.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_hungarian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_italian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_norwegian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_porter.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_portuguese.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_romanian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_russian.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_spanish.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_swedish.h
file path=usr/postgres/9.6/include/server/snowball/libstemmer/stem_UTF_8_turkish.h
file path=usr/postgres/9.6/include/server/storage/backendid.h
file path=usr/postgres/9.6/include/server/storage/barrier.h
file path=usr/postgres/9.6/include/server/storage/block.h
file path=usr/postgres/9.6/include/server/storage/buf.h
file path=usr/postgres/9.6/include/server/storage/buf_internals.h
file path=usr/postgres/9.6/include/server/storage/buffile.h
file path=usr/postgres/9.6/include/server/storage/bufmgr.h
file path=usr/postgres/9.6/include/server/storage/bufpage.h
file path=usr/postgres/9.6/include/server/storage/checksum.h
file path=usr/postgres/9.6/include/server/storage/checksum_impl.h
file path=usr/postgres/9.6/include/server/storage/copydir.h
file path=usr/postgres/9.6/include/server/storage/dsm.h
file path=usr/postgres/9.6/include/server/storage/dsm_impl.h
file path=usr/postgres/9.6/include/server/storage/fd.h
file path=usr/postgres/9.6/include/server/storage/freespace.h
file path=usr/postgres/9.6/include/server/storage/fsm_internals.h
file path=usr/postgres/9.6/include/server/storage/indexfsm.h
file path=usr/postgres/9.6/include/server/storage/ipc.h
file path=usr/postgres/9.6/include/server/storage/item.h
file path=usr/postgres/9.6/include/server/storage/itemid.h
file path=usr/postgres/9.6/include/server/storage/itemptr.h
file path=usr/postgres/9.6/include/server/storage/large_object.h
file path=usr/postgres/9.6/include/server/storage/latch.h
file path=usr/postgres/9.6/include/server/storage/lmgr.h
file path=usr/postgres/9.6/include/server/storage/lock.h
file path=usr/postgres/9.6/include/server/storage/lockdefs.h
file path=usr/postgres/9.6/include/server/storage/lwlock.h
file path=usr/postgres/9.6/include/server/storage/lwlocknames.h
file path=usr/postgres/9.6/include/server/storage/off.h
file path=usr/postgres/9.6/include/server/storage/pg_sema.h
file path=usr/postgres/9.6/include/server/storage/pg_shmem.h
file path=usr/postgres/9.6/include/server/storage/pmsignal.h
file path=usr/postgres/9.6/include/server/storage/pos.h
file path=usr/postgres/9.6/include/server/storage/predicate.h
file path=usr/postgres/9.6/include/server/storage/predicate_internals.h
file path=usr/postgres/9.6/include/server/storage/proc.h
file path=usr/postgres/9.6/include/server/storage/procarray.h
file path=usr/postgres/9.6/include/server/storage/procsignal.h
file path=usr/postgres/9.6/include/server/storage/reinit.h
file path=usr/postgres/9.6/include/server/storage/relfilenode.h
file path=usr/postgres/9.6/include/server/storage/s_lock.h
file path=usr/postgres/9.6/include/server/storage/shm_mq.h
file path=usr/postgres/9.6/include/server/storage/shm_toc.h
file path=usr/postgres/9.6/include/server/storage/shmem.h
file path=usr/postgres/9.6/include/server/storage/sinval.h
file path=usr/postgres/9.6/include/server/storage/sinvaladt.h
file path=usr/postgres/9.6/include/server/storage/smgr.h
file path=usr/postgres/9.6/include/server/storage/spin.h
file path=usr/postgres/9.6/include/server/storage/standby.h
file path=usr/postgres/9.6/include/server/storage/standbydefs.h
file path=usr/postgres/9.6/include/server/tcop/deparse_utility.h
file path=usr/postgres/9.6/include/server/tcop/dest.h
file path=usr/postgres/9.6/include/server/tcop/fastpath.h
file path=usr/postgres/9.6/include/server/tcop/pquery.h
file path=usr/postgres/9.6/include/server/tcop/tcopprot.h
file path=usr/postgres/9.6/include/server/tcop/utility.h
file path=usr/postgres/9.6/include/server/tsearch/dicts/regis.h
file path=usr/postgres/9.6/include/server/tsearch/dicts/spell.h
file path=usr/postgres/9.6/include/server/tsearch/ts_cache.h
file path=usr/postgres/9.6/include/server/tsearch/ts_locale.h
file path=usr/postgres/9.6/include/server/tsearch/ts_public.h
file path=usr/postgres/9.6/include/server/tsearch/ts_type.h
file path=usr/postgres/9.6/include/server/tsearch/ts_utils.h
file path=usr/postgres/9.6/include/server/utils/acl.h
file path=usr/postgres/9.6/include/server/utils/aclchk_internal.h
file path=usr/postgres/9.6/include/server/utils/array.h
file path=usr/postgres/9.6/include/server/utils/arrayaccess.h
file path=usr/postgres/9.6/include/server/utils/ascii.h
file path=usr/postgres/9.6/include/server/utils/attoptcache.h
file path=usr/postgres/9.6/include/server/utils/builtins.h
file path=usr/postgres/9.6/include/server/utils/bytea.h
file path=usr/postgres/9.6/include/server/utils/cash.h
file path=usr/postgres/9.6/include/server/utils/catcache.h
file path=usr/postgres/9.6/include/server/utils/combocid.h
file path=usr/postgres/9.6/include/server/utils/date.h
file path=usr/postgres/9.6/include/server/utils/datetime.h
file path=usr/postgres/9.6/include/server/utils/datum.h
file path=usr/postgres/9.6/include/server/utils/dynahash.h
file path=usr/postgres/9.6/include/server/utils/dynamic_loader.h
file path=usr/postgres/9.6/include/server/utils/elog.h
file path=usr/postgres/9.6/include/server/utils/errcodes.h
file path=usr/postgres/9.6/include/server/utils/evtcache.h
file path=usr/postgres/9.6/include/server/utils/expandeddatum.h
file path=usr/postgres/9.6/include/server/utils/fmgroids.h
file path=usr/postgres/9.6/include/server/utils/fmgrtab.h
file path=usr/postgres/9.6/include/server/utils/formatting.h
file path=usr/postgres/9.6/include/server/utils/geo_decls.h
file path=usr/postgres/9.6/include/server/utils/guc.h
file path=usr/postgres/9.6/include/server/utils/guc_tables.h
file path=usr/postgres/9.6/include/server/utils/help_config.h
file path=usr/postgres/9.6/include/server/utils/hsearch.h
file path=usr/postgres/9.6/include/server/utils/index_selfuncs.h
file path=usr/postgres/9.6/include/server/utils/inet.h
file path=usr/postgres/9.6/include/server/utils/int8.h
file path=usr/postgres/9.6/include/server/utils/inval.h
file path=usr/postgres/9.6/include/server/utils/json.h
file path=usr/postgres/9.6/include/server/utils/jsonapi.h
file path=usr/postgres/9.6/include/server/utils/jsonb.h
file path=usr/postgres/9.6/include/server/utils/logtape.h
file path=usr/postgres/9.6/include/server/utils/lsyscache.h
file path=usr/postgres/9.6/include/server/utils/memdebug.h
file path=usr/postgres/9.6/include/server/utils/memutils.h
file path=usr/postgres/9.6/include/server/utils/nabstime.h
file path=usr/postgres/9.6/include/server/utils/numeric.h
file path=usr/postgres/9.6/include/server/utils/palloc.h
file path=usr/postgres/9.6/include/server/utils/pg_crc.h
file path=usr/postgres/9.6/include/server/utils/pg_locale.h
file path=usr/postgres/9.6/include/server/utils/pg_lsn.h
file path=usr/postgres/9.6/include/server/utils/pg_rusage.h
file path=usr/postgres/9.6/include/server/utils/plancache.h
file path=usr/postgres/9.6/include/server/utils/portal.h
file path=usr/postgres/9.6/include/server/utils/probes.h
file path=usr/postgres/9.6/include/server/utils/ps_status.h
file path=usr/postgres/9.6/include/server/utils/rangetypes.h
file path=usr/postgres/9.6/include/server/utils/rel.h
file path=usr/postgres/9.6/include/server/utils/relcache.h
file path=usr/postgres/9.6/include/server/utils/relfilenodemap.h
file path=usr/postgres/9.6/include/server/utils/relmapper.h
file path=usr/postgres/9.6/include/server/utils/reltrigger.h
file path=usr/postgres/9.6/include/server/utils/resowner.h
file path=usr/postgres/9.6/include/server/utils/resowner_private.h
file path=usr/postgres/9.6/include/server/utils/rls.h
file path=usr/postgres/9.6/include/server/utils/ruleutils.h
file path=usr/postgres/9.6/include/server/utils/sampling.h
file path=usr/postgres/9.6/include/server/utils/selfuncs.h
file path=usr/postgres/9.6/include/server/utils/snapmgr.h
file path=usr/postgres/9.6/include/server/utils/snapshot.h
file path=usr/postgres/9.6/include/server/utils/sortsupport.h
file path=usr/postgres/9.6/include/server/utils/spccache.h
file path=usr/postgres/9.6/include/server/utils/syscache.h
file path=usr/postgres/9.6/include/server/utils/timeout.h
file path=usr/postgres/9.6/include/server/utils/timestamp.h
file path=usr/postgres/9.6/include/server/utils/tqual.h
file path=usr/postgres/9.6/include/server/utils/tuplesort.h
file path=usr/postgres/9.6/include/server/utils/tuplestore.h
file path=usr/postgres/9.6/include/server/utils/typcache.h
file path=usr/postgres/9.6/include/server/utils/tzparser.h
file path=usr/postgres/9.6/include/server/utils/uuid.h
file path=usr/postgres/9.6/include/server/utils/varbit.h
file path=usr/postgres/9.6/include/server/utils/xml.h
file path=usr/postgres/9.6/include/server/windowapi.h
file path=usr/postgres/9.6/include/sql3types.h
file path=usr/postgres/9.6/include/sqlca.h
file path=usr/postgres/9.6/include/sqlda-compat.h
file path=usr/postgres/9.6/include/sqlda-native.h
file path=usr/postgres/9.6/include/sqlda.h
file path=usr/postgres/9.6/lib/$(MACH64)/pgxs/config/install-sh mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/pgxs/config/missing
file path=usr/postgres/9.6/lib/$(MACH64)/pgxs/src/Makefile.global
file path=usr/postgres/9.6/lib/$(MACH64)/pgxs/src/Makefile.port
file path=usr/postgres/9.6/lib/$(MACH64)/pgxs/src/Makefile.shlib
file path=usr/postgres/9.6/lib/$(MACH64)/pgxs/src/makefiles/pgxs.mk
file path=usr/postgres/9.6/lib/$(MACH64)/pgxs/src/nls-global.mk
file path=usr/postgres/9.6/lib/$(MACH64)/pgxs/src/test/regress/pg_regress \
    mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/libpgcommon.a
file path=usr/postgres/9.6/lib/$(MACH64)/libpgfeutils.a
file path=usr/postgres/9.6/lib/$(MACH64)/libpgport.a
file path=usr/postgres/9.6/lib/pgxs/config/install-sh mode=0555
file path=usr/postgres/9.6/lib/pgxs/config/missing
file path=usr/postgres/9.6/lib/pgxs/src/Makefile.global
file path=usr/postgres/9.6/lib/pgxs/src/Makefile.port
file path=usr/postgres/9.6/lib/pgxs/src/Makefile.shlib
file path=usr/postgres/9.6/lib/pgxs/src/makefiles/pgxs.mk
file path=usr/postgres/9.6/lib/pgxs/src/nls-global.mk
file path=usr/postgres/9.6/lib/libpgcommon.a
file path=usr/postgres/9.6/lib/libpgfeutils.a
file path=usr/postgres/9.6/lib/libpgport.a
file path=usr/share/locale/cs/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/nb/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/ro/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/ta/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/tr/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_config-9.6.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/ecpg-9.6.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_config-9.6.mo
link path=usr/bin/pg_config target=../postgres/9.6/bin/pg_config mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/ecpg target=../postgres/9.6/bin/ecpg mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/$(MACH32)/pg_config target=../../postgres/9.6/bin/$(MACH32)/pg_config mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/$(MACH32)/ecpg target=../../postgres/9.6/bin/$(MACH32)/ecpg mediator=postgres mediator-implementation=postgresql mediator-version=9.6
components/database/postgresql-96/postgresql96-documentation.p5m
New file
@@ -0,0 +1,1632 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2016 Alexander Pyhalov
#
set name=pkg.fmri value=pkg:/database/postgres-96/documentation@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.summary value="PostgreSQL documentation and man pages"
set name=info.classification value=org.opensolaris.category.2008:System/Databases
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
license COPYRIGHT license="PostgreSQL"
<transform file path=usr.*/man/.+ -> default mangler.man.stability uncommitted>
file path=usr/postgres/9.6/doc/extension/autoinc.example
file path=usr/postgres/9.6/doc/extension/insert_username.example
file path=usr/postgres/9.6/doc/extension/moddatetime.example
file path=usr/postgres/9.6/doc/extension/refint.example
file path=usr/postgres/9.6/doc/extension/timetravel.example
file path=usr/postgres/9.6/doc/html/LEGALNOTICE.html
file path=usr/postgres/9.6/doc/html/acronyms.html
file path=usr/postgres/9.6/doc/html/admin.html
file path=usr/postgres/9.6/doc/html/adminpack.html
file path=usr/postgres/9.6/doc/html/app-clusterdb.html
file path=usr/postgres/9.6/doc/html/app-createdb.html
file path=usr/postgres/9.6/doc/html/app-createlang.html
file path=usr/postgres/9.6/doc/html/app-createuser.html
file path=usr/postgres/9.6/doc/html/app-dropdb.html
file path=usr/postgres/9.6/doc/html/app-droplang.html
file path=usr/postgres/9.6/doc/html/app-dropuser.html
file path=usr/postgres/9.6/doc/html/app-ecpg.html
file path=usr/postgres/9.6/doc/html/app-initdb.html
file path=usr/postgres/9.6/doc/html/app-pg-ctl.html
file path=usr/postgres/9.6/doc/html/app-pg-dumpall.html
file path=usr/postgres/9.6/doc/html/app-pg-isready.html
file path=usr/postgres/9.6/doc/html/app-pgbasebackup.html
file path=usr/postgres/9.6/doc/html/app-pgconfig.html
file path=usr/postgres/9.6/doc/html/app-pgcontroldata.html
file path=usr/postgres/9.6/doc/html/app-pgdump.html
file path=usr/postgres/9.6/doc/html/app-pgreceivexlog.html
file path=usr/postgres/9.6/doc/html/app-pgrecvlogical.html
file path=usr/postgres/9.6/doc/html/app-pgresetxlog.html
file path=usr/postgres/9.6/doc/html/app-pgrestore.html
file path=usr/postgres/9.6/doc/html/app-pgrewind.html
file path=usr/postgres/9.6/doc/html/app-postgres.html
file path=usr/postgres/9.6/doc/html/app-postmaster.html
file path=usr/postgres/9.6/doc/html/app-psql.html
file path=usr/postgres/9.6/doc/html/app-reindexdb.html
file path=usr/postgres/9.6/doc/html/app-vacuumdb.html
file path=usr/postgres/9.6/doc/html/appendixes.html
file path=usr/postgres/9.6/doc/html/applevel-consistency.html
file path=usr/postgres/9.6/doc/html/archive-recovery-settings.html
file path=usr/postgres/9.6/doc/html/arrays.html
file path=usr/postgres/9.6/doc/html/auth-delay.html
file path=usr/postgres/9.6/doc/html/auth-methods.html
file path=usr/postgres/9.6/doc/html/auth-pg-hba-conf.html
file path=usr/postgres/9.6/doc/html/auth-username-maps.html
file path=usr/postgres/9.6/doc/html/auto-explain.html
file path=usr/postgres/9.6/doc/html/backup-dump.html
file path=usr/postgres/9.6/doc/html/backup-file.html
file path=usr/postgres/9.6/doc/html/backup.html
file path=usr/postgres/9.6/doc/html/bgworker.html
file path=usr/postgres/9.6/doc/html/biblio.html
file path=usr/postgres/9.6/doc/html/bki-commands.html
file path=usr/postgres/9.6/doc/html/bki-example.html
file path=usr/postgres/9.6/doc/html/bki-format.html
file path=usr/postgres/9.6/doc/html/bki-structure.html
file path=usr/postgres/9.6/doc/html/bki.html
file path=usr/postgres/9.6/doc/html/bloom.html
file path=usr/postgres/9.6/doc/html/bookindex.html
file path=usr/postgres/9.6/doc/html/brin-builtin-opclasses.html
file path=usr/postgres/9.6/doc/html/brin-extensibility.html
file path=usr/postgres/9.6/doc/html/brin-intro.html
file path=usr/postgres/9.6/doc/html/brin.html
file path=usr/postgres/9.6/doc/html/btree-gin.html
file path=usr/postgres/9.6/doc/html/btree-gist.html
file path=usr/postgres/9.6/doc/html/bug-reporting.html
file path=usr/postgres/9.6/doc/html/catalog-pg-aggregate.html
file path=usr/postgres/9.6/doc/html/catalog-pg-am.html
file path=usr/postgres/9.6/doc/html/catalog-pg-amop.html
file path=usr/postgres/9.6/doc/html/catalog-pg-amproc.html
file path=usr/postgres/9.6/doc/html/catalog-pg-attrdef.html
file path=usr/postgres/9.6/doc/html/catalog-pg-attribute.html
file path=usr/postgres/9.6/doc/html/catalog-pg-auth-members.html
file path=usr/postgres/9.6/doc/html/catalog-pg-authid.html
file path=usr/postgres/9.6/doc/html/catalog-pg-cast.html
file path=usr/postgres/9.6/doc/html/catalog-pg-class.html
file path=usr/postgres/9.6/doc/html/catalog-pg-collation.html
file path=usr/postgres/9.6/doc/html/catalog-pg-constraint.html
file path=usr/postgres/9.6/doc/html/catalog-pg-conversion.html
file path=usr/postgres/9.6/doc/html/catalog-pg-database.html
file path=usr/postgres/9.6/doc/html/catalog-pg-db-role-setting.html
file path=usr/postgres/9.6/doc/html/catalog-pg-default-acl.html
file path=usr/postgres/9.6/doc/html/catalog-pg-depend.html
file path=usr/postgres/9.6/doc/html/catalog-pg-description.html
file path=usr/postgres/9.6/doc/html/catalog-pg-enum.html
file path=usr/postgres/9.6/doc/html/catalog-pg-event-trigger.html
file path=usr/postgres/9.6/doc/html/catalog-pg-extension.html
file path=usr/postgres/9.6/doc/html/catalog-pg-foreign-data-wrapper.html
file path=usr/postgres/9.6/doc/html/catalog-pg-foreign-server.html
file path=usr/postgres/9.6/doc/html/catalog-pg-foreign-table.html
file path=usr/postgres/9.6/doc/html/catalog-pg-index.html
file path=usr/postgres/9.6/doc/html/catalog-pg-inherits.html
file path=usr/postgres/9.6/doc/html/catalog-pg-init-privs.html
file path=usr/postgres/9.6/doc/html/catalog-pg-language.html
file path=usr/postgres/9.6/doc/html/catalog-pg-largeobject-metadata.html
file path=usr/postgres/9.6/doc/html/catalog-pg-largeobject.html
file path=usr/postgres/9.6/doc/html/catalog-pg-namespace.html
file path=usr/postgres/9.6/doc/html/catalog-pg-opclass.html
file path=usr/postgres/9.6/doc/html/catalog-pg-operator.html
file path=usr/postgres/9.6/doc/html/catalog-pg-opfamily.html
file path=usr/postgres/9.6/doc/html/catalog-pg-pltemplate.html
file path=usr/postgres/9.6/doc/html/catalog-pg-policy.html
file path=usr/postgres/9.6/doc/html/catalog-pg-proc.html
file path=usr/postgres/9.6/doc/html/catalog-pg-range.html
file path=usr/postgres/9.6/doc/html/catalog-pg-replication-origin.html
file path=usr/postgres/9.6/doc/html/catalog-pg-rewrite.html
file path=usr/postgres/9.6/doc/html/catalog-pg-seclabel.html
file path=usr/postgres/9.6/doc/html/catalog-pg-shdepend.html
file path=usr/postgres/9.6/doc/html/catalog-pg-shdescription.html
file path=usr/postgres/9.6/doc/html/catalog-pg-shseclabel.html
file path=usr/postgres/9.6/doc/html/catalog-pg-statistic.html
file path=usr/postgres/9.6/doc/html/catalog-pg-tablespace.html
file path=usr/postgres/9.6/doc/html/catalog-pg-transform.html
file path=usr/postgres/9.6/doc/html/catalog-pg-trigger.html
file path=usr/postgres/9.6/doc/html/catalog-pg-ts-config-map.html
file path=usr/postgres/9.6/doc/html/catalog-pg-ts-config.html
file path=usr/postgres/9.6/doc/html/catalog-pg-ts-dict.html
file path=usr/postgres/9.6/doc/html/catalog-pg-ts-parser.html
file path=usr/postgres/9.6/doc/html/catalog-pg-ts-template.html
file path=usr/postgres/9.6/doc/html/catalog-pg-type.html
file path=usr/postgres/9.6/doc/html/catalog-pg-user-mapping.html
file path=usr/postgres/9.6/doc/html/catalogs-overview.html
file path=usr/postgres/9.6/doc/html/catalogs.html
file path=usr/postgres/9.6/doc/html/charset.html
file path=usr/postgres/9.6/doc/html/chkpass.html
file path=usr/postgres/9.6/doc/html/citext.html
file path=usr/postgres/9.6/doc/html/client-authentication-problems.html
file path=usr/postgres/9.6/doc/html/client-authentication.html
file path=usr/postgres/9.6/doc/html/client-interfaces.html
file path=usr/postgres/9.6/doc/html/collation.html
file path=usr/postgres/9.6/doc/html/config-setting.html
file path=usr/postgres/9.6/doc/html/connect-estab.html
file path=usr/postgres/9.6/doc/html/continuous-archiving.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-build-sql-delete.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-build-sql-insert.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-build-sql-update.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-cancel-query.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-close.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-connect-u.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-connect.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-disconnect.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-error-message.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-exec.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-fetch.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-function.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-get-connections.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-get-notify.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-get-pkey.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-get-result.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-is-busy.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-open.html
file path=usr/postgres/9.6/doc/html/contrib-dblink-send-query.html
file path=usr/postgres/9.6/doc/html/contrib-prog-client.html
file path=usr/postgres/9.6/doc/html/contrib-prog-server.html
file path=usr/postgres/9.6/doc/html/contrib-prog.html
file path=usr/postgres/9.6/doc/html/contrib-spi.html
file path=usr/postgres/9.6/doc/html/contrib.html
file path=usr/postgres/9.6/doc/html/creating-cluster.html
file path=usr/postgres/9.6/doc/html/cube.html
file path=usr/postgres/9.6/doc/html/custom-scan-execution.html
file path=usr/postgres/9.6/doc/html/custom-scan-path.html
file path=usr/postgres/9.6/doc/html/custom-scan-plan.html
file path=usr/postgres/9.6/doc/html/custom-scan.html
file path=usr/postgres/9.6/doc/html/database-roles.html
file path=usr/postgres/9.6/doc/html/datatype-binary.html
file path=usr/postgres/9.6/doc/html/datatype-bit.html
file path=usr/postgres/9.6/doc/html/datatype-boolean.html
file path=usr/postgres/9.6/doc/html/datatype-character.html
file path=usr/postgres/9.6/doc/html/datatype-datetime.html
file path=usr/postgres/9.6/doc/html/datatype-enum.html
file path=usr/postgres/9.6/doc/html/datatype-geometric.html
file path=usr/postgres/9.6/doc/html/datatype-json.html
file path=usr/postgres/9.6/doc/html/datatype-money.html
file path=usr/postgres/9.6/doc/html/datatype-net-types.html
file path=usr/postgres/9.6/doc/html/datatype-numeric.html
file path=usr/postgres/9.6/doc/html/datatype-oid.html
file path=usr/postgres/9.6/doc/html/datatype-pg-lsn.html
file path=usr/postgres/9.6/doc/html/datatype-pseudo.html
file path=usr/postgres/9.6/doc/html/datatype-textsearch.html
file path=usr/postgres/9.6/doc/html/datatype-uuid.html
file path=usr/postgres/9.6/doc/html/datatype-xml.html
file path=usr/postgres/9.6/doc/html/datatype.html
file path=usr/postgres/9.6/doc/html/datetime-appendix.html
file path=usr/postgres/9.6/doc/html/datetime-config-files.html
file path=usr/postgres/9.6/doc/html/datetime-input-rules.html
file path=usr/postgres/9.6/doc/html/datetime-keywords.html
file path=usr/postgres/9.6/doc/html/datetime-units-history.html
file path=usr/postgres/9.6/doc/html/dblink.html
file path=usr/postgres/9.6/doc/html/ddl-alter.html
file path=usr/postgres/9.6/doc/html/ddl-basics.html
file path=usr/postgres/9.6/doc/html/ddl-constraints.html
file path=usr/postgres/9.6/doc/html/ddl-default.html
file path=usr/postgres/9.6/doc/html/ddl-depend.html
file path=usr/postgres/9.6/doc/html/ddl-foreign-data.html
file path=usr/postgres/9.6/doc/html/ddl-inherit.html
file path=usr/postgres/9.6/doc/html/ddl-others.html
file path=usr/postgres/9.6/doc/html/ddl-partitioning.html
file path=usr/postgres/9.6/doc/html/ddl-priv.html
file path=usr/postgres/9.6/doc/html/ddl-rowsecurity.html
file path=usr/postgres/9.6/doc/html/ddl-schemas.html
file path=usr/postgres/9.6/doc/html/ddl-system-columns.html
file path=usr/postgres/9.6/doc/html/ddl.html
file path=usr/postgres/9.6/doc/html/default-roles.html
file path=usr/postgres/9.6/doc/html/dict-int.html
file path=usr/postgres/9.6/doc/html/dict-xsyn.html
file path=usr/postgres/9.6/doc/html/different-replication-solutions.html
file path=usr/postgres/9.6/doc/html/disk-full.html
file path=usr/postgres/9.6/doc/html/disk-usage.html
file path=usr/postgres/9.6/doc/html/diskusage.html
file path=usr/postgres/9.6/doc/html/dml-delete.html
file path=usr/postgres/9.6/doc/html/dml-insert.html
file path=usr/postgres/9.6/doc/html/dml-update.html
file path=usr/postgres/9.6/doc/html/dml.html
file path=usr/postgres/9.6/doc/html/docguide-authoring.html
file path=usr/postgres/9.6/doc/html/docguide-build.html
file path=usr/postgres/9.6/doc/html/docguide-docbook.html
file path=usr/postgres/9.6/doc/html/docguide-style.html
file path=usr/postgres/9.6/doc/html/docguide-toolsets.html
file path=usr/postgres/9.6/doc/html/docguide.html
file path=usr/postgres/9.6/doc/html/dynamic-trace.html
file path=usr/postgres/9.6/doc/html/earthdistance.html
file path=usr/postgres/9.6/doc/html/ecpg-commands.html
file path=usr/postgres/9.6/doc/html/ecpg-concept.html
file path=usr/postgres/9.6/doc/html/ecpg-connect.html
file path=usr/postgres/9.6/doc/html/ecpg-cpp.html
file path=usr/postgres/9.6/doc/html/ecpg-descriptors.html
file path=usr/postgres/9.6/doc/html/ecpg-develop.html
file path=usr/postgres/9.6/doc/html/ecpg-dynamic.html
file path=usr/postgres/9.6/doc/html/ecpg-errors.html
file path=usr/postgres/9.6/doc/html/ecpg-informix-compat.html
file path=usr/postgres/9.6/doc/html/ecpg-library.html
file path=usr/postgres/9.6/doc/html/ecpg-lo.html
file path=usr/postgres/9.6/doc/html/ecpg-pgtypes.html
file path=usr/postgres/9.6/doc/html/ecpg-preproc.html
file path=usr/postgres/9.6/doc/html/ecpg-process.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-allocate-descriptor.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-commands.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-connect.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-deallocate-descriptor.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-declare.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-describe.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-disconnect.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-execute-immediate.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-get-descriptor.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-open.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-prepare.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-set-autocommit.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-set-connection.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-set-descriptor.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-type.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-var.html
file path=usr/postgres/9.6/doc/html/ecpg-sql-whenever.html
file path=usr/postgres/9.6/doc/html/ecpg-variables.html
file path=usr/postgres/9.6/doc/html/ecpg.html
file path=usr/postgres/9.6/doc/html/encryption-options.html
file path=usr/postgres/9.6/doc/html/errcodes-appendix.html
file path=usr/postgres/9.6/doc/html/error-message-reporting.html
file path=usr/postgres/9.6/doc/html/error-style-guide.html
file path=usr/postgres/9.6/doc/html/event-log-registration.html
file path=usr/postgres/9.6/doc/html/event-trigger-definition.html
file path=usr/postgres/9.6/doc/html/event-trigger-example.html
file path=usr/postgres/9.6/doc/html/event-trigger-interface.html
file path=usr/postgres/9.6/doc/html/event-trigger-matrix.html
file path=usr/postgres/9.6/doc/html/event-trigger-table-rewrite-example.html
file path=usr/postgres/9.6/doc/html/event-triggers.html
file path=usr/postgres/9.6/doc/html/executor.html
file path=usr/postgres/9.6/doc/html/explicit-joins.html
file path=usr/postgres/9.6/doc/html/explicit-locking.html
file path=usr/postgres/9.6/doc/html/extend-extensions.html
file path=usr/postgres/9.6/doc/html/extend-how.html
file path=usr/postgres/9.6/doc/html/extend-pgxs.html
file path=usr/postgres/9.6/doc/html/extend-type-system.html
file path=usr/postgres/9.6/doc/html/extend.html
file path=usr/postgres/9.6/doc/html/external-admin-tools.html
file path=usr/postgres/9.6/doc/html/external-extensions.html
file path=usr/postgres/9.6/doc/html/external-interfaces.html
file path=usr/postgres/9.6/doc/html/external-pl.html
file path=usr/postgres/9.6/doc/html/external-projects.html
file path=usr/postgres/9.6/doc/html/fdw-callbacks.html
file path=usr/postgres/9.6/doc/html/fdw-functions.html
file path=usr/postgres/9.6/doc/html/fdw-helpers.html
file path=usr/postgres/9.6/doc/html/fdw-planning.html
file path=usr/postgres/9.6/doc/html/fdw-row-locking.html
file path=usr/postgres/9.6/doc/html/fdwhandler.html
file path=usr/postgres/9.6/doc/html/features-sql-standard.html
file path=usr/postgres/9.6/doc/html/features.html
file path=usr/postgres/9.6/doc/html/file-fdw.html
file path=usr/postgres/9.6/doc/html/functions-admin.html
file path=usr/postgres/9.6/doc/html/functions-aggregate.html
file path=usr/postgres/9.6/doc/html/functions-array.html
file path=usr/postgres/9.6/doc/html/functions-binarystring.html
file path=usr/postgres/9.6/doc/html/functions-bitstring.html
file path=usr/postgres/9.6/doc/html/functions-comparison.html
file path=usr/postgres/9.6/doc/html/functions-comparisons.html
file path=usr/postgres/9.6/doc/html/functions-conditional.html
file path=usr/postgres/9.6/doc/html/functions-datetime.html
file path=usr/postgres/9.6/doc/html/functions-enum.html
file path=usr/postgres/9.6/doc/html/functions-event-triggers.html
file path=usr/postgres/9.6/doc/html/functions-formatting.html
file path=usr/postgres/9.6/doc/html/functions-geometry.html
file path=usr/postgres/9.6/doc/html/functions-info.html
file path=usr/postgres/9.6/doc/html/functions-json.html
file path=usr/postgres/9.6/doc/html/functions-logical.html
file path=usr/postgres/9.6/doc/html/functions-matching.html
file path=usr/postgres/9.6/doc/html/functions-math.html
file path=usr/postgres/9.6/doc/html/functions-net.html
file path=usr/postgres/9.6/doc/html/functions-range.html
file path=usr/postgres/9.6/doc/html/functions-sequence.html
file path=usr/postgres/9.6/doc/html/functions-srf.html
file path=usr/postgres/9.6/doc/html/functions-string.html
file path=usr/postgres/9.6/doc/html/functions-subquery.html
file path=usr/postgres/9.6/doc/html/functions-textsearch.html
file path=usr/postgres/9.6/doc/html/functions-trigger.html
file path=usr/postgres/9.6/doc/html/functions-window.html
file path=usr/postgres/9.6/doc/html/functions-xml.html
file path=usr/postgres/9.6/doc/html/functions.html
file path=usr/postgres/9.6/doc/html/fuzzystrmatch.html
file path=usr/postgres/9.6/doc/html/generic-wal.html
file path=usr/postgres/9.6/doc/html/geqo-biblio.html
file path=usr/postgres/9.6/doc/html/geqo-intro.html
file path=usr/postgres/9.6/doc/html/geqo-intro2.html
file path=usr/postgres/9.6/doc/html/geqo-pg-intro.html
file path=usr/postgres/9.6/doc/html/geqo.html
file path=usr/postgres/9.6/doc/html/gin-builtin-opclasses.html
file path=usr/postgres/9.6/doc/html/gin-examples.html
file path=usr/postgres/9.6/doc/html/gin-extensibility.html
file path=usr/postgres/9.6/doc/html/gin-implementation.html
file path=usr/postgres/9.6/doc/html/gin-intro.html
file path=usr/postgres/9.6/doc/html/gin-limit.html
file path=usr/postgres/9.6/doc/html/gin-tips.html
file path=usr/postgres/9.6/doc/html/gin.html
file path=usr/postgres/9.6/doc/html/gist-builtin-opclasses.html
file path=usr/postgres/9.6/doc/html/gist-examples.html
file path=usr/postgres/9.6/doc/html/gist-extensibility.html
file path=usr/postgres/9.6/doc/html/gist-implementation.html
file path=usr/postgres/9.6/doc/html/gist-intro.html
file path=usr/postgres/9.6/doc/html/gist.html
file path=usr/postgres/9.6/doc/html/git.html
file path=usr/postgres/9.6/doc/html/high-availability.html
file path=usr/postgres/9.6/doc/html/history.html
file path=usr/postgres/9.6/doc/html/hot-standby.html
file path=usr/postgres/9.6/doc/html/how-parallel-query-works.html
file path=usr/postgres/9.6/doc/html/hstore.html
file path=usr/postgres/9.6/doc/html/index-api.html
file path=usr/postgres/9.6/doc/html/index-cost-estimation.html
file path=usr/postgres/9.6/doc/html/index-functions.html
file path=usr/postgres/9.6/doc/html/index-locking.html
file path=usr/postgres/9.6/doc/html/index-scanning.html
file path=usr/postgres/9.6/doc/html/index-unique-checks.html
file path=usr/postgres/9.6/doc/html/index.html
file path=usr/postgres/9.6/doc/html/indexam.html
file path=usr/postgres/9.6/doc/html/indexes-bitmap-scans.html
file path=usr/postgres/9.6/doc/html/indexes-collations.html
file path=usr/postgres/9.6/doc/html/indexes-examine.html
file path=usr/postgres/9.6/doc/html/indexes-expressional.html
file path=usr/postgres/9.6/doc/html/indexes-index-only-scans.html
file path=usr/postgres/9.6/doc/html/indexes-intro.html
file path=usr/postgres/9.6/doc/html/indexes-multicolumn.html
file path=usr/postgres/9.6/doc/html/indexes-opclass.html
file path=usr/postgres/9.6/doc/html/indexes-ordering.html
file path=usr/postgres/9.6/doc/html/indexes-partial.html
file path=usr/postgres/9.6/doc/html/indexes-types.html
file path=usr/postgres/9.6/doc/html/indexes-unique.html
file path=usr/postgres/9.6/doc/html/indexes.html
file path=usr/postgres/9.6/doc/html/information-schema.html
file path=usr/postgres/9.6/doc/html/infoschema-administrable-role-authorizations.html
file path=usr/postgres/9.6/doc/html/infoschema-applicable-roles.html
file path=usr/postgres/9.6/doc/html/infoschema-attributes.html
file path=usr/postgres/9.6/doc/html/infoschema-character-sets.html
file path=usr/postgres/9.6/doc/html/infoschema-check-constraint-routine-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-check-constraints.html
file path=usr/postgres/9.6/doc/html/infoschema-collation-character-set-applicab.html
file path=usr/postgres/9.6/doc/html/infoschema-collations.html
file path=usr/postgres/9.6/doc/html/infoschema-column-domain-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-column-options.html
file path=usr/postgres/9.6/doc/html/infoschema-column-privileges.html
file path=usr/postgres/9.6/doc/html/infoschema-column-udt-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-columns.html
file path=usr/postgres/9.6/doc/html/infoschema-constraint-column-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-constraint-table-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-data-type-privileges.html
file path=usr/postgres/9.6/doc/html/infoschema-datatypes.html
file path=usr/postgres/9.6/doc/html/infoschema-domain-constraints.html
file path=usr/postgres/9.6/doc/html/infoschema-domain-udt-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-domains.html
file path=usr/postgres/9.6/doc/html/infoschema-element-types.html
file path=usr/postgres/9.6/doc/html/infoschema-enabled-roles.html
file path=usr/postgres/9.6/doc/html/infoschema-foreign-data-wrapper-options.html
file path=usr/postgres/9.6/doc/html/infoschema-foreign-data-wrappers.html
file path=usr/postgres/9.6/doc/html/infoschema-foreign-server-options.html
file path=usr/postgres/9.6/doc/html/infoschema-foreign-servers.html
file path=usr/postgres/9.6/doc/html/infoschema-foreign-table-options.html
file path=usr/postgres/9.6/doc/html/infoschema-foreign-tables.html
file path=usr/postgres/9.6/doc/html/infoschema-information-schema-catalog-name.html
file path=usr/postgres/9.6/doc/html/infoschema-key-column-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-parameters.html
file path=usr/postgres/9.6/doc/html/infoschema-referential-constraints.html
file path=usr/postgres/9.6/doc/html/infoschema-role-column-grants.html
file path=usr/postgres/9.6/doc/html/infoschema-role-routine-grants.html
file path=usr/postgres/9.6/doc/html/infoschema-role-table-grants.html
file path=usr/postgres/9.6/doc/html/infoschema-role-udt-grants.html
file path=usr/postgres/9.6/doc/html/infoschema-role-usage-grants.html
file path=usr/postgres/9.6/doc/html/infoschema-routine-privileges.html
file path=usr/postgres/9.6/doc/html/infoschema-routines.html
file path=usr/postgres/9.6/doc/html/infoschema-schema.html
file path=usr/postgres/9.6/doc/html/infoschema-schemata.html
file path=usr/postgres/9.6/doc/html/infoschema-sequences.html
file path=usr/postgres/9.6/doc/html/infoschema-sql-features.html
file path=usr/postgres/9.6/doc/html/infoschema-sql-implementation-info.html
file path=usr/postgres/9.6/doc/html/infoschema-sql-languages.html
file path=usr/postgres/9.6/doc/html/infoschema-sql-packages.html
file path=usr/postgres/9.6/doc/html/infoschema-sql-parts.html
file path=usr/postgres/9.6/doc/html/infoschema-sql-sizing-profiles.html
file path=usr/postgres/9.6/doc/html/infoschema-sql-sizing.html
file path=usr/postgres/9.6/doc/html/infoschema-table-constraints.html
file path=usr/postgres/9.6/doc/html/infoschema-table-privileges.html
file path=usr/postgres/9.6/doc/html/infoschema-tables.html
file path=usr/postgres/9.6/doc/html/infoschema-transforms.html
file path=usr/postgres/9.6/doc/html/infoschema-triggered-update-columns.html
file path=usr/postgres/9.6/doc/html/infoschema-triggers.html
file path=usr/postgres/9.6/doc/html/infoschema-udt-privileges.html
file path=usr/postgres/9.6/doc/html/infoschema-usage-privileges.html
file path=usr/postgres/9.6/doc/html/infoschema-user-defined-types.html
file path=usr/postgres/9.6/doc/html/infoschema-user-mapping-options.html
file path=usr/postgres/9.6/doc/html/infoschema-user-mappings.html
file path=usr/postgres/9.6/doc/html/infoschema-view-column-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-view-routine-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-view-table-usage.html
file path=usr/postgres/9.6/doc/html/infoschema-views.html
file path=usr/postgres/9.6/doc/html/install-getsource.html
file path=usr/postgres/9.6/doc/html/install-post.html
file path=usr/postgres/9.6/doc/html/install-procedure.html
file path=usr/postgres/9.6/doc/html/install-requirements.html
file path=usr/postgres/9.6/doc/html/install-short.html
file path=usr/postgres/9.6/doc/html/install-windows-full.html
file path=usr/postgres/9.6/doc/html/install-windows-libpq.html
file path=usr/postgres/9.6/doc/html/install-windows.html
file path=usr/postgres/9.6/doc/html/installation-platform-notes.html
file path=usr/postgres/9.6/doc/html/installation.html
file path=usr/postgres/9.6/doc/html/intagg.html
file path=usr/postgres/9.6/doc/html/intarray.html
file path=usr/postgres/9.6/doc/html/internals.html
file path=usr/postgres/9.6/doc/html/intro-whatis.html
file path=usr/postgres/9.6/doc/html/isn.html
file path=usr/postgres/9.6/doc/html/kernel-resources.html
file path=usr/postgres/9.6/doc/html/largeobjects.html
file path=usr/postgres/9.6/doc/html/libpq-async.html
file path=usr/postgres/9.6/doc/html/libpq-build.html
file path=usr/postgres/9.6/doc/html/libpq-cancel.html
file path=usr/postgres/9.6/doc/html/libpq-connect.html
file path=usr/postgres/9.6/doc/html/libpq-control.html
file path=usr/postgres/9.6/doc/html/libpq-copy.html
file path=usr/postgres/9.6/doc/html/libpq-envars.html
file path=usr/postgres/9.6/doc/html/libpq-events.html
file path=usr/postgres/9.6/doc/html/libpq-example.html
file path=usr/postgres/9.6/doc/html/libpq-exec.html
file path=usr/postgres/9.6/doc/html/libpq-fastpath.html
file path=usr/postgres/9.6/doc/html/libpq-ldap.html
file path=usr/postgres/9.6/doc/html/libpq-misc.html
file path=usr/postgres/9.6/doc/html/libpq-notice-processing.html
file path=usr/postgres/9.6/doc/html/libpq-notify.html
file path=usr/postgres/9.6/doc/html/libpq-pgpass.html
file path=usr/postgres/9.6/doc/html/libpq-pgservice.html
file path=usr/postgres/9.6/doc/html/libpq-single-row-mode.html
file path=usr/postgres/9.6/doc/html/libpq-ssl.html
file path=usr/postgres/9.6/doc/html/libpq-status.html
file path=usr/postgres/9.6/doc/html/libpq-threading.html
file path=usr/postgres/9.6/doc/html/libpq.html
file path=usr/postgres/9.6/doc/html/lo-examplesect.html
file path=usr/postgres/9.6/doc/html/lo-funcs.html
file path=usr/postgres/9.6/doc/html/lo-implementation.html
file path=usr/postgres/9.6/doc/html/lo-interfaces.html
file path=usr/postgres/9.6/doc/html/lo-intro.html
file path=usr/postgres/9.6/doc/html/lo.html
file path=usr/postgres/9.6/doc/html/locale.html
file path=usr/postgres/9.6/doc/html/locking-indexes.html
file path=usr/postgres/9.6/doc/html/log-shipping-alternative.html
file path=usr/postgres/9.6/doc/html/logfile-maintenance.html
file path=usr/postgres/9.6/doc/html/logicaldecoding-catalogs.html
file path=usr/postgres/9.6/doc/html/logicaldecoding-example.html
file path=usr/postgres/9.6/doc/html/logicaldecoding-explanation.html
file path=usr/postgres/9.6/doc/html/logicaldecoding-output-plugin.html
file path=usr/postgres/9.6/doc/html/logicaldecoding-sql.html
file path=usr/postgres/9.6/doc/html/logicaldecoding-synchronous.html
file path=usr/postgres/9.6/doc/html/logicaldecoding-walsender.html
file path=usr/postgres/9.6/doc/html/logicaldecoding-writer.html
file path=usr/postgres/9.6/doc/html/logicaldecoding.html
file path=usr/postgres/9.6/doc/html/ltree.html
file path=usr/postgres/9.6/doc/html/maintenance.html
file path=usr/postgres/9.6/doc/html/manage-ag-config.html
file path=usr/postgres/9.6/doc/html/manage-ag-createdb.html
file path=usr/postgres/9.6/doc/html/manage-ag-dropdb.html
file path=usr/postgres/9.6/doc/html/manage-ag-overview.html
file path=usr/postgres/9.6/doc/html/manage-ag-tablespaces.html
file path=usr/postgres/9.6/doc/html/manage-ag-templatedbs.html
file path=usr/postgres/9.6/doc/html/managing-databases.html
file path=usr/postgres/9.6/doc/html/monitoring-locks.html
file path=usr/postgres/9.6/doc/html/monitoring-ps.html
file path=usr/postgres/9.6/doc/html/monitoring-stats.html
file path=usr/postgres/9.6/doc/html/monitoring.html
file path=usr/postgres/9.6/doc/html/multibyte.html
file path=usr/postgres/9.6/doc/html/mvcc-caveats.html
file path=usr/postgres/9.6/doc/html/mvcc-intro.html
file path=usr/postgres/9.6/doc/html/mvcc.html
file path=usr/postgres/9.6/doc/html/nls-programmer.html
file path=usr/postgres/9.6/doc/html/nls-translator.html
file path=usr/postgres/9.6/doc/html/nls.html
file path=usr/postgres/9.6/doc/html/non-durability.html
file path=usr/postgres/9.6/doc/html/notation.html
file path=usr/postgres/9.6/doc/html/oid2name.html
file path=usr/postgres/9.6/doc/html/overview.html
file path=usr/postgres/9.6/doc/html/pageinspect.html
file path=usr/postgres/9.6/doc/html/parallel-plans.html
file path=usr/postgres/9.6/doc/html/parallel-query.html
file path=usr/postgres/9.6/doc/html/parallel-safety.html
file path=usr/postgres/9.6/doc/html/parser-stage.html
file path=usr/postgres/9.6/doc/html/passwordcheck.html
file path=usr/postgres/9.6/doc/html/performance-tips.html
file path=usr/postgres/9.6/doc/html/perm-functions.html
file path=usr/postgres/9.6/doc/html/pgarchivecleanup.html
file path=usr/postgres/9.6/doc/html/pgbench.html
file path=usr/postgres/9.6/doc/html/pgbuffercache.html
file path=usr/postgres/9.6/doc/html/pgcrypto.html
file path=usr/postgres/9.6/doc/html/pgfreespacemap.html
file path=usr/postgres/9.6/doc/html/pgprewarm.html
file path=usr/postgres/9.6/doc/html/pgrowlocks.html
file path=usr/postgres/9.6/doc/html/pgstandby.html
file path=usr/postgres/9.6/doc/html/pgstatstatements.html
file path=usr/postgres/9.6/doc/html/pgstattuple.html
file path=usr/postgres/9.6/doc/html/pgtestfsync.html
file path=usr/postgres/9.6/doc/html/pgtesttiming.html
file path=usr/postgres/9.6/doc/html/pgtrgm.html
file path=usr/postgres/9.6/doc/html/pgupgrade.html
file path=usr/postgres/9.6/doc/html/pgvisibility.html
file path=usr/postgres/9.6/doc/html/pgxlogdump.html
file path=usr/postgres/9.6/doc/html/planner-optimizer.html
file path=usr/postgres/9.6/doc/html/planner-stats-details.html
file path=usr/postgres/9.6/doc/html/planner-stats.html
file path=usr/postgres/9.6/doc/html/plhandler.html
file path=usr/postgres/9.6/doc/html/plperl-builtins.html
file path=usr/postgres/9.6/doc/html/plperl-data.html
file path=usr/postgres/9.6/doc/html/plperl-event-triggers.html
file path=usr/postgres/9.6/doc/html/plperl-funcs.html
file path=usr/postgres/9.6/doc/html/plperl-global.html
file path=usr/postgres/9.6/doc/html/plperl-triggers.html
file path=usr/postgres/9.6/doc/html/plperl-trusted.html
file path=usr/postgres/9.6/doc/html/plperl-under-the-hood.html
file path=usr/postgres/9.6/doc/html/plperl.html
file path=usr/postgres/9.6/doc/html/plpgsql-control-structures.html
file path=usr/postgres/9.6/doc/html/plpgsql-cursors.html
file path=usr/postgres/9.6/doc/html/plpgsql-declarations.html
file path=usr/postgres/9.6/doc/html/plpgsql-development-tips.html
file path=usr/postgres/9.6/doc/html/plpgsql-errors-and-messages.html
file path=usr/postgres/9.6/doc/html/plpgsql-expressions.html
file path=usr/postgres/9.6/doc/html/plpgsql-implementation.html
file path=usr/postgres/9.6/doc/html/plpgsql-overview.html
file path=usr/postgres/9.6/doc/html/plpgsql-porting.html
file path=usr/postgres/9.6/doc/html/plpgsql-statements.html
file path=usr/postgres/9.6/doc/html/plpgsql-structure.html
file path=usr/postgres/9.6/doc/html/plpgsql-trigger.html
file path=usr/postgres/9.6/doc/html/plpgsql.html
file path=usr/postgres/9.6/doc/html/plpython-data.html
file path=usr/postgres/9.6/doc/html/plpython-database.html
file path=usr/postgres/9.6/doc/html/plpython-do.html
file path=usr/postgres/9.6/doc/html/plpython-envar.html
file path=usr/postgres/9.6/doc/html/plpython-funcs.html
file path=usr/postgres/9.6/doc/html/plpython-python23.html
file path=usr/postgres/9.6/doc/html/plpython-sharing.html
file path=usr/postgres/9.6/doc/html/plpython-subtransaction.html
file path=usr/postgres/9.6/doc/html/plpython-trigger.html
file path=usr/postgres/9.6/doc/html/plpython-util.html
file path=usr/postgres/9.6/doc/html/plpython.html
file path=usr/postgres/9.6/doc/html/pltcl-data.html
file path=usr/postgres/9.6/doc/html/pltcl-dbaccess.html
file path=usr/postgres/9.6/doc/html/pltcl-error-handling.html
file path=usr/postgres/9.6/doc/html/pltcl-event-trigger.html
file path=usr/postgres/9.6/doc/html/pltcl-functions.html
file path=usr/postgres/9.6/doc/html/pltcl-global.html
file path=usr/postgres/9.6/doc/html/pltcl-overview.html
file path=usr/postgres/9.6/doc/html/pltcl-procnames.html
file path=usr/postgres/9.6/doc/html/pltcl-trigger.html
file path=usr/postgres/9.6/doc/html/pltcl-unknown.html
file path=usr/postgres/9.6/doc/html/pltcl.html
file path=usr/postgres/9.6/doc/html/populate.html
file path=usr/postgres/9.6/doc/html/postgres-fdw.html
file path=usr/postgres/9.6/doc/html/postgres-user.html
file path=usr/postgres/9.6/doc/html/preface.html
file path=usr/postgres/9.6/doc/html/preventing-server-spoofing.html
file path=usr/postgres/9.6/doc/html/progress-reporting.html
file path=usr/postgres/9.6/doc/html/protocol-changes.html
file path=usr/postgres/9.6/doc/html/protocol-error-fields.html
file path=usr/postgres/9.6/doc/html/protocol-flow.html
file path=usr/postgres/9.6/doc/html/protocol-message-formats.html
file path=usr/postgres/9.6/doc/html/protocol-message-types.html
file path=usr/postgres/9.6/doc/html/protocol-overview.html
file path=usr/postgres/9.6/doc/html/protocol-replication.html
file path=usr/postgres/9.6/doc/html/protocol.html
file path=usr/postgres/9.6/doc/html/queries-limit.html
file path=usr/postgres/9.6/doc/html/queries-order.html
file path=usr/postgres/9.6/doc/html/queries-overview.html
file path=usr/postgres/9.6/doc/html/queries-select-lists.html
file path=usr/postgres/9.6/doc/html/queries-table-expressions.html
file path=usr/postgres/9.6/doc/html/queries-union.html
file path=usr/postgres/9.6/doc/html/queries-values.html
file path=usr/postgres/9.6/doc/html/queries-with.html
file path=usr/postgres/9.6/doc/html/queries.html
file path=usr/postgres/9.6/doc/html/query-path.html
file path=usr/postgres/9.6/doc/html/querytree.html
file path=usr/postgres/9.6/doc/html/rangetypes.html
file path=usr/postgres/9.6/doc/html/recovery-config.html
file path=usr/postgres/9.6/doc/html/recovery-target-settings.html
file path=usr/postgres/9.6/doc/html/reference-client.html
file path=usr/postgres/9.6/doc/html/reference-server.html
file path=usr/postgres/9.6/doc/html/reference.html
file path=usr/postgres/9.6/doc/html/regress-coverage.html
file path=usr/postgres/9.6/doc/html/regress-evaluation.html
file path=usr/postgres/9.6/doc/html/regress-run.html
file path=usr/postgres/9.6/doc/html/regress-tap.html
file path=usr/postgres/9.6/doc/html/regress-variant.html
file path=usr/postgres/9.6/doc/html/regress.html
file path=usr/postgres/9.6/doc/html/release-0-01.html
file path=usr/postgres/9.6/doc/html/release-0-02.html
file path=usr/postgres/9.6/doc/html/release-0-03.html
file path=usr/postgres/9.6/doc/html/release-1-0.html
file path=usr/postgres/9.6/doc/html/release-1-01.html
file path=usr/postgres/9.6/doc/html/release-1-02.html
file path=usr/postgres/9.6/doc/html/release-1-09.html
file path=usr/postgres/9.6/doc/html/release-6-0.html
file path=usr/postgres/9.6/doc/html/release-6-1-1.html
file path=usr/postgres/9.6/doc/html/release-6-1.html
file path=usr/postgres/9.6/doc/html/release-6-2-1.html
file path=usr/postgres/9.6/doc/html/release-6-2.html
file path=usr/postgres/9.6/doc/html/release-6-3-1.html
file path=usr/postgres/9.6/doc/html/release-6-3-2.html
file path=usr/postgres/9.6/doc/html/release-6-3.html
file path=usr/postgres/9.6/doc/html/release-6-4-1.html
file path=usr/postgres/9.6/doc/html/release-6-4-2.html
file path=usr/postgres/9.6/doc/html/release-6-4.html
file path=usr/postgres/9.6/doc/html/release-6-5-1.html
file path=usr/postgres/9.6/doc/html/release-6-5-2.html
file path=usr/postgres/9.6/doc/html/release-6-5-3.html
file path=usr/postgres/9.6/doc/html/release-6-5.html
file path=usr/postgres/9.6/doc/html/release-7-0-1.html
file path=usr/postgres/9.6/doc/html/release-7-0-2.html
file path=usr/postgres/9.6/doc/html/release-7-0-3.html
file path=usr/postgres/9.6/doc/html/release-7-0.html
file path=usr/postgres/9.6/doc/html/release-7-1-1.html
file path=usr/postgres/9.6/doc/html/release-7-1-2.html
file path=usr/postgres/9.6/doc/html/release-7-1-3.html
file path=usr/postgres/9.6/doc/html/release-7-1.html
file path=usr/postgres/9.6/doc/html/release-7-2-1.html
file path=usr/postgres/9.6/doc/html/release-7-2-2.html
file path=usr/postgres/9.6/doc/html/release-7-2-3.html
file path=usr/postgres/9.6/doc/html/release-7-2-4.html
file path=usr/postgres/9.6/doc/html/release-7-2-5.html
file path=usr/postgres/9.6/doc/html/release-7-2-6.html
file path=usr/postgres/9.6/doc/html/release-7-2-7.html
file path=usr/postgres/9.6/doc/html/release-7-2-8.html
file path=usr/postgres/9.6/doc/html/release-7-2.html
file path=usr/postgres/9.6/doc/html/release-7-3-1.html
file path=usr/postgres/9.6/doc/html/release-7-3-10.html
file path=usr/postgres/9.6/doc/html/release-7-3-11.html
file path=usr/postgres/9.6/doc/html/release-7-3-12.html
file path=usr/postgres/9.6/doc/html/release-7-3-13.html
file path=usr/postgres/9.6/doc/html/release-7-3-14.html
file path=usr/postgres/9.6/doc/html/release-7-3-15.html
file path=usr/postgres/9.6/doc/html/release-7-3-16.html
file path=usr/postgres/9.6/doc/html/release-7-3-17.html
file path=usr/postgres/9.6/doc/html/release-7-3-18.html
file path=usr/postgres/9.6/doc/html/release-7-3-19.html
file path=usr/postgres/9.6/doc/html/release-7-3-2.html
file path=usr/postgres/9.6/doc/html/release-7-3-20.html
file path=usr/postgres/9.6/doc/html/release-7-3-21.html
file path=usr/postgres/9.6/doc/html/release-7-3-3.html
file path=usr/postgres/9.6/doc/html/release-7-3-4.html
file path=usr/postgres/9.6/doc/html/release-7-3-5.html
file path=usr/postgres/9.6/doc/html/release-7-3-6.html
file path=usr/postgres/9.6/doc/html/release-7-3-7.html
file path=usr/postgres/9.6/doc/html/release-7-3-8.html
file path=usr/postgres/9.6/doc/html/release-7-3-9.html
file path=usr/postgres/9.6/doc/html/release-7-3.html
file path=usr/postgres/9.6/doc/html/release-7-4-1.html
file path=usr/postgres/9.6/doc/html/release-7-4-10.html
file path=usr/postgres/9.6/doc/html/release-7-4-11.html
file path=usr/postgres/9.6/doc/html/release-7-4-12.html
file path=usr/postgres/9.6/doc/html/release-7-4-13.html
file path=usr/postgres/9.6/doc/html/release-7-4-14.html
file path=usr/postgres/9.6/doc/html/release-7-4-15.html
file path=usr/postgres/9.6/doc/html/release-7-4-16.html
file path=usr/postgres/9.6/doc/html/release-7-4-17.html
file path=usr/postgres/9.6/doc/html/release-7-4-18.html
file path=usr/postgres/9.6/doc/html/release-7-4-19.html
file path=usr/postgres/9.6/doc/html/release-7-4-2.html
file path=usr/postgres/9.6/doc/html/release-7-4-20.html
file path=usr/postgres/9.6/doc/html/release-7-4-21.html
file path=usr/postgres/9.6/doc/html/release-7-4-22.html
file path=usr/postgres/9.6/doc/html/release-7-4-23.html
file path=usr/postgres/9.6/doc/html/release-7-4-24.html
file path=usr/postgres/9.6/doc/html/release-7-4-25.html
file path=usr/postgres/9.6/doc/html/release-7-4-26.html
file path=usr/postgres/9.6/doc/html/release-7-4-27.html
file path=usr/postgres/9.6/doc/html/release-7-4-28.html
file path=usr/postgres/9.6/doc/html/release-7-4-29.html
file path=usr/postgres/9.6/doc/html/release-7-4-3.html
file path=usr/postgres/9.6/doc/html/release-7-4-30.html
file path=usr/postgres/9.6/doc/html/release-7-4-4.html
file path=usr/postgres/9.6/doc/html/release-7-4-5.html
file path=usr/postgres/9.6/doc/html/release-7-4-6.html
file path=usr/postgres/9.6/doc/html/release-7-4-7.html
file path=usr/postgres/9.6/doc/html/release-7-4-8.html
file path=usr/postgres/9.6/doc/html/release-7-4-9.html
file path=usr/postgres/9.6/doc/html/release-7-4.html
file path=usr/postgres/9.6/doc/html/release-8-0-1.html
file path=usr/postgres/9.6/doc/html/release-8-0-10.html
file path=usr/postgres/9.6/doc/html/release-8-0-11.html
file path=usr/postgres/9.6/doc/html/release-8-0-12.html
file path=usr/postgres/9.6/doc/html/release-8-0-13.html
file path=usr/postgres/9.6/doc/html/release-8-0-14.html
file path=usr/postgres/9.6/doc/html/release-8-0-15.html
file path=usr/postgres/9.6/doc/html/release-8-0-16.html
file path=usr/postgres/9.6/doc/html/release-8-0-17.html
file path=usr/postgres/9.6/doc/html/release-8-0-18.html
file path=usr/postgres/9.6/doc/html/release-8-0-19.html
file path=usr/postgres/9.6/doc/html/release-8-0-2.html
file path=usr/postgres/9.6/doc/html/release-8-0-20.html
file path=usr/postgres/9.6/doc/html/release-8-0-21.html
file path=usr/postgres/9.6/doc/html/release-8-0-22.html
file path=usr/postgres/9.6/doc/html/release-8-0-23.html
file path=usr/postgres/9.6/doc/html/release-8-0-24.html
file path=usr/postgres/9.6/doc/html/release-8-0-25.html
file path=usr/postgres/9.6/doc/html/release-8-0-26.html
file path=usr/postgres/9.6/doc/html/release-8-0-3.html
file path=usr/postgres/9.6/doc/html/release-8-0-4.html
file path=usr/postgres/9.6/doc/html/release-8-0-5.html
file path=usr/postgres/9.6/doc/html/release-8-0-6.html
file path=usr/postgres/9.6/doc/html/release-8-0-7.html
file path=usr/postgres/9.6/doc/html/release-8-0-8.html
file path=usr/postgres/9.6/doc/html/release-8-0-9.html
file path=usr/postgres/9.6/doc/html/release-8-0.html
file path=usr/postgres/9.6/doc/html/release-8-1-1.html
file path=usr/postgres/9.6/doc/html/release-8-1-10.html
file path=usr/postgres/9.6/doc/html/release-8-1-11.html
file path=usr/postgres/9.6/doc/html/release-8-1-12.html
file path=usr/postgres/9.6/doc/html/release-8-1-13.html
file path=usr/postgres/9.6/doc/html/release-8-1-14.html
file path=usr/postgres/9.6/doc/html/release-8-1-15.html
file path=usr/postgres/9.6/doc/html/release-8-1-16.html
file path=usr/postgres/9.6/doc/html/release-8-1-17.html
file path=usr/postgres/9.6/doc/html/release-8-1-18.html
file path=usr/postgres/9.6/doc/html/release-8-1-19.html
file path=usr/postgres/9.6/doc/html/release-8-1-2.html
file path=usr/postgres/9.6/doc/html/release-8-1-20.html
file path=usr/postgres/9.6/doc/html/release-8-1-21.html
file path=usr/postgres/9.6/doc/html/release-8-1-22.html
file path=usr/postgres/9.6/doc/html/release-8-1-23.html
file path=usr/postgres/9.6/doc/html/release-8-1-3.html
file path=usr/postgres/9.6/doc/html/release-8-1-4.html
file path=usr/postgres/9.6/doc/html/release-8-1-5.html
file path=usr/postgres/9.6/doc/html/release-8-1-6.html
file path=usr/postgres/9.6/doc/html/release-8-1-7.html
file path=usr/postgres/9.6/doc/html/release-8-1-8.html
file path=usr/postgres/9.6/doc/html/release-8-1-9.html
file path=usr/postgres/9.6/doc/html/release-8-1.html
file path=usr/postgres/9.6/doc/html/release-8-2-1.html
file path=usr/postgres/9.6/doc/html/release-8-2-10.html
file path=usr/postgres/9.6/doc/html/release-8-2-11.html
file path=usr/postgres/9.6/doc/html/release-8-2-12.html
file path=usr/postgres/9.6/doc/html/release-8-2-13.html
file path=usr/postgres/9.6/doc/html/release-8-2-14.html
file path=usr/postgres/9.6/doc/html/release-8-2-15.html
file path=usr/postgres/9.6/doc/html/release-8-2-16.html
file path=usr/postgres/9.6/doc/html/release-8-2-17.html
file path=usr/postgres/9.6/doc/html/release-8-2-18.html
file path=usr/postgres/9.6/doc/html/release-8-2-19.html
file path=usr/postgres/9.6/doc/html/release-8-2-2.html
file path=usr/postgres/9.6/doc/html/release-8-2-20.html
file path=usr/postgres/9.6/doc/html/release-8-2-21.html
file path=usr/postgres/9.6/doc/html/release-8-2-22.html
file path=usr/postgres/9.6/doc/html/release-8-2-23.html
file path=usr/postgres/9.6/doc/html/release-8-2-3.html
file path=usr/postgres/9.6/doc/html/release-8-2-4.html
file path=usr/postgres/9.6/doc/html/release-8-2-5.html
file path=usr/postgres/9.6/doc/html/release-8-2-6.html
file path=usr/postgres/9.6/doc/html/release-8-2-7.html
file path=usr/postgres/9.6/doc/html/release-8-2-8.html
file path=usr/postgres/9.6/doc/html/release-8-2-9.html
file path=usr/postgres/9.6/doc/html/release-8-2.html
file path=usr/postgres/9.6/doc/html/release-8-3-1.html
file path=usr/postgres/9.6/doc/html/release-8-3-10.html
file path=usr/postgres/9.6/doc/html/release-8-3-11.html
file path=usr/postgres/9.6/doc/html/release-8-3-12.html
file path=usr/postgres/9.6/doc/html/release-8-3-13.html
file path=usr/postgres/9.6/doc/html/release-8-3-14.html
file path=usr/postgres/9.6/doc/html/release-8-3-15.html
file path=usr/postgres/9.6/doc/html/release-8-3-16.html
file path=usr/postgres/9.6/doc/html/release-8-3-17.html
file path=usr/postgres/9.6/doc/html/release-8-3-18.html
file path=usr/postgres/9.6/doc/html/release-8-3-19.html
file path=usr/postgres/9.6/doc/html/release-8-3-2.html
file path=usr/postgres/9.6/doc/html/release-8-3-20.html
file path=usr/postgres/9.6/doc/html/release-8-3-21.html
file path=usr/postgres/9.6/doc/html/release-8-3-22.html
file path=usr/postgres/9.6/doc/html/release-8-3-23.html
file path=usr/postgres/9.6/doc/html/release-8-3-3.html
file path=usr/postgres/9.6/doc/html/release-8-3-4.html
file path=usr/postgres/9.6/doc/html/release-8-3-5.html
file path=usr/postgres/9.6/doc/html/release-8-3-6.html
file path=usr/postgres/9.6/doc/html/release-8-3-7.html
file path=usr/postgres/9.6/doc/html/release-8-3-8.html
file path=usr/postgres/9.6/doc/html/release-8-3-9.html
file path=usr/postgres/9.6/doc/html/release-8-3.html
file path=usr/postgres/9.6/doc/html/release-8-4-1.html
file path=usr/postgres/9.6/doc/html/release-8-4-10.html
file path=usr/postgres/9.6/doc/html/release-8-4-11.html
file path=usr/postgres/9.6/doc/html/release-8-4-12.html
file path=usr/postgres/9.6/doc/html/release-8-4-13.html
file path=usr/postgres/9.6/doc/html/release-8-4-14.html
file path=usr/postgres/9.6/doc/html/release-8-4-15.html
file path=usr/postgres/9.6/doc/html/release-8-4-16.html
file path=usr/postgres/9.6/doc/html/release-8-4-17.html
file path=usr/postgres/9.6/doc/html/release-8-4-18.html
file path=usr/postgres/9.6/doc/html/release-8-4-19.html
file path=usr/postgres/9.6/doc/html/release-8-4-2.html
file path=usr/postgres/9.6/doc/html/release-8-4-20.html
file path=usr/postgres/9.6/doc/html/release-8-4-21.html
file path=usr/postgres/9.6/doc/html/release-8-4-22.html
file path=usr/postgres/9.6/doc/html/release-8-4-3.html
file path=usr/postgres/9.6/doc/html/release-8-4-4.html
file path=usr/postgres/9.6/doc/html/release-8-4-5.html
file path=usr/postgres/9.6/doc/html/release-8-4-6.html
file path=usr/postgres/9.6/doc/html/release-8-4-7.html
file path=usr/postgres/9.6/doc/html/release-8-4-8.html
file path=usr/postgres/9.6/doc/html/release-8-4-9.html
file path=usr/postgres/9.6/doc/html/release-8-4.html
file path=usr/postgres/9.6/doc/html/release-9-0-1.html
file path=usr/postgres/9.6/doc/html/release-9-0-10.html
file path=usr/postgres/9.6/doc/html/release-9-0-11.html
file path=usr/postgres/9.6/doc/html/release-9-0-12.html
file path=usr/postgres/9.6/doc/html/release-9-0-13.html
file path=usr/postgres/9.6/doc/html/release-9-0-14.html
file path=usr/postgres/9.6/doc/html/release-9-0-15.html
file path=usr/postgres/9.6/doc/html/release-9-0-16.html
file path=usr/postgres/9.6/doc/html/release-9-0-17.html
file path=usr/postgres/9.6/doc/html/release-9-0-18.html
file path=usr/postgres/9.6/doc/html/release-9-0-19.html
file path=usr/postgres/9.6/doc/html/release-9-0-2.html
file path=usr/postgres/9.6/doc/html/release-9-0-20.html
file path=usr/postgres/9.6/doc/html/release-9-0-21.html
file path=usr/postgres/9.6/doc/html/release-9-0-22.html
file path=usr/postgres/9.6/doc/html/release-9-0-23.html
file path=usr/postgres/9.6/doc/html/release-9-0-3.html
file path=usr/postgres/9.6/doc/html/release-9-0-4.html
file path=usr/postgres/9.6/doc/html/release-9-0-5.html
file path=usr/postgres/9.6/doc/html/release-9-0-6.html
file path=usr/postgres/9.6/doc/html/release-9-0-7.html
file path=usr/postgres/9.6/doc/html/release-9-0-8.html
file path=usr/postgres/9.6/doc/html/release-9-0-9.html
file path=usr/postgres/9.6/doc/html/release-9-0.html
file path=usr/postgres/9.6/doc/html/release-9-1-1.html
file path=usr/postgres/9.6/doc/html/release-9-1-10.html
file path=usr/postgres/9.6/doc/html/release-9-1-11.html
file path=usr/postgres/9.6/doc/html/release-9-1-12.html
file path=usr/postgres/9.6/doc/html/release-9-1-13.html
file path=usr/postgres/9.6/doc/html/release-9-1-14.html
file path=usr/postgres/9.6/doc/html/release-9-1-15.html
file path=usr/postgres/9.6/doc/html/release-9-1-16.html
file path=usr/postgres/9.6/doc/html/release-9-1-17.html
file path=usr/postgres/9.6/doc/html/release-9-1-18.html
file path=usr/postgres/9.6/doc/html/release-9-1-19.html
file path=usr/postgres/9.6/doc/html/release-9-1-2.html
file path=usr/postgres/9.6/doc/html/release-9-1-20.html
file path=usr/postgres/9.6/doc/html/release-9-1-21.html
file path=usr/postgres/9.6/doc/html/release-9-1-22.html
file path=usr/postgres/9.6/doc/html/release-9-1-23.html
file path=usr/postgres/9.6/doc/html/release-9-1-24.html
file path=usr/postgres/9.6/doc/html/release-9-1-3.html
file path=usr/postgres/9.6/doc/html/release-9-1-4.html
file path=usr/postgres/9.6/doc/html/release-9-1-5.html
file path=usr/postgres/9.6/doc/html/release-9-1-6.html
file path=usr/postgres/9.6/doc/html/release-9-1-7.html
file path=usr/postgres/9.6/doc/html/release-9-1-8.html
file path=usr/postgres/9.6/doc/html/release-9-1-9.html
file path=usr/postgres/9.6/doc/html/release-9-1.html
file path=usr/postgres/9.6/doc/html/release-9-2-1.html
file path=usr/postgres/9.6/doc/html/release-9-2-10.html
file path=usr/postgres/9.6/doc/html/release-9-2-11.html
file path=usr/postgres/9.6/doc/html/release-9-2-12.html
file path=usr/postgres/9.6/doc/html/release-9-2-13.html
file path=usr/postgres/9.6/doc/html/release-9-2-14.html
file path=usr/postgres/9.6/doc/html/release-9-2-15.html
file path=usr/postgres/9.6/doc/html/release-9-2-16.html
file path=usr/postgres/9.6/doc/html/release-9-2-17.html
file path=usr/postgres/9.6/doc/html/release-9-2-18.html
file path=usr/postgres/9.6/doc/html/release-9-2-19.html
file path=usr/postgres/9.6/doc/html/release-9-2-2.html
file path=usr/postgres/9.6/doc/html/release-9-2-3.html
file path=usr/postgres/9.6/doc/html/release-9-2-4.html
file path=usr/postgres/9.6/doc/html/release-9-2-5.html
file path=usr/postgres/9.6/doc/html/release-9-2-6.html
file path=usr/postgres/9.6/doc/html/release-9-2-7.html
file path=usr/postgres/9.6/doc/html/release-9-2-8.html
file path=usr/postgres/9.6/doc/html/release-9-2-9.html
file path=usr/postgres/9.6/doc/html/release-9-2.html
file path=usr/postgres/9.6/doc/html/release-9-3-1.html
file path=usr/postgres/9.6/doc/html/release-9-3-10.html
file path=usr/postgres/9.6/doc/html/release-9-3-11.html
file path=usr/postgres/9.6/doc/html/release-9-3-12.html
file path=usr/postgres/9.6/doc/html/release-9-3-13.html
file path=usr/postgres/9.6/doc/html/release-9-3-14.html
file path=usr/postgres/9.6/doc/html/release-9-3-15.html
file path=usr/postgres/9.6/doc/html/release-9-3-2.html
file path=usr/postgres/9.6/doc/html/release-9-3-3.html
file path=usr/postgres/9.6/doc/html/release-9-3-4.html
file path=usr/postgres/9.6/doc/html/release-9-3-5.html
file path=usr/postgres/9.6/doc/html/release-9-3-6.html
file path=usr/postgres/9.6/doc/html/release-9-3-7.html
file path=usr/postgres/9.6/doc/html/release-9-3-8.html
file path=usr/postgres/9.6/doc/html/release-9-3-9.html
file path=usr/postgres/9.6/doc/html/release-9-3.html
file path=usr/postgres/9.6/doc/html/release-9-4-1.html
file path=usr/postgres/9.6/doc/html/release-9-4-10.html
file path=usr/postgres/9.6/doc/html/release-9-4-2.html
file path=usr/postgres/9.6/doc/html/release-9-4-3.html
file path=usr/postgres/9.6/doc/html/release-9-4-4.html
file path=usr/postgres/9.6/doc/html/release-9-4-5.html
file path=usr/postgres/9.6/doc/html/release-9-4-6.html
file path=usr/postgres/9.6/doc/html/release-9-4-7.html
file path=usr/postgres/9.6/doc/html/release-9-4-8.html
file path=usr/postgres/9.6/doc/html/release-9-4-9.html
file path=usr/postgres/9.6/doc/html/release-9-4.html
file path=usr/postgres/9.6/doc/html/release-9-5-1.html
file path=usr/postgres/9.6/doc/html/release-9-5-2.html
file path=usr/postgres/9.6/doc/html/release-9-5-3.html
file path=usr/postgres/9.6/doc/html/release-9-5-4.html
file path=usr/postgres/9.6/doc/html/release-9-5-5.html
file path=usr/postgres/9.6/doc/html/release-9-5.html
file path=usr/postgres/9.6/doc/html/release-9-6-1.html
file path=usr/postgres/9.6/doc/html/release-9-6.html
file path=usr/postgres/9.6/doc/html/release.html
file path=usr/postgres/9.6/doc/html/replication-origins.html
file path=usr/postgres/9.6/doc/html/resources.html
file path=usr/postgres/9.6/doc/html/role-attributes.html
file path=usr/postgres/9.6/doc/html/role-membership.html
file path=usr/postgres/9.6/doc/html/role-removal.html
file path=usr/postgres/9.6/doc/html/routine-reindex.html
file path=usr/postgres/9.6/doc/html/routine-vacuuming.html
file path=usr/postgres/9.6/doc/html/row-estimation-examples.html
file path=usr/postgres/9.6/doc/html/rowtypes.html
file path=usr/postgres/9.6/doc/html/rule-system.html
file path=usr/postgres/9.6/doc/html/rules-materializedviews.html
file path=usr/postgres/9.6/doc/html/rules-privileges.html
file path=usr/postgres/9.6/doc/html/rules-status.html
file path=usr/postgres/9.6/doc/html/rules-triggers.html
file path=usr/postgres/9.6/doc/html/rules-update.html
file path=usr/postgres/9.6/doc/html/rules-views.html
file path=usr/postgres/9.6/doc/html/rules.html
file path=usr/postgres/9.6/doc/html/runtime-config-autovacuum.html
file path=usr/postgres/9.6/doc/html/runtime-config-client.html
file path=usr/postgres/9.6/doc/html/runtime-config-compatible.html
file path=usr/postgres/9.6/doc/html/runtime-config-connection.html
file path=usr/postgres/9.6/doc/html/runtime-config-custom.html
file path=usr/postgres/9.6/doc/html/runtime-config-developer.html
file path=usr/postgres/9.6/doc/html/runtime-config-error-handling.html
file path=usr/postgres/9.6/doc/html/runtime-config-file-locations.html
file path=usr/postgres/9.6/doc/html/runtime-config-locks.html
file path=usr/postgres/9.6/doc/html/runtime-config-logging.html
file path=usr/postgres/9.6/doc/html/runtime-config-preset.html
file path=usr/postgres/9.6/doc/html/runtime-config-query.html
file path=usr/postgres/9.6/doc/html/runtime-config-replication.html
file path=usr/postgres/9.6/doc/html/runtime-config-resource.html
file path=usr/postgres/9.6/doc/html/runtime-config-short.html
file path=usr/postgres/9.6/doc/html/runtime-config-statistics.html
file path=usr/postgres/9.6/doc/html/runtime-config-wal.html
file path=usr/postgres/9.6/doc/html/runtime-config.html
file path=usr/postgres/9.6/doc/html/runtime.html
file path=usr/postgres/9.6/doc/html/seg.html
file path=usr/postgres/9.6/doc/html/sepgsql.html
file path=usr/postgres/9.6/doc/html/server-programming.html
file path=usr/postgres/9.6/doc/html/server-shutdown.html
file path=usr/postgres/9.6/doc/html/server-start.html
file path=usr/postgres/9.6/doc/html/source-conventions.html
file path=usr/postgres/9.6/doc/html/source-format.html
file path=usr/postgres/9.6/doc/html/source.html
file path=usr/postgres/9.6/doc/html/sourcerepo.html
file path=usr/postgres/9.6/doc/html/spgist-builtin-opclasses.html
file path=usr/postgres/9.6/doc/html/spgist-examples.html
file path=usr/postgres/9.6/doc/html/spgist-extensibility.html
file path=usr/postgres/9.6/doc/html/spgist-implementation.html
file path=usr/postgres/9.6/doc/html/spgist-intro.html
file path=usr/postgres/9.6/doc/html/spgist.html
file path=usr/postgres/9.6/doc/html/spi-examples.html
file path=usr/postgres/9.6/doc/html/spi-interface-support.html
file path=usr/postgres/9.6/doc/html/spi-interface.html
file path=usr/postgres/9.6/doc/html/spi-memory.html
file path=usr/postgres/9.6/doc/html/spi-realloc.html
file path=usr/postgres/9.6/doc/html/spi-spi-connect.html
file path=usr/postgres/9.6/doc/html/spi-spi-copytuple.html
file path=usr/postgres/9.6/doc/html/spi-spi-cursor-close.html
file path=usr/postgres/9.6/doc/html/spi-spi-cursor-fetch.html
file path=usr/postgres/9.6/doc/html/spi-spi-cursor-find.html
file path=usr/postgres/9.6/doc/html/spi-spi-cursor-move.html
file path=usr/postgres/9.6/doc/html/spi-spi-cursor-open-with-args.html
file path=usr/postgres/9.6/doc/html/spi-spi-cursor-open-with-paramlist.html
file path=usr/postgres/9.6/doc/html/spi-spi-cursor-open.html
file path=usr/postgres/9.6/doc/html/spi-spi-exec.html
file path=usr/postgres/9.6/doc/html/spi-spi-execp.html
file path=usr/postgres/9.6/doc/html/spi-spi-execute-plan-with-paramlist.html
file path=usr/postgres/9.6/doc/html/spi-spi-execute-plan.html
file path=usr/postgres/9.6/doc/html/spi-spi-execute-with-args.html
file path=usr/postgres/9.6/doc/html/spi-spi-execute.html
file path=usr/postgres/9.6/doc/html/spi-spi-finish.html
file path=usr/postgres/9.6/doc/html/spi-spi-fname.html
file path=usr/postgres/9.6/doc/html/spi-spi-fnumber.html
file path=usr/postgres/9.6/doc/html/spi-spi-freeplan.html
file path=usr/postgres/9.6/doc/html/spi-spi-freetuple.html
file path=usr/postgres/9.6/doc/html/spi-spi-freetupletable.html
file path=usr/postgres/9.6/doc/html/spi-spi-getargcount.html
file path=usr/postgres/9.6/doc/html/spi-spi-getargtypeid.html
file path=usr/postgres/9.6/doc/html/spi-spi-getbinval.html
file path=usr/postgres/9.6/doc/html/spi-spi-getnspname.html
file path=usr/postgres/9.6/doc/html/spi-spi-getrelname.html
file path=usr/postgres/9.6/doc/html/spi-spi-gettype.html
file path=usr/postgres/9.6/doc/html/spi-spi-gettypeid.html
file path=usr/postgres/9.6/doc/html/spi-spi-getvalue.html
file path=usr/postgres/9.6/doc/html/spi-spi-is-cursor-plan.html
file path=usr/postgres/9.6/doc/html/spi-spi-keepplan.html
file path=usr/postgres/9.6/doc/html/spi-spi-modifytuple.html
file path=usr/postgres/9.6/doc/html/spi-spi-palloc.html
file path=usr/postgres/9.6/doc/html/spi-spi-pfree.html
file path=usr/postgres/9.6/doc/html/spi-spi-pop.html
file path=usr/postgres/9.6/doc/html/spi-spi-prepare-cursor.html
file path=usr/postgres/9.6/doc/html/spi-spi-prepare-params.html
file path=usr/postgres/9.6/doc/html/spi-spi-prepare.html
file path=usr/postgres/9.6/doc/html/spi-spi-push.html
file path=usr/postgres/9.6/doc/html/spi-spi-returntuple.html
file path=usr/postgres/9.6/doc/html/spi-spi-saveplan.html
file path=usr/postgres/9.6/doc/html/spi-spi-scroll-cursor-fetch.html
file path=usr/postgres/9.6/doc/html/spi-spi-scroll-cursor-move.html
file path=usr/postgres/9.6/doc/html/spi-visibility.html
file path=usr/postgres/9.6/doc/html/spi.html
file path=usr/postgres/9.6/doc/html/sql-abort.html
file path=usr/postgres/9.6/doc/html/sql-alteraggregate.html
file path=usr/postgres/9.6/doc/html/sql-altercollation.html
file path=usr/postgres/9.6/doc/html/sql-alterconversion.html
file path=usr/postgres/9.6/doc/html/sql-alterdatabase.html
file path=usr/postgres/9.6/doc/html/sql-alterdefaultprivileges.html
file path=usr/postgres/9.6/doc/html/sql-alterdomain.html
file path=usr/postgres/9.6/doc/html/sql-altereventtrigger.html
file path=usr/postgres/9.6/doc/html/sql-alterextension.html
file path=usr/postgres/9.6/doc/html/sql-alterforeigndatawrapper.html
file path=usr/postgres/9.6/doc/html/sql-alterforeigntable.html
file path=usr/postgres/9.6/doc/html/sql-alterfunction.html
file path=usr/postgres/9.6/doc/html/sql-altergroup.html
file path=usr/postgres/9.6/doc/html/sql-alterindex.html
file path=usr/postgres/9.6/doc/html/sql-alterlanguage.html
file path=usr/postgres/9.6/doc/html/sql-alterlargeobject.html
file path=usr/postgres/9.6/doc/html/sql-altermaterializedview.html
file path=usr/postgres/9.6/doc/html/sql-alteropclass.html
file path=usr/postgres/9.6/doc/html/sql-alteroperator.html
file path=usr/postgres/9.6/doc/html/sql-alteropfamily.html
file path=usr/postgres/9.6/doc/html/sql-alterpolicy.html
file path=usr/postgres/9.6/doc/html/sql-alterrole.html
file path=usr/postgres/9.6/doc/html/sql-alterrule.html
file path=usr/postgres/9.6/doc/html/sql-alterschema.html
file path=usr/postgres/9.6/doc/html/sql-altersequence.html
file path=usr/postgres/9.6/doc/html/sql-alterserver.html
file path=usr/postgres/9.6/doc/html/sql-altersystem.html
file path=usr/postgres/9.6/doc/html/sql-altertable.html
file path=usr/postgres/9.6/doc/html/sql-altertablespace.html
file path=usr/postgres/9.6/doc/html/sql-altertrigger.html
file path=usr/postgres/9.6/doc/html/sql-altertsconfig.html
file path=usr/postgres/9.6/doc/html/sql-altertsdictionary.html
file path=usr/postgres/9.6/doc/html/sql-altertsparser.html
file path=usr/postgres/9.6/doc/html/sql-altertstemplate.html
file path=usr/postgres/9.6/doc/html/sql-altertype.html
file path=usr/postgres/9.6/doc/html/sql-alteruser.html
file path=usr/postgres/9.6/doc/html/sql-alterusermapping.html
file path=usr/postgres/9.6/doc/html/sql-alterview.html
file path=usr/postgres/9.6/doc/html/sql-analyze.html
file path=usr/postgres/9.6/doc/html/sql-begin.html
file path=usr/postgres/9.6/doc/html/sql-checkpoint.html
file path=usr/postgres/9.6/doc/html/sql-close.html
file path=usr/postgres/9.6/doc/html/sql-cluster.html
file path=usr/postgres/9.6/doc/html/sql-commands.html
file path=usr/postgres/9.6/doc/html/sql-comment.html
file path=usr/postgres/9.6/doc/html/sql-commit-prepared.html
file path=usr/postgres/9.6/doc/html/sql-commit.html
file path=usr/postgres/9.6/doc/html/sql-copy.html
file path=usr/postgres/9.6/doc/html/sql-create-access-method.html
file path=usr/postgres/9.6/doc/html/sql-createaggregate.html
file path=usr/postgres/9.6/doc/html/sql-createcast.html
file path=usr/postgres/9.6/doc/html/sql-createcollation.html
file path=usr/postgres/9.6/doc/html/sql-createconversion.html
file path=usr/postgres/9.6/doc/html/sql-createdatabase.html
file path=usr/postgres/9.6/doc/html/sql-createdomain.html
file path=usr/postgres/9.6/doc/html/sql-createeventtrigger.html
file path=usr/postgres/9.6/doc/html/sql-createextension.html
file path=usr/postgres/9.6/doc/html/sql-createforeigndatawrapper.html
file path=usr/postgres/9.6/doc/html/sql-createforeigntable.html
file path=usr/postgres/9.6/doc/html/sql-createfunction.html
file path=usr/postgres/9.6/doc/html/sql-creategroup.html
file path=usr/postgres/9.6/doc/html/sql-createindex.html
file path=usr/postgres/9.6/doc/html/sql-createlanguage.html
file path=usr/postgres/9.6/doc/html/sql-creatematerializedview.html
file path=usr/postgres/9.6/doc/html/sql-createopclass.html
file path=usr/postgres/9.6/doc/html/sql-createoperator.html
file path=usr/postgres/9.6/doc/html/sql-createopfamily.html
file path=usr/postgres/9.6/doc/html/sql-createpolicy.html
file path=usr/postgres/9.6/doc/html/sql-createrole.html
file path=usr/postgres/9.6/doc/html/sql-createrule.html
file path=usr/postgres/9.6/doc/html/sql-createschema.html
file path=usr/postgres/9.6/doc/html/sql-createsequence.html
file path=usr/postgres/9.6/doc/html/sql-createserver.html
file path=usr/postgres/9.6/doc/html/sql-createtable.html
file path=usr/postgres/9.6/doc/html/sql-createtableas.html
file path=usr/postgres/9.6/doc/html/sql-createtablespace.html
file path=usr/postgres/9.6/doc/html/sql-createtransform.html
file path=usr/postgres/9.6/doc/html/sql-createtrigger.html
file path=usr/postgres/9.6/doc/html/sql-createtsconfig.html
file path=usr/postgres/9.6/doc/html/sql-createtsdictionary.html
file path=usr/postgres/9.6/doc/html/sql-createtsparser.html
file path=usr/postgres/9.6/doc/html/sql-createtstemplate.html
file path=usr/postgres/9.6/doc/html/sql-createtype.html
file path=usr/postgres/9.6/doc/html/sql-createuser.html
file path=usr/postgres/9.6/doc/html/sql-createusermapping.html
file path=usr/postgres/9.6/doc/html/sql-createview.html
file path=usr/postgres/9.6/doc/html/sql-deallocate.html
file path=usr/postgres/9.6/doc/html/sql-declare.html
file path=usr/postgres/9.6/doc/html/sql-delete.html
file path=usr/postgres/9.6/doc/html/sql-discard.html
file path=usr/postgres/9.6/doc/html/sql-do.html
file path=usr/postgres/9.6/doc/html/sql-drop-access-method.html
file path=usr/postgres/9.6/doc/html/sql-drop-owned.html
file path=usr/postgres/9.6/doc/html/sql-dropaggregate.html
file path=usr/postgres/9.6/doc/html/sql-dropcast.html
file path=usr/postgres/9.6/doc/html/sql-dropcollation.html
file path=usr/postgres/9.6/doc/html/sql-dropconversion.html
file path=usr/postgres/9.6/doc/html/sql-dropdatabase.html
file path=usr/postgres/9.6/doc/html/sql-dropdomain.html
file path=usr/postgres/9.6/doc/html/sql-dropeventtrigger.html
file path=usr/postgres/9.6/doc/html/sql-dropextension.html
file path=usr/postgres/9.6/doc/html/sql-dropforeigndatawrapper.html
file path=usr/postgres/9.6/doc/html/sql-dropforeigntable.html
file path=usr/postgres/9.6/doc/html/sql-dropfunction.html
file path=usr/postgres/9.6/doc/html/sql-dropgroup.html
file path=usr/postgres/9.6/doc/html/sql-dropindex.html
file path=usr/postgres/9.6/doc/html/sql-droplanguage.html
file path=usr/postgres/9.6/doc/html/sql-dropmaterializedview.html
file path=usr/postgres/9.6/doc/html/sql-dropopclass.html
file path=usr/postgres/9.6/doc/html/sql-dropoperator.html
file path=usr/postgres/9.6/doc/html/sql-dropopfamily.html
file path=usr/postgres/9.6/doc/html/sql-droppolicy.html
file path=usr/postgres/9.6/doc/html/sql-droprole.html
file path=usr/postgres/9.6/doc/html/sql-droprule.html
file path=usr/postgres/9.6/doc/html/sql-dropschema.html
file path=usr/postgres/9.6/doc/html/sql-dropsequence.html
file path=usr/postgres/9.6/doc/html/sql-dropserver.html
file path=usr/postgres/9.6/doc/html/sql-droptable.html
file path=usr/postgres/9.6/doc/html/sql-droptablespace.html
file path=usr/postgres/9.6/doc/html/sql-droptransform.html
file path=usr/postgres/9.6/doc/html/sql-droptrigger.html
file path=usr/postgres/9.6/doc/html/sql-droptsconfig.html
file path=usr/postgres/9.6/doc/html/sql-droptsdictionary.html
file path=usr/postgres/9.6/doc/html/sql-droptsparser.html
file path=usr/postgres/9.6/doc/html/sql-droptstemplate.html
file path=usr/postgres/9.6/doc/html/sql-droptype.html
file path=usr/postgres/9.6/doc/html/sql-dropuser.html
file path=usr/postgres/9.6/doc/html/sql-dropusermapping.html
file path=usr/postgres/9.6/doc/html/sql-dropview.html
file path=usr/postgres/9.6/doc/html/sql-end.html
file path=usr/postgres/9.6/doc/html/sql-execute.html
file path=usr/postgres/9.6/doc/html/sql-explain.html
file path=usr/postgres/9.6/doc/html/sql-expressions.html
file path=usr/postgres/9.6/doc/html/sql-fetch.html
file path=usr/postgres/9.6/doc/html/sql-grant.html
file path=usr/postgres/9.6/doc/html/sql-importforeignschema.html
file path=usr/postgres/9.6/doc/html/sql-insert.html
file path=usr/postgres/9.6/doc/html/sql-keywords-appendix.html
file path=usr/postgres/9.6/doc/html/sql-listen.html
file path=usr/postgres/9.6/doc/html/sql-load.html
file path=usr/postgres/9.6/doc/html/sql-lock.html
file path=usr/postgres/9.6/doc/html/sql-move.html
file path=usr/postgres/9.6/doc/html/sql-notify.html
file path=usr/postgres/9.6/doc/html/sql-prepare-transaction.html
file path=usr/postgres/9.6/doc/html/sql-prepare.html
file path=usr/postgres/9.6/doc/html/sql-reassign-owned.html
file path=usr/postgres/9.6/doc/html/sql-refreshmaterializedview.html
file path=usr/postgres/9.6/doc/html/sql-reindex.html
file path=usr/postgres/9.6/doc/html/sql-release-savepoint.html
file path=usr/postgres/9.6/doc/html/sql-reset.html
file path=usr/postgres/9.6/doc/html/sql-revoke.html
file path=usr/postgres/9.6/doc/html/sql-rollback-prepared.html
file path=usr/postgres/9.6/doc/html/sql-rollback-to.html
file path=usr/postgres/9.6/doc/html/sql-rollback.html
file path=usr/postgres/9.6/doc/html/sql-savepoint.html
file path=usr/postgres/9.6/doc/html/sql-security-label.html
file path=usr/postgres/9.6/doc/html/sql-select.html
file path=usr/postgres/9.6/doc/html/sql-selectinto.html
file path=usr/postgres/9.6/doc/html/sql-set-constraints.html
file path=usr/postgres/9.6/doc/html/sql-set-role.html
file path=usr/postgres/9.6/doc/html/sql-set-session-authorization.html
file path=usr/postgres/9.6/doc/html/sql-set-transaction.html
file path=usr/postgres/9.6/doc/html/sql-set.html
file path=usr/postgres/9.6/doc/html/sql-show.html
file path=usr/postgres/9.6/doc/html/sql-start-transaction.html
file path=usr/postgres/9.6/doc/html/sql-syntax-calling-funcs.html
file path=usr/postgres/9.6/doc/html/sql-syntax-lexical.html
file path=usr/postgres/9.6/doc/html/sql-syntax.html
file path=usr/postgres/9.6/doc/html/sql-truncate.html
file path=usr/postgres/9.6/doc/html/sql-unlisten.html
file path=usr/postgres/9.6/doc/html/sql-update.html
file path=usr/postgres/9.6/doc/html/sql-vacuum.html
file path=usr/postgres/9.6/doc/html/sql-values.html
file path=usr/postgres/9.6/doc/html/sql.html
file path=usr/postgres/9.6/doc/html/ssh-tunnels.html
file path=usr/postgres/9.6/doc/html/ssl-tcp.html
file path=usr/postgres/9.6/doc/html/sslinfo.html
file path=usr/postgres/9.6/doc/html/standby-settings.html
file path=usr/postgres/9.6/doc/html/storage-file-layout.html
file path=usr/postgres/9.6/doc/html/storage-fsm.html
file path=usr/postgres/9.6/doc/html/storage-init.html
file path=usr/postgres/9.6/doc/html/storage-page-layout.html
file path=usr/postgres/9.6/doc/html/storage-toast.html
file path=usr/postgres/9.6/doc/html/storage-vm.html
file path=usr/postgres/9.6/doc/html/storage.html
file path=usr/postgres/9.6/doc/html/stylesheet.css
file path=usr/postgres/9.6/doc/html/supported-platforms.html
file path=usr/postgres/9.6/doc/html/tablefunc.html
file path=usr/postgres/9.6/doc/html/tablesample-method.html
file path=usr/postgres/9.6/doc/html/tablesample-support-functions.html
file path=usr/postgres/9.6/doc/html/tcn.html
file path=usr/postgres/9.6/doc/html/test-decoding.html
file path=usr/postgres/9.6/doc/html/textsearch-configuration.html
file path=usr/postgres/9.6/doc/html/textsearch-controls.html
file path=usr/postgres/9.6/doc/html/textsearch-debugging.html
file path=usr/postgres/9.6/doc/html/textsearch-dictionaries.html
file path=usr/postgres/9.6/doc/html/textsearch-features.html
file path=usr/postgres/9.6/doc/html/textsearch-indexes.html
file path=usr/postgres/9.6/doc/html/textsearch-intro.html
file path=usr/postgres/9.6/doc/html/textsearch-limitations.html
file path=usr/postgres/9.6/doc/html/textsearch-migration.html
file path=usr/postgres/9.6/doc/html/textsearch-parsers.html
file path=usr/postgres/9.6/doc/html/textsearch-psql.html
file path=usr/postgres/9.6/doc/html/textsearch-tables.html
file path=usr/postgres/9.6/doc/html/textsearch.html
file path=usr/postgres/9.6/doc/html/transaction-iso.html
file path=usr/postgres/9.6/doc/html/trigger-datachanges.html
file path=usr/postgres/9.6/doc/html/trigger-definition.html
file path=usr/postgres/9.6/doc/html/trigger-example.html
file path=usr/postgres/9.6/doc/html/trigger-interface.html
file path=usr/postgres/9.6/doc/html/triggers.html
file path=usr/postgres/9.6/doc/html/tsearch2.html
file path=usr/postgres/9.6/doc/html/tsm-system-rows.html
file path=usr/postgres/9.6/doc/html/tsm-system-time.html
file path=usr/postgres/9.6/doc/html/tutorial-accessdb.html
file path=usr/postgres/9.6/doc/html/tutorial-advanced-intro.html
file path=usr/postgres/9.6/doc/html/tutorial-advanced.html
file path=usr/postgres/9.6/doc/html/tutorial-agg.html
file path=usr/postgres/9.6/doc/html/tutorial-arch.html
file path=usr/postgres/9.6/doc/html/tutorial-concepts.html
file path=usr/postgres/9.6/doc/html/tutorial-conclusion.html
file path=usr/postgres/9.6/doc/html/tutorial-createdb.html
file path=usr/postgres/9.6/doc/html/tutorial-delete.html
file path=usr/postgres/9.6/doc/html/tutorial-fk.html
file path=usr/postgres/9.6/doc/html/tutorial-inheritance.html
file path=usr/postgres/9.6/doc/html/tutorial-install.html
file path=usr/postgres/9.6/doc/html/tutorial-join.html
file path=usr/postgres/9.6/doc/html/tutorial-populate.html
file path=usr/postgres/9.6/doc/html/tutorial-select.html
file path=usr/postgres/9.6/doc/html/tutorial-sql-intro.html
file path=usr/postgres/9.6/doc/html/tutorial-sql.html
file path=usr/postgres/9.6/doc/html/tutorial-start.html
file path=usr/postgres/9.6/doc/html/tutorial-table.html
file path=usr/postgres/9.6/doc/html/tutorial-transactions.html
file path=usr/postgres/9.6/doc/html/tutorial-update.html
file path=usr/postgres/9.6/doc/html/tutorial-views.html
file path=usr/postgres/9.6/doc/html/tutorial-window.html
file path=usr/postgres/9.6/doc/html/tutorial.html
file path=usr/postgres/9.6/doc/html/typeconv-func.html
file path=usr/postgres/9.6/doc/html/typeconv-oper.html
file path=usr/postgres/9.6/doc/html/typeconv-overview.html
file path=usr/postgres/9.6/doc/html/typeconv-query.html
file path=usr/postgres/9.6/doc/html/typeconv-union-case.html
file path=usr/postgres/9.6/doc/html/typeconv.html
file path=usr/postgres/9.6/doc/html/unaccent.html
file path=usr/postgres/9.6/doc/html/unsupported-features-sql-standard.html
file path=usr/postgres/9.6/doc/html/upgrading.html
file path=usr/postgres/9.6/doc/html/user-manag.html
file path=usr/postgres/9.6/doc/html/using-explain.html
file path=usr/postgres/9.6/doc/html/uuid-ossp.html
file path=usr/postgres/9.6/doc/html/vacuumlo.html
file path=usr/postgres/9.6/doc/html/view-pg-available-extension-versions.html
file path=usr/postgres/9.6/doc/html/view-pg-available-extensions.html
file path=usr/postgres/9.6/doc/html/view-pg-config.html
file path=usr/postgres/9.6/doc/html/view-pg-cursors.html
file path=usr/postgres/9.6/doc/html/view-pg-file-settings.html
file path=usr/postgres/9.6/doc/html/view-pg-group.html
file path=usr/postgres/9.6/doc/html/view-pg-indexes.html
file path=usr/postgres/9.6/doc/html/view-pg-locks.html
file path=usr/postgres/9.6/doc/html/view-pg-matviews.html
file path=usr/postgres/9.6/doc/html/view-pg-policies.html
file path=usr/postgres/9.6/doc/html/view-pg-prepared-statements.html
file path=usr/postgres/9.6/doc/html/view-pg-prepared-xacts.html
file path=usr/postgres/9.6/doc/html/view-pg-replication-origin-status.html
file path=usr/postgres/9.6/doc/html/view-pg-replication-slots.html
file path=usr/postgres/9.6/doc/html/view-pg-roles.html
file path=usr/postgres/9.6/doc/html/view-pg-rules.html
file path=usr/postgres/9.6/doc/html/view-pg-seclabels.html
file path=usr/postgres/9.6/doc/html/view-pg-settings.html
file path=usr/postgres/9.6/doc/html/view-pg-shadow.html
file path=usr/postgres/9.6/doc/html/view-pg-stats.html
file path=usr/postgres/9.6/doc/html/view-pg-tables.html
file path=usr/postgres/9.6/doc/html/view-pg-timezone-abbrevs.html
file path=usr/postgres/9.6/doc/html/view-pg-timezone-names.html
file path=usr/postgres/9.6/doc/html/view-pg-user-mappings.html
file path=usr/postgres/9.6/doc/html/view-pg-user.html
file path=usr/postgres/9.6/doc/html/view-pg-views.html
file path=usr/postgres/9.6/doc/html/views-overview.html
file path=usr/postgres/9.6/doc/html/wal-async-commit.html
file path=usr/postgres/9.6/doc/html/wal-configuration.html
file path=usr/postgres/9.6/doc/html/wal-internals.html
file path=usr/postgres/9.6/doc/html/wal-intro.html
file path=usr/postgres/9.6/doc/html/wal-reliability.html
file path=usr/postgres/9.6/doc/html/wal.html
file path=usr/postgres/9.6/doc/html/warm-standby-failover.html
file path=usr/postgres/9.6/doc/html/warm-standby.html
file path=usr/postgres/9.6/doc/html/when-can-parallel-query-be-used.html
file path=usr/postgres/9.6/doc/html/xaggr.html
file path=usr/postgres/9.6/doc/html/xfunc-c.html
file path=usr/postgres/9.6/doc/html/xfunc-internal.html
file path=usr/postgres/9.6/doc/html/xfunc-overload.html
file path=usr/postgres/9.6/doc/html/xfunc-pl.html
file path=usr/postgres/9.6/doc/html/xfunc-sql.html
file path=usr/postgres/9.6/doc/html/xfunc-volatility.html
file path=usr/postgres/9.6/doc/html/xfunc.html
file path=usr/postgres/9.6/doc/html/xindex.html
file path=usr/postgres/9.6/doc/html/xml2.html
file path=usr/postgres/9.6/doc/html/xoper-optimization.html
file path=usr/postgres/9.6/doc/html/xoper.html
file path=usr/postgres/9.6/doc/html/xplang-install.html
file path=usr/postgres/9.6/doc/html/xplang.html
file path=usr/postgres/9.6/doc/html/xtypes.html
file path=usr/postgres/9.6/man/man1/clusterdb.1
file path=usr/postgres/9.6/man/man1/createdb.1
file path=usr/postgres/9.6/man/man1/createlang.1
file path=usr/postgres/9.6/man/man1/createuser.1
file path=usr/postgres/9.6/man/man1/dropdb.1
file path=usr/postgres/9.6/man/man1/droplang.1
file path=usr/postgres/9.6/man/man1/dropuser.1
file path=usr/postgres/9.6/man/man1/ecpg.1
file path=usr/postgres/9.6/man/man1/initdb.1
file path=usr/postgres/9.6/man/man1/oid2name.1
file path=usr/postgres/9.6/man/man1/pg_archivecleanup.1
file path=usr/postgres/9.6/man/man1/pg_basebackup.1
file path=usr/postgres/9.6/man/man1/pg_config.1
file path=usr/postgres/9.6/man/man1/pg_controldata.1
file path=usr/postgres/9.6/man/man1/pg_ctl.1
file path=usr/postgres/9.6/man/man1/pg_dump.1
file path=usr/postgres/9.6/man/man1/pg_dumpall.1
file path=usr/postgres/9.6/man/man1/pg_isready.1
file path=usr/postgres/9.6/man/man1/pg_receivexlog.1
file path=usr/postgres/9.6/man/man1/pg_recvlogical.1
file path=usr/postgres/9.6/man/man1/pg_resetxlog.1
file path=usr/postgres/9.6/man/man1/pg_restore.1
file path=usr/postgres/9.6/man/man1/pg_rewind.1
file path=usr/postgres/9.6/man/man1/pg_standby.1
file path=usr/postgres/9.6/man/man1/pg_test_fsync.1
file path=usr/postgres/9.6/man/man1/pg_test_timing.1
file path=usr/postgres/9.6/man/man1/pg_upgrade.1
file path=usr/postgres/9.6/man/man1/pg_xlogdump.1
file path=usr/postgres/9.6/man/man1/pgbench.1
file path=usr/postgres/9.6/man/man1/postgres.1
file path=usr/postgres/9.6/man/man1/postmaster.1
file path=usr/postgres/9.6/man/man1/psql.1
file path=usr/postgres/9.6/man/man1/reindexdb.1
file path=usr/postgres/9.6/man/man1/vacuumdb.1
file path=usr/postgres/9.6/man/man1/vacuumlo.1
file path=usr/postgres/9.6/man/man3/SPI_connect.3
file path=usr/postgres/9.6/man/man3/SPI_copytuple.3
file path=usr/postgres/9.6/man/man3/SPI_cursor_close.3
file path=usr/postgres/9.6/man/man3/SPI_cursor_fetch.3
file path=usr/postgres/9.6/man/man3/SPI_cursor_find.3
file path=usr/postgres/9.6/man/man3/SPI_cursor_move.3
file path=usr/postgres/9.6/man/man3/SPI_cursor_open.3
file path=usr/postgres/9.6/man/man3/SPI_cursor_open_with_args.3
file path=usr/postgres/9.6/man/man3/SPI_cursor_open_with_paramlist.3
file path=usr/postgres/9.6/man/man3/SPI_exec.3
file path=usr/postgres/9.6/man/man3/SPI_execp.3
file path=usr/postgres/9.6/man/man3/SPI_execute.3
file path=usr/postgres/9.6/man/man3/SPI_execute_plan.3
file path=usr/postgres/9.6/man/man3/SPI_execute_plan_with_paramlist.3
file path=usr/postgres/9.6/man/man3/SPI_execute_with_args.3
file path=usr/postgres/9.6/man/man3/SPI_finish.3
file path=usr/postgres/9.6/man/man3/SPI_fname.3
file path=usr/postgres/9.6/man/man3/SPI_fnumber.3
file path=usr/postgres/9.6/man/man3/SPI_freeplan.3
file path=usr/postgres/9.6/man/man3/SPI_freetuple.3
file path=usr/postgres/9.6/man/man3/SPI_freetuptable.3
file path=usr/postgres/9.6/man/man3/SPI_getargcount.3
file path=usr/postgres/9.6/man/man3/SPI_getargtypeid.3
file path=usr/postgres/9.6/man/man3/SPI_getbinval.3
file path=usr/postgres/9.6/man/man3/SPI_getnspname.3
file path=usr/postgres/9.6/man/man3/SPI_getrelname.3
file path=usr/postgres/9.6/man/man3/SPI_gettype.3
file path=usr/postgres/9.6/man/man3/SPI_gettypeid.3
file path=usr/postgres/9.6/man/man3/SPI_getvalue.3
file path=usr/postgres/9.6/man/man3/SPI_is_cursor_plan.3
file path=usr/postgres/9.6/man/man3/SPI_keepplan.3
file path=usr/postgres/9.6/man/man3/SPI_modifytuple.3
file path=usr/postgres/9.6/man/man3/SPI_palloc.3
file path=usr/postgres/9.6/man/man3/SPI_pfree.3
file path=usr/postgres/9.6/man/man3/SPI_pop.3
file path=usr/postgres/9.6/man/man3/SPI_prepare.3
file path=usr/postgres/9.6/man/man3/SPI_prepare_cursor.3
file path=usr/postgres/9.6/man/man3/SPI_prepare_params.3
file path=usr/postgres/9.6/man/man3/SPI_push.3
file path=usr/postgres/9.6/man/man3/SPI_repalloc.3
file path=usr/postgres/9.6/man/man3/SPI_returntuple.3
file path=usr/postgres/9.6/man/man3/SPI_saveplan.3
file path=usr/postgres/9.6/man/man3/SPI_scroll_cursor_fetch.3
file path=usr/postgres/9.6/man/man3/SPI_scroll_cursor_move.3
file path=usr/postgres/9.6/man/man3/dblink.3
file path=usr/postgres/9.6/man/man3/dblink_build_sql_delete.3
file path=usr/postgres/9.6/man/man3/dblink_build_sql_insert.3
file path=usr/postgres/9.6/man/man3/dblink_build_sql_update.3
file path=usr/postgres/9.6/man/man3/dblink_cancel_query.3
file path=usr/postgres/9.6/man/man3/dblink_close.3
file path=usr/postgres/9.6/man/man3/dblink_connect.3
file path=usr/postgres/9.6/man/man3/dblink_connect_u.3
file path=usr/postgres/9.6/man/man3/dblink_disconnect.3
file path=usr/postgres/9.6/man/man3/dblink_error_message.3
file path=usr/postgres/9.6/man/man3/dblink_exec.3
file path=usr/postgres/9.6/man/man3/dblink_fetch.3
file path=usr/postgres/9.6/man/man3/dblink_get_connections.3
file path=usr/postgres/9.6/man/man3/dblink_get_notify.3
file path=usr/postgres/9.6/man/man3/dblink_get_pkey.3
file path=usr/postgres/9.6/man/man3/dblink_get_result.3
file path=usr/postgres/9.6/man/man3/dblink_is_busy.3
file path=usr/postgres/9.6/man/man3/dblink_open.3
file path=usr/postgres/9.6/man/man3/dblink_send_query.3
file path=usr/postgres/9.6/man/man5/ABORT.5sql
file path=usr/postgres/9.6/man/man5/ALTER_AGGREGATE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_COLLATION.5sql
file path=usr/postgres/9.6/man/man5/ALTER_CONVERSION.5sql
file path=usr/postgres/9.6/man/man5/ALTER_DATABASE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_DEFAULT_PRIVILEGES.5sql
file path=usr/postgres/9.6/man/man5/ALTER_DOMAIN.5sql
file path=usr/postgres/9.6/man/man5/ALTER_EVENT_TRIGGER.5sql
file path=usr/postgres/9.6/man/man5/ALTER_EXTENSION.5sql
file path=usr/postgres/9.6/man/man5/ALTER_FOREIGN_DATA_WRAPPER.5sql
file path=usr/postgres/9.6/man/man5/ALTER_FOREIGN_TABLE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_FUNCTION.5sql
file path=usr/postgres/9.6/man/man5/ALTER_GROUP.5sql
file path=usr/postgres/9.6/man/man5/ALTER_INDEX.5sql
file path=usr/postgres/9.6/man/man5/ALTER_LANGUAGE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_LARGE_OBJECT.5sql
file path=usr/postgres/9.6/man/man5/ALTER_MATERIALIZED_VIEW.5sql
file path=usr/postgres/9.6/man/man5/ALTER_OPERATOR.5sql
file path=usr/postgres/9.6/man/man5/ALTER_OPERATOR_CLASS.5sql
file path=usr/postgres/9.6/man/man5/ALTER_OPERATOR_FAMILY.5sql
file path=usr/postgres/9.6/man/man5/ALTER_POLICY.5sql
file path=usr/postgres/9.6/man/man5/ALTER_ROLE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_RULE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_SCHEMA.5sql
file path=usr/postgres/9.6/man/man5/ALTER_SEQUENCE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_SERVER.5sql
file path=usr/postgres/9.6/man/man5/ALTER_SYSTEM.5sql
file path=usr/postgres/9.6/man/man5/ALTER_TABLE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_TABLESPACE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_TEXT_SEARCH_CONFIGURATION.5sql
file path=usr/postgres/9.6/man/man5/ALTER_TEXT_SEARCH_DICTIONARY.5sql
file path=usr/postgres/9.6/man/man5/ALTER_TEXT_SEARCH_PARSER.5sql
file path=usr/postgres/9.6/man/man5/ALTER_TEXT_SEARCH_TEMPLATE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_TRIGGER.5sql
file path=usr/postgres/9.6/man/man5/ALTER_TYPE.5sql
file path=usr/postgres/9.6/man/man5/ALTER_USER.5sql
file path=usr/postgres/9.6/man/man5/ALTER_USER_MAPPING.5sql
file path=usr/postgres/9.6/man/man5/ALTER_VIEW.5sql
file path=usr/postgres/9.6/man/man5/ANALYZE.5sql
file path=usr/postgres/9.6/man/man5/BEGIN.5sql
file path=usr/postgres/9.6/man/man5/CHECKPOINT.5sql
file path=usr/postgres/9.6/man/man5/CLOSE.5sql
file path=usr/postgres/9.6/man/man5/CLUSTER.5sql
file path=usr/postgres/9.6/man/man5/COMMENT.5sql
file path=usr/postgres/9.6/man/man5/COMMIT.5sql
file path=usr/postgres/9.6/man/man5/COMMIT_PREPARED.5sql
file path=usr/postgres/9.6/man/man5/COPY.5sql
file path=usr/postgres/9.6/man/man5/CREATE_ACCESS_METHOD.5sql
file path=usr/postgres/9.6/man/man5/CREATE_AGGREGATE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_CAST.5sql
file path=usr/postgres/9.6/man/man5/CREATE_COLLATION.5sql
file path=usr/postgres/9.6/man/man5/CREATE_CONVERSION.5sql
file path=usr/postgres/9.6/man/man5/CREATE_DATABASE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_DOMAIN.5sql
file path=usr/postgres/9.6/man/man5/CREATE_EVENT_TRIGGER.5sql
file path=usr/postgres/9.6/man/man5/CREATE_EXTENSION.5sql
file path=usr/postgres/9.6/man/man5/CREATE_FOREIGN_DATA_WRAPPER.5sql
file path=usr/postgres/9.6/man/man5/CREATE_FOREIGN_TABLE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_FUNCTION.5sql
file path=usr/postgres/9.6/man/man5/CREATE_GROUP.5sql
file path=usr/postgres/9.6/man/man5/CREATE_INDEX.5sql
file path=usr/postgres/9.6/man/man5/CREATE_LANGUAGE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_MATERIALIZED_VIEW.5sql
file path=usr/postgres/9.6/man/man5/CREATE_OPERATOR.5sql
file path=usr/postgres/9.6/man/man5/CREATE_OPERATOR_CLASS.5sql
file path=usr/postgres/9.6/man/man5/CREATE_OPERATOR_FAMILY.5sql
file path=usr/postgres/9.6/man/man5/CREATE_POLICY.5sql
file path=usr/postgres/9.6/man/man5/CREATE_ROLE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_RULE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_SCHEMA.5sql
file path=usr/postgres/9.6/man/man5/CREATE_SEQUENCE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_SERVER.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TABLE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TABLESPACE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TABLE_AS.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TEXT_SEARCH_CONFIGURATION.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TEXT_SEARCH_DICTIONARY.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TEXT_SEARCH_PARSER.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TEXT_SEARCH_TEMPLATE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TRANSFORM.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TRIGGER.5sql
file path=usr/postgres/9.6/man/man5/CREATE_TYPE.5sql
file path=usr/postgres/9.6/man/man5/CREATE_USER.5sql
file path=usr/postgres/9.6/man/man5/CREATE_USER_MAPPING.5sql
file path=usr/postgres/9.6/man/man5/CREATE_VIEW.5sql
file path=usr/postgres/9.6/man/man5/DEALLOCATE.5sql
file path=usr/postgres/9.6/man/man5/DECLARE.5sql
file path=usr/postgres/9.6/man/man5/DELETE.5sql
file path=usr/postgres/9.6/man/man5/DISCARD.5sql
file path=usr/postgres/9.6/man/man5/DO.5sql
file path=usr/postgres/9.6/man/man5/DROP_ACCESS_METHOD.5sql
file path=usr/postgres/9.6/man/man5/DROP_AGGREGATE.5sql
file path=usr/postgres/9.6/man/man5/DROP_CAST.5sql
file path=usr/postgres/9.6/man/man5/DROP_COLLATION.5sql
file path=usr/postgres/9.6/man/man5/DROP_CONVERSION.5sql
file path=usr/postgres/9.6/man/man5/DROP_DATABASE.5sql
file path=usr/postgres/9.6/man/man5/DROP_DOMAIN.5sql
file path=usr/postgres/9.6/man/man5/DROP_EVENT_TRIGGER.5sql
file path=usr/postgres/9.6/man/man5/DROP_EXTENSION.5sql
file path=usr/postgres/9.6/man/man5/DROP_FOREIGN_DATA_WRAPPER.5sql
file path=usr/postgres/9.6/man/man5/DROP_FOREIGN_TABLE.5sql
file path=usr/postgres/9.6/man/man5/DROP_FUNCTION.5sql
file path=usr/postgres/9.6/man/man5/DROP_GROUP.5sql
file path=usr/postgres/9.6/man/man5/DROP_INDEX.5sql
file path=usr/postgres/9.6/man/man5/DROP_LANGUAGE.5sql
file path=usr/postgres/9.6/man/man5/DROP_MATERIALIZED_VIEW.5sql
file path=usr/postgres/9.6/man/man5/DROP_OPERATOR.5sql
file path=usr/postgres/9.6/man/man5/DROP_OPERATOR_CLASS.5sql
file path=usr/postgres/9.6/man/man5/DROP_OPERATOR_FAMILY.5sql
file path=usr/postgres/9.6/man/man5/DROP_OWNED.5sql
file path=usr/postgres/9.6/man/man5/DROP_POLICY.5sql
file path=usr/postgres/9.6/man/man5/DROP_ROLE.5sql
file path=usr/postgres/9.6/man/man5/DROP_RULE.5sql
file path=usr/postgres/9.6/man/man5/DROP_SCHEMA.5sql
file path=usr/postgres/9.6/man/man5/DROP_SEQUENCE.5sql
file path=usr/postgres/9.6/man/man5/DROP_SERVER.5sql
file path=usr/postgres/9.6/man/man5/DROP_TABLE.5sql
file path=usr/postgres/9.6/man/man5/DROP_TABLESPACE.5sql
file path=usr/postgres/9.6/man/man5/DROP_TEXT_SEARCH_CONFIGURATION.5sql
file path=usr/postgres/9.6/man/man5/DROP_TEXT_SEARCH_DICTIONARY.5sql
file path=usr/postgres/9.6/man/man5/DROP_TEXT_SEARCH_PARSER.5sql
file path=usr/postgres/9.6/man/man5/DROP_TEXT_SEARCH_TEMPLATE.5sql
file path=usr/postgres/9.6/man/man5/DROP_TRANSFORM.5sql
file path=usr/postgres/9.6/man/man5/DROP_TRIGGER.5sql
file path=usr/postgres/9.6/man/man5/DROP_TYPE.5sql
file path=usr/postgres/9.6/man/man5/DROP_USER.5sql
file path=usr/postgres/9.6/man/man5/DROP_USER_MAPPING.5sql
file path=usr/postgres/9.6/man/man5/DROP_VIEW.5sql
file path=usr/postgres/9.6/man/man5/END.5sql
file path=usr/postgres/9.6/man/man5/EXECUTE.5sql
file path=usr/postgres/9.6/man/man5/EXPLAIN.5sql
file path=usr/postgres/9.6/man/man5/FETCH.5sql
file path=usr/postgres/9.6/man/man5/GRANT.5sql
file path=usr/postgres/9.6/man/man5/IMPORT_FOREIGN_SCHEMA.5sql
file path=usr/postgres/9.6/man/man5/INSERT.5sql
file path=usr/postgres/9.6/man/man5/LISTEN.5sql
file path=usr/postgres/9.6/man/man5/LOAD.5sql
file path=usr/postgres/9.6/man/man5/LOCK.5sql
file path=usr/postgres/9.6/man/man5/MOVE.5sql
file path=usr/postgres/9.6/man/man5/NOTIFY.5sql
file path=usr/postgres/9.6/man/man5/PREPARE.5sql
file path=usr/postgres/9.6/man/man5/PREPARE_TRANSACTION.5sql
file path=usr/postgres/9.6/man/man5/REASSIGN_OWNED.5sql
file path=usr/postgres/9.6/man/man5/REFRESH_MATERIALIZED_VIEW.5sql
file path=usr/postgres/9.6/man/man5/REINDEX.5sql
file path=usr/postgres/9.6/man/man5/RELEASE_SAVEPOINT.5sql
file path=usr/postgres/9.6/man/man5/RESET.5sql
file path=usr/postgres/9.6/man/man5/REVOKE.5sql
file path=usr/postgres/9.6/man/man5/ROLLBACK.5sql
file path=usr/postgres/9.6/man/man5/ROLLBACK_PREPARED.5sql
file path=usr/postgres/9.6/man/man5/ROLLBACK_TO_SAVEPOINT.5sql
file path=usr/postgres/9.6/man/man5/SAVEPOINT.5sql
file path=usr/postgres/9.6/man/man5/SECURITY_LABEL.5sql
file path=usr/postgres/9.6/man/man5/SELECT.5sql
file path=usr/postgres/9.6/man/man5/SELECT_INTO.5sql
file path=usr/postgres/9.6/man/man5/SET.5sql
file path=usr/postgres/9.6/man/man5/SET_CONSTRAINTS.5sql
file path=usr/postgres/9.6/man/man5/SET_ROLE.5sql
file path=usr/postgres/9.6/man/man5/SET_SESSION_AUTHORIZATION.5sql
file path=usr/postgres/9.6/man/man5/SET_TRANSACTION.5sql
file path=usr/postgres/9.6/man/man5/SHOW.5sql
file path=usr/postgres/9.6/man/man5/START_TRANSACTION.5sql
file path=usr/postgres/9.6/man/man5/TABLE.5sql
file path=usr/postgres/9.6/man/man5/TRUNCATE.5sql
file path=usr/postgres/9.6/man/man5/UNLISTEN.5sql
file path=usr/postgres/9.6/man/man5/UPDATE.5sql
file path=usr/postgres/9.6/man/man5/VACUUM.5sql
file path=usr/postgres/9.6/man/man5/VALUES.5sql
file path=usr/postgres/9.6/man/man5/WITH.5sql
components/database/postgresql-96/postgresql96-language-bindings.p5m
New file
@@ -0,0 +1,89 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2016 Alexander Pyhalov
#
set name=pkg.fmri value=pkg:/database/postgres-96/language-bindings@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.summary value="PostgreSQL additional Perl, Python & TCL server procedural languages"
set name=info.classification value=org.opensolaris.category.2008:System/Databases
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
license COPYRIGHT license="PostgreSQL"
file path=usr/postgres/9.6/bin/pltcl_delmod mode=0555
file path=usr/postgres/9.6/bin/pltcl_listmod mode=0555
file path=usr/postgres/9.6/bin/pltcl_loadmod mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/plperl.so
file path=usr/postgres/9.6/lib/$(MACH64)/plpython2.so mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/pltcl.so mode=0555
file path=usr/postgres/9.6/share/extension/plperl--1.0.sql
file path=usr/postgres/9.6/share/extension/plperl--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/plperl.control
file path=usr/postgres/9.6/share/extension/plperlu--1.0.sql
file path=usr/postgres/9.6/share/extension/plperlu--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/plperlu.control
file path=usr/postgres/9.6/share/extension/plpython2u--1.0.sql
file path=usr/postgres/9.6/share/extension/plpython2u--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/plpython2u.control
file path=usr/postgres/9.6/share/extension/plpythonu--1.0.sql
file path=usr/postgres/9.6/share/extension/plpythonu--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/plpythonu.control
file path=usr/postgres/9.6/share/extension/pltcl--1.0.sql
file path=usr/postgres/9.6/share/extension/pltcl--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pltcl.control
file path=usr/postgres/9.6/share/extension/pltclu--1.0.sql
file path=usr/postgres/9.6/share/extension/pltclu--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/extension/pltclu.control
file path=usr/postgres/9.6/share/unknown.pltcl
file path=usr/share/locale/cs/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/ro/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/ro/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/sv/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/tr/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/tr/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/plpython-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pltcl-9.6.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/plperl-9.6.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pltcl-9.6.mo
components/database/postgresql-96/postgresql96-library.p5m
New file
@@ -0,0 +1,88 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2016 Alexander Pyhalov
#
set name=pkg.fmri value=pkg:/database/postgres-96/library@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.summary value="PostgreSQL client libraries"
set name=info.classification value=org.opensolaris.category.2008:Development/Databases
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
license COPYRIGHT license="PostgreSQL"
link path=usr/postgres/9.6/lib/64 target=$(MACH64)
dir path=usr/postgres/9.6/lib/$(MACH64)
link path=usr/postgres/9.6/lib/$(MACH64)/libecpg.so target=libecpg.so.6.8
link path=usr/postgres/9.6/lib/$(MACH64)/libecpg.so.6 target=libecpg.so.6.8
file path=usr/postgres/9.6/lib/$(MACH64)/libecpg.so.6.8 mode=0555
link path=usr/postgres/9.6/lib/$(MACH64)/libecpg_compat.so \
    target=libecpg_compat.so.3.8
link path=usr/postgres/9.6/lib/$(MACH64)/libecpg_compat.so.3 \
    target=libecpg_compat.so.3.8
file path=usr/postgres/9.6/lib/$(MACH64)/libecpg_compat.so.3.8 mode=0555
link path=usr/postgres/9.6/lib/$(MACH64)/libpgtypes.so target=libpgtypes.so.3.7
link path=usr/postgres/9.6/lib/$(MACH64)/libpgtypes.so.3 \
    target=libpgtypes.so.3.7
file path=usr/postgres/9.6/lib/$(MACH64)/libpgtypes.so.3.7 mode=0555
link path=usr/postgres/9.6/lib/$(MACH64)/libpq.so target=libpq.so.5.9
link path=usr/postgres/9.6/lib/$(MACH64)/libpq.so.5 target=libpq.so.5.9
file path=usr/postgres/9.6/lib/$(MACH64)/libpq.so.5.9 mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/libpqwalreceiver.so mode=0555
link path=usr/postgres/9.6/lib/libecpg.so target=libecpg.so.6.8
link path=usr/postgres/9.6/lib/libecpg.so.6 target=libecpg.so.6.8
file path=usr/postgres/9.6/lib/libecpg.so.6.8 mode=0555
link path=usr/postgres/9.6/lib/libecpg_compat.so target=libecpg_compat.so.3.8
link path=usr/postgres/9.6/lib/libecpg_compat.so.3 target=libecpg_compat.so.3.8
file path=usr/postgres/9.6/lib/libecpg_compat.so.3.8 mode=0555
link path=usr/postgres/9.6/lib/libpgtypes.so target=libpgtypes.so.3.7
link path=usr/postgres/9.6/lib/libpgtypes.so.3 target=libpgtypes.so.3.7
file path=usr/postgres/9.6/lib/libpgtypes.so.3.7 mode=0555
link path=usr/postgres/9.6/lib/libpq.so target=libpq.so.5.9
link path=usr/postgres/9.6/lib/libpq.so.5 target=libpq.so.5.9
file path=usr/postgres/9.6/lib/libpq.so.5.9 mode=0555
file path=usr/postgres/9.6/lib/libpqwalreceiver.so mode=0555
file path=usr/share/locale/cs/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/tr/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/tr/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/ecpglib6-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/libpq5-9.6.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/libpq5-9.6.mo
link path=usr/lib/$(MACH64)/libpq.so target=libpq.so.5.9 facet.compat.dev=true mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/lib/$(MACH64)/libpq.so.5 target=libpq.so.5.9 facet.compat.dev=true mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/lib/$(MACH64)/libpq.so.5.9 target=../../postgres/9.6/lib/$(MACH64)/libpq.so.5.9 facet.compat.dev=true mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/lib/libpq.so target=libpq.so.5.9 facet.compat.dev=true mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/lib/libpq.so.5 target=libpq.so.5.9 facet.compat.dev=true mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/lib/libpq.so.5.9 target=../postgres/9.6/lib/libpq.so.5.9 facet.compat.dev=true mediator=postgres mediator-implementation=postgresql mediator-version=9.6
components/database/postgresql-96/postgresql96-service.p5m
New file
@@ -0,0 +1,197 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2016 Alexander Pyhalov
#
set name=pkg.fmri value=pkg:/service/database/postgres-96@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.summary value="PostgreSQL database server"
set name=info.classification value=org.opensolaris.category.2008:System/Databases
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
license COPYRIGHT license="PostgreSQL"
depend fmri=pkg:/database/postgres-96 type=require
depend fmri=pkg:/database/postgres-common type=require
file files/auth_attr path=etc/security/auth_attr.d/postgres-96
file files/exec_attr path=etc/security/exec_attr.d/postgres-96
file files/prof_attr path=etc/security/prof_attr.d/postgres-96
file files/user_attr path=etc/user_attr.d/postgres-96
file files/postgresql_96.xml path=lib/svc/manifest/application/database/postgresql_96.xml   restart_fmri=svc:/system/manifest-import:default
file files/postgres_96 mode=0555 path=lib/svc/method/postgres_96
dir group=postgres mode=0755 owner=postgres path=var/postgres
dir group=postgres mode=0755 owner=postgres path=var/postgres/9.6
dir group=postgres mode=0700 owner=postgres path=var/postgres/9.6/backups
dir group=postgres mode=0700 owner=postgres path=var/postgres/9.6/data
link path=usr/postgres/9.6/bin/postmaster target=postgres
file path=usr/postgres/9.6/bin/initdb
file path=usr/postgres/9.6/bin/pg_controldata
file path=usr/postgres/9.6/bin/pg_ctl
file path=usr/postgres/9.6/bin/pg_resetxlog
file path=usr/postgres/9.6/bin/postgres
file path=usr/postgres/9.6/lib/$(MACH64)/ascii_and_mic.so
file path=usr/postgres/9.6/lib/$(MACH64)/cyrillic_and_mic.so
file path=usr/postgres/9.6/lib/$(MACH64)/dict_snowball.so
file path=usr/postgres/9.6/lib/$(MACH64)/euc_cn_and_mic.so
file path=usr/postgres/9.6/lib/$(MACH64)/euc_jp_and_sjis.so
file path=usr/postgres/9.6/lib/$(MACH64)/euc_kr_and_mic.so
file path=usr/postgres/9.6/lib/$(MACH64)/euc_tw_and_big5.so
file path=usr/postgres/9.6/lib/$(MACH64)/euc2004_sjis2004.so
file path=usr/postgres/9.6/lib/$(MACH64)/latin2_and_win1250.so
file path=usr/postgres/9.6/lib/$(MACH64)/latin_and_mic.so
file path=usr/postgres/9.6/lib/$(MACH64)/plpgsql.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_ascii.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_big5.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_cyrillic.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_euc_cn.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_euc_jp.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_euc_kr.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_euc_tw.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_euc2004.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_gb18030.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_gbk.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_iso8859.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_iso8859_1.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_johab.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_sjis.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_sjis2004.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_uhc.so
file path=usr/postgres/9.6/lib/$(MACH64)/utf8_and_win.so
file path=usr/postgres/9.6/share/conversion_create.sql
file path=usr/postgres/9.6/share/information_schema.sql
file path=usr/postgres/9.6/share/pg_hba.conf.sample
file path=usr/postgres/9.6/share/pg_ident.conf.sample
file path=usr/postgres/9.6/share/pg_service.conf.sample
file path=usr/postgres/9.6/share/postgres.bki
file path=usr/postgres/9.6/share/postgres.description
file path=usr/postgres/9.6/share/postgres.shdescription
file path=usr/postgres/9.6/share/postgresql.conf.sample
file path=usr/postgres/9.6/share/recovery.conf.sample
file path=usr/postgres/9.6/share/snowball_create.sql
file path=usr/postgres/9.6/share/sql_features.txt
file path=usr/postgres/9.6/share/system_views.sql
file path=usr/postgres/9.6/share/extension/plpgsql--1.0.sql
file path=usr/postgres/9.6/share/extension/plpgsql.control
file path=usr/postgres/9.6/share/extension/plpgsql--unpackaged--1.0.sql
file path=usr/postgres/9.6/share/timezonesets/Africa.txt
file path=usr/postgres/9.6/share/timezonesets/America.txt
file path=usr/postgres/9.6/share/timezonesets/Antarctica.txt
file path=usr/postgres/9.6/share/timezonesets/Asia.txt
file path=usr/postgres/9.6/share/timezonesets/Atlantic.txt
file path=usr/postgres/9.6/share/timezonesets/Australia
file path=usr/postgres/9.6/share/timezonesets/Australia.txt
file path=usr/postgres/9.6/share/timezonesets/Default
file path=usr/postgres/9.6/share/timezonesets/Etc.txt
file path=usr/postgres/9.6/share/timezonesets/Europe.txt
file path=usr/postgres/9.6/share/timezonesets/India
file path=usr/postgres/9.6/share/timezonesets/Indian.txt
file path=usr/postgres/9.6/share/timezonesets/Pacific.txt
file path=usr/postgres/9.6/share/tsearch_data/danish.stop
file path=usr/postgres/9.6/share/tsearch_data/dutch.stop
file path=usr/postgres/9.6/share/tsearch_data/english.stop
file path=usr/postgres/9.6/share/tsearch_data/finnish.stop
file path=usr/postgres/9.6/share/tsearch_data/french.stop
file path=usr/postgres/9.6/share/tsearch_data/german.stop
file path=usr/postgres/9.6/share/tsearch_data/hungarian.stop
file path=usr/postgres/9.6/share/tsearch_data/hunspell_sample.affix
file path=usr/postgres/9.6/share/tsearch_data/hunspell_sample_long.affix
file path=usr/postgres/9.6/share/tsearch_data/hunspell_sample_long.dict
file path=usr/postgres/9.6/share/tsearch_data/hunspell_sample_num.affix
file path=usr/postgres/9.6/share/tsearch_data/hunspell_sample_num.dict
file path=usr/postgres/9.6/share/tsearch_data/ispell_sample.affix
file path=usr/postgres/9.6/share/tsearch_data/ispell_sample.dict
file path=usr/postgres/9.6/share/tsearch_data/italian.stop
file path=usr/postgres/9.6/share/tsearch_data/norwegian.stop
file path=usr/postgres/9.6/share/tsearch_data/portuguese.stop
file path=usr/postgres/9.6/share/tsearch_data/russian.stop
file path=usr/postgres/9.6/share/tsearch_data/spanish.stop
file path=usr/postgres/9.6/share/tsearch_data/swedish.stop
file path=usr/postgres/9.6/share/tsearch_data/synonym_sample.syn
file path=usr/postgres/9.6/share/tsearch_data/thesaurus_sample.ths
file path=usr/postgres/9.6/share/tsearch_data/turkish.stop
file path=usr/postgres/9.6/share/tsearch_data/unaccent.rules
file path=usr/postgres/9.6/share/tsearch_data/xsyn_sample.rules
file path=usr/share/locale/cs/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/id/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/ro/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/sv/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/initdb-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_controldata-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_ctl-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_resetxlog-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/plpgsql-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/postgres-9.6.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/plpgsql-9.6.mo
components/database/postgresql-96/postgresql96-tests.p5m
New file
@@ -0,0 +1,421 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2016 Alexander Pyhalov
#
set name=pkg.fmri value=pkg:/database/postgres-96/tests@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.summary value="PostgreSQL functional regression tests"
set name=info.classification value=org.opensolaris.category.2008:Development/Databases
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
license COPYRIGHT license="PostgreSQL"
file files/pg_regress.sh path=usr/postgres/9.6/lib/regress/pg_regress.sh mode=0555
file path=usr/postgres/9.6/lib/$(MACH64)/regress.so
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/agg.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/array.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/constrf.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/constro.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/dept.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/desc.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/emp.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/hash.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/jsonb.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/onek.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/person.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/real_city.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/rect.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/streets.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/stud_emp.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/student.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/tenk.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/data/tsearch.data
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/abstime.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/advisory_lock.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/aggregates.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/alter_generic.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/alter_operator.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/alter_table.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/amutils.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/arrays.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/async.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/bit.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/bitmapops.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/boolean.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/box.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/brin.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/btree_index.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/case.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/char.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/char_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/char_2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/circle.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/cluster.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/collate.linux.utf8.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/collate.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/combocid.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/comments.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/conversion.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/copy2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/copydml.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/copyselect.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_aggregate.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_am.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_cast.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_function_3.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_index.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_misc.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_operator.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_table.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_table_like.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_type.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/create_view.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/date.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/dbsize.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/delete.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/dependency.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/domain.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/drop_if_exists.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/drop_operator.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/enum.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/equivclass.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/errors.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/event_trigger.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/float4-exp-three-digits.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/float4.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/float8-exp-three-digits-win32.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/float8-small-is-zero.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/float8-small-is-zero_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/float8.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/foreign_data.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/foreign_key.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/functional_deps.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/geometry.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/geometry_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/geometry_2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/gin.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/gist.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/groupingsets.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/guc.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/hash_index.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/horology.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/hs_standby_allowed.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/hs_standby_check.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/hs_standby_disallowed.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/hs_standby_functions.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/indirect_toast.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/inet.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/inherit.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/init_privs.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/insert.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/insert_conflict.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/int2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/int4.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/int8-exp-three-digits.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/int8.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/interval.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/join.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/json.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/json_encoding.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/json_encoding_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/jsonb.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/limit.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/line.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/lock.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/lseg.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/macaddr.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/matview.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/misc_functions.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/money.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/name.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/namespace.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/numeric.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/numeric_big.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/numerology.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/numerology_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/object_address.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/oid.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/oidjoins.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/opr_sanity.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/path.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/pg_lsn.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/plancache.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/plpgsql.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/point.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/polygon.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/polymorphism.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/portals.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/portals_p2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/prepare.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/prepared_xacts.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/prepared_xacts_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/privileges.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/psql.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/psql_crosstab.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/random.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/rangefuncs.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/rangetypes.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/regex.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/regproc.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/reltime.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/replica_identity.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/returning.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/roleattributes.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/rolenames.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/rowsecurity.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/rowtypes.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/rules.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/sanity_check.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/security_label.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_distinct.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_distinct_on.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_having.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_having_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_having_2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_implicit.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_implicit_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_implicit_2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_into.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_parallel.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_views.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/select_views_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/sequence.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/sequence_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/spgist.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/stats.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/strings.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/subselect.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/tablesample.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/temp.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/text.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/time.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/timestamp.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/timestamptz.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/timetz.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/tinterval.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/transactions.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/triggers.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/truncate.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/tsdicts.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/tsearch.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/tstypes.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/txid.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/type_sanity.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/typed_table.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/union.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/updatable_views.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/update.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/uuid.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/vacuum.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/varchar.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/varchar_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/varchar_2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/window.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/with.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/without_oid.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/xml.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/xml_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/xml_2.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/xmlmap.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/expected/xmlmap_1.out
file path=usr/postgres/9.6/lib/$(MACH64)/regress/input/constraints.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/input/copy.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/input/create_function_1.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/input/create_function_2.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/input/largeobject.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/input/misc.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/input/tablespace.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/output/constraints.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/output/copy.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/output/create_function_1.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/output/create_function_2.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/output/largeobject.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/output/largeobject_1.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/output/misc.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/output/tablespace.source
file path=usr/postgres/9.6/lib/$(MACH64)/regress/parallel_schedule
file path=usr/postgres/9.6/lib/$(MACH64)/regress/resultmap
file path=usr/postgres/9.6/lib/$(MACH64)/regress/serial_schedule
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/abstime.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/advisory_lock.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/aggregates.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/alter_generic.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/alter_operator.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/alter_table.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/amutils.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/arrays.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/async.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/bit.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/bitmapops.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/boolean.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/box.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/brin.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/btree_index.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/case.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/char.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/circle.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/cluster.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/collate.linux.utf8.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/collate.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/combocid.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/comments.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/conversion.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/copy2.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/copydml.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/copyselect.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_aggregate.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_am.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_cast.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_function_3.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_index.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_misc.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_operator.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_table.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_table_like.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_type.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/create_view.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/date.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/dbsize.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/delete.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/dependency.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/domain.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/drop_if_exists.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/drop_operator.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/enum.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/equivclass.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/errors.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/event_trigger.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/float4.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/float8.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/foreign_data.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/foreign_key.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/functional_deps.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/geometry.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/gin.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/gist.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/groupingsets.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/guc.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/hash_index.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/horology.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/hs_primary_extremes.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/hs_primary_setup.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/hs_standby_allowed.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/hs_standby_check.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/hs_standby_disallowed.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/hs_standby_functions.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/indirect_toast.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/inet.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/inherit.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/init_privs.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/insert.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/insert_conflict.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/int2.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/int4.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/int8.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/interval.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/join.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/json.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/json_encoding.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/jsonb.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/limit.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/line.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/lock.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/lseg.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/macaddr.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/matview.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/misc_functions.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/money.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/name.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/namespace.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/numeric.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/numeric_big.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/numerology.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/object_address.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/oid.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/oidjoins.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/opr_sanity.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/path.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/pg_lsn.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/plancache.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/plpgsql.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/point.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/polygon.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/polymorphism.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/portals.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/portals_p2.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/prepare.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/prepared_xacts.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/privileges.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/psql.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/psql_crosstab.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/random.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/rangefuncs.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/rangetypes.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/regex.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/regproc.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/reltime.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/replica_identity.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/returning.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/roleattributes.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/rolenames.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/rowsecurity.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/rowtypes.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/rules.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/sanity_check.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/security_label.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/select.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/select_distinct.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/select_distinct_on.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/select_having.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/select_implicit.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/select_into.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/select_parallel.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/select_views.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/sequence.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/spgist.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/stats.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/strings.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/subselect.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/tablesample.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/temp.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/text.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/time.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/timestamp.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/timestamptz.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/timetz.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/tinterval.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/transactions.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/triggers.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/truncate.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/tsdicts.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/tsearch.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/tstypes.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/txid.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/type_sanity.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/typed_table.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/union.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/updatable_views.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/update.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/uuid.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/vacuum.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/varchar.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/window.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/with.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/without_oid.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/xml.sql
file path=usr/postgres/9.6/lib/$(MACH64)/regress/sql/xmlmap.sql
components/database/postgresql-96/postgresql96.p5m
New file
@@ -0,0 +1,119 @@
#
# This file and its contents are supplied under the terms of the
# Common Development and Distribution License ("CDDL"), version 1.0.
# You may only use this file in accordance with the terms of version
# 1.0 of the CDDL.
#
# A full copy of the text of the CDDL should have accompanied this
# source.  A copy of the CDDL is also available via the Internet at
# http://www.illumos.org/license/CDDL.
#
#
# Copyright 2016 Alexander Pyhalov
#
set name=pkg.fmri value=pkg:/database/postgres-96@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.summary value="PostgreSQL client tools"
set name=info.classification value=org.opensolaris.category.2008:System/Databases
set name=info.source-url value=$(COMPONENT_ARCHIVE_URL)
set name=info.upstream-url value=$(COMPONENT_PROJECT_URL)
set name=org.opensolaris.consolidation value=$(CONSOLIDATION)
license COPYRIGHT license="PostgreSQL"
file path=usr/postgres/9.6/bin/clusterdb
file path=usr/postgres/9.6/bin/createdb
file path=usr/postgres/9.6/bin/createlang
file path=usr/postgres/9.6/bin/createuser
file path=usr/postgres/9.6/bin/dropdb
file path=usr/postgres/9.6/bin/droplang
file path=usr/postgres/9.6/bin/dropuser
file path=usr/postgres/9.6/bin/pg_basebackup
file path=usr/postgres/9.6/bin/pg_dump
file path=usr/postgres/9.6/bin/pg_dumpall
file path=usr/postgres/9.6/bin/pg_isready
file path=usr/postgres/9.6/bin/pg_receivexlog
file path=usr/postgres/9.6/bin/pg_recvlogical
file path=usr/postgres/9.6/bin/pg_restore
file path=usr/postgres/9.6/bin/pg_rewind
file path=usr/postgres/9.6/bin/pg_upgrade
file path=usr/postgres/9.6/bin/psql
file path=usr/postgres/9.6/bin/reindexdb
file path=usr/postgres/9.6/bin/vacuumdb
file path=usr/postgres/9.6/share/psqlrc.sample
file path=usr/share/locale/cs/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/cs/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/de/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/es/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/fr/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/it/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/ja/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/ko/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/pl/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/ru/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/sv/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_basebackup-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_dump-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_rewind-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pgscripts-9.6.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/psql-9.6.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/psql-9.6.mo
link path=usr/bin/clusterdb target=../postgres/9.6/bin/clusterdb mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/createdb target=../postgres/9.6/bin/createdb mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/createlang target=../postgres/9.6/bin/createlang mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/createuser target=../postgres/9.6/bin/createuser mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/dropdb target=../postgres/9.6/bin/dropdb mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/dropuser target=../postgres/9.6/bin/dropuser mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/droplang target=../postgres/9.6/bin/droplang mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/pg_basebackup target=../postgres/9.6/bin/pg_basebackup mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/pg_dump target=../postgres/9.6/bin/pg_dump mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/pg_dumpall target=../postgres/9.6/bin/pg_dumpall mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/pg_isready target=../postgres/9.6/bin/pg_isready mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/pg_receivexlog target=../postgres/9.6/bin/pg_receivexlog mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/pg_recvlogical target=../postgres/9.6/bin/pg_recvlogical mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/pg_restore target=../postgres/9.6/bin/pg_restore mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/pg_rewind target=../postgres/9.6/bin/pg_rewind mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/pg_upgrade target=../postgres/9.6/bin/pg_upgrade mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/psql target=../postgres/9.6/bin/psql mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/reindexdb target=../postgres/9.6/bin/reindexdb mediator=postgres mediator-implementation=postgresql mediator-version=9.6
link path=usr/bin/vacuumdb target=../postgres/9.6/bin/vacuumdb mediator=postgres mediator-implementation=postgresql mediator-version=9.6
make-rules/shared-macros.mk
@@ -624,9 +624,11 @@
PERL.5.16 =    /usr/perl5/5.16/bin/perl
PERL.5.22 =    /usr/perl5/5.22/bin/perl
PERL.5.24 =    /usr/perl5/5.24/bin/perl
POD2MAN.5.16 =    /usr/perl5/5.16/bin/pod2man
POD2MAN.5.22 =    /usr/perl5/5.22/bin/pod2man
POD2MAN.5.24 =    /usr/perl5/5.24/bin/pod2man
PERL =        $(PERL.$(PERL_VERSION))
POD2MAN =    $(POD2MAN.$(PERL_VERSION))