Andreas Wacknitz
2024-03-03 b18706cf5f6e2d4287e454051654e2467875e9a1
add postgresql-16.2

23 files added
1 files modified
8764 ■■■■■ changed files
components/database/postgresql-16/Makefile 136 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/files/auth_attr 2 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/files/exec_attr 8 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/files/pg_config.h 5 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/files/pg_regress.sh 114 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/files/postgres_16 114 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/files/postgresql_16.xml 129 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/files/prof_attr 1 ●●●● patch | view | raw | blame | history
components/database/postgresql-16/files/user_attr 1 ●●●● patch | view | raw | blame | history
components/database/postgresql-16/manifests/sample-manifest.p5m 3899 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/patches/01-dism.patch 90 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/patches/02-plpython_rpath.patch 33 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/patches/03-pam_conv.patch 23 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/pkg5 30 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/postgresql16-contrib.p5m 397 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/postgresql16-developer.p5m 1001 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/postgresql16-documentation.p5m 1451 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/postgresql16-language-bindings.p5m 94 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/postgresql16-library.p5m 93 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/postgresql16-service.p5m 239 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/postgresql16-tests.p5m 506 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/postgresql16.p5m 179 ●●●●● patch | view | raw | blame | history
components/database/postgresql-16/test/results-all.master 216 ●●●●● patch | view | raw | blame | history
make-rules/shared-macros.mk 3 ●●●● patch | view | raw | blame | history
components/database/postgresql-16/Makefile
New file
@@ -0,0 +1,136 @@
#
# 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 2019 Alexander Pyhalov
# Copyright 2019 Michal Nowak
# Copyright 2021 Gary Mills
# Copyright 2022 Marco van Wieringen
# Copyright 2023 Andreas Wacknitz
#
BUILD_BITS= 32_and_64
OPENSSL_VERSION= 3.1
USE_PARALLEL_BUILD= yes
include ../../../make-rules/shared-macros.mk
COMPONENT_NAME=        postgresql
COMPONENT_VERSION_MAJOR=    16
COMPONENT_VERSION=    $(COMPONENT_VERSION_MAJOR).2
COMPONENT_SRC=        $(COMPONENT_NAME)-$(COMPONENT_VERSION)
COMPONENT_ARCHIVE=    $(COMPONENT_SRC).tar.bz2
COMPONENT_ARCHIVE_HASH=    sha256:446e88294dbc2c9085ab4b7061a646fa604b4bec03521d5ea671c2e5ad9b2952
COMPONENT_ARCHIVE_URL=    https://ftp.postgresql.org/pub/source/v$(COMPONENT_VERSION)/$(COMPONENT_ARCHIVE)
COMPONENT_PROJECT_URL=    https://www.postgresql.org
COMPONENT_FMRI=            database/postgres-$(COMPONENT_VERSION_MAJOR)
COMPONENT_CLASSIFICATION=    System/Databases
COMPONENT_LICENSE=        Postgresql
COMPONENT_LICENSE_FILE=    COPYRIGHT
TEST_TARGET= $(TEST_64)
include $(WS_MAKE_RULES)/common.mk
# 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_VERSION_MAJOR)
CONFIGURE_OPTIONS += --exec-prefix=/usr/postgres/$(COMPONENT_VERSION_MAJOR)
CONFIGURE_OPTIONS += --datadir=/usr/postgres/$(COMPONENT_VERSION_MAJOR)/share
CONFIGURE_OPTIONS += --sysconfdir=/etc/postgres/$(COMPONENT_VERSION_MAJOR)
CONFIGURE_OPTIONS += --mandir=/usr/postgres/$(COMPONENT_VERSION_MAJOR)/man
CONFIGURE_OPTIONS += --includedir=/usr/postgres/$(COMPONENT_VERSION_MAJOR)/include
CONFIGURE_OPTIONS += --sharedstatedir=/var/postgres/$(COMPONENT_VERSION_MAJOR)
CONFIGURE_OPTIONS += --localstatedir=/var/postgres/$(COMPONENT_VERSION_MAJOR)
CONFIGURE_OPTIONS += --localedir=/usr/share/locale
CONFIGURE_OPTIONS += --docdir=/usr/postgres/$(COMPONENT_VERSION_MAJOR)/doc
CONFIGURE_OPTIONS += --htmldir=/usr/postgres/$(COMPONENT_VERSION_MAJOR)/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-ssl=openssl
CONFIGURE_OPTIONS += --with-libedit-preferred
CONFIGURE_OPTIONS += --with-libxml
CONFIGURE_OPTIONS.64 += --with-libxslt
CONFIGURE_OPTIONS += --with-lz4
# We don't have gss_store_cred_into() which is part of heimdal since 2018:
#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 += --with-uuid=e2fs
CONFIGURE_OPTIONS.32 += --bindir=/usr/postgres/$(COMPONENT_VERSION_MAJOR)/bin/$(MACH32)
CONFIGURE_OPTIONS.32 += --libexecdir=/usr/postgres/$(COMPONENT_VERSION_MAJOR)/bin/$(MACH32)
CONFIGURE_OPTIONS.32 += --sbindir=/usr/postgres/$(COMPONENT_VERSION_MAJOR)/bin/$(MACH32)
CONFIGURE_OPTIONS.32 += --libdir=/usr/postgres/$(COMPONENT_VERSION_MAJOR)/lib
CONFIGURE_OPTIONS.32 += LDFLAGS=-L$(OPENSSL_PREFIX)/lib
CONFIGURE_OPTIONS.64 += --bindir=/usr/postgres/$(COMPONENT_VERSION_MAJOR)/bin
CONFIGURE_OPTIONS.64 += --libexecdir=/usr/postgres/$(COMPONENT_VERSION_MAJOR)/bin
CONFIGURE_OPTIONS.64 += --sbindir=/usr/postgres/$(COMPONENT_VERSION_MAJOR)/bin
CONFIGURE_OPTIONS.64 += --libdir=/usr/postgres/$(COMPONENT_VERSION_MAJOR)/lib/$(MACH64)
CONFIGURE_OPTIONS.64 += LDFLAGS=-L$(OPENSSL_PREFIX)/lib/$(MACH64)
CONFIGURE_OPTIONS += CPPFLAGS=-I$(OPENSSL_PREFIX)/include
CONFIGURE_OPTIONS += $(CONFIGURE_OPTIONS.$(BITS))
CONFIGURE_ENV += PYTHON=$(PYTHON)
CONFIGURE_ENV += PERL=$(PERL)
COMPONENT_BUILD_ENV += MAKELEVEL=0
COMPONENT_BUILD_ENV += PATH=$(PATH)
COMPONENT_INSTALL_ENV += PATH=$(PATH)
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_VERSION_MAJOR)/include/pg_config.h usr/postgres/$(COMPONENT_VERSION_MAJOR)/include/pg_config-$(BITS).h  && \
             $(MV) usr/postgres/$(COMPONENT_VERSION_MAJOR)/include/server/pg_config.h usr/postgres/$(COMPONENT_VERSION_MAJOR)/include/server/pg_config-$(BITS).h
ENV=/usr/bin/env -i
COMPONENT_TEST_ENV += PATH=$(PATH)
COMPONENT_TEST_TRANSFORMS= \
    '-n ' \
    '-e "s:[ \t]*[0-9]* ms::"' \
    '-e "/ok/p"' \
    '-e "/FAIL/p"' \
    '-e "/failed/p"'
# Auto-generated dependencies
PERL_REQUIRED_PACKAGES += runtime/perl
PYTHON_REQUIRED_PACKAGES += runtime/python
REQUIRED_PACKAGES += $(ICU_LIBRARY_PKG)
REQUIRED_PACKAGES += SUNWcs
REQUIRED_PACKAGES += database/postgres-common
REQUIRED_PACKAGES += library/libedit
REQUIRED_PACKAGES += library/libxml2
REQUIRED_PACKAGES += library/libxslt
REQUIRED_PACKAGES += library/lz4
REQUIRED_PACKAGES += library/security/openssl-31
REQUIRED_PACKAGES += library/zlib
REQUIRED_PACKAGES += runtime/tcl-8
REQUIRED_PACKAGES += shell/ksh93
REQUIRED_PACKAGES += system/library
REQUIRED_PACKAGES += system/library/math
components/database/postgresql-16/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-16/files/exec_attr
New file
@@ -0,0 +1,8 @@
Postgres Administration:solaris:cmd:::/usr/postgres/16/bin/initdb:uid=postgres
Postgres Administration:solaris:cmd:::/usr/postgres/16/bin/pg_checksums:uid=postgres
Postgres Administration:solaris:cmd:::/usr/postgres/16/bin/pg_controldata:uid=postgres
Postgres Administration:solaris:cmd:::/usr/postgres/16/bin/pg_ctl:uid=postgres
Postgres Administration:solaris:cmd:::/usr/postgres/16/bin/pg_resetwal:uid=postgres
Postgres Administration:solaris:cmd:::/usr/postgres/16/bin/psql:uid=postgres
Postgres Administration:solaris:cmd:::/usr/postgres/16/bin/postgres:uid=postgres
Postgres Administration:solaris:cmd:::/usr/postgres/16/bin/postmaster:uid=postgres
components/database/postgresql-16/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-16/files/pg_regress.sh
New file
@@ -0,0 +1,114 @@
#!/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/16
# 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_16
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_16 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-16/files/postgres_16
New file
@@ -0,0 +1,114 @@
#!/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.
#
. /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_16/data directory $PGDATA does not exist"
        exit $SMF_EXIT_ERR_CONFIG
    fi
    if [ ! -w $PGDATA ]; then
        echo "Error: postgresql_16/data directory $PGDATA is not writable by postgres"
        exit $SMF_EXIT_ERR_CONFIG
    fi
    if [ "$PGINIT" = "false" ]; then
        echo "Notice: postgresql_16/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_16/initialized property to true."
            echo "        svccfg -s $SMF_FMRI \"setprop postgresql_16/initialized = boolean: true\""
            echo "        svccfg -s $SMF_FMRI refresh"
            exit $SMF_EXIT_ERR
        fi
        svccfg -s $SMF_FMRI "setprop postgresql_16/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_16/data directory $PGDATA is empty, but it should be initialized"
            echo "Hint : check your mountpoints"
        else
            echo "Error: postgresql_16/data directory $PGDATA is not empty, nor is it a valid PostgreSQL data directory"
        fi
        exit $SMF_EXIT_ERR_CONFIG
    fi
}
PGBIN=`getproparg postgresql_16/bin`
PGDATA=`getproparg postgresql_16/data`
PGLOG=`getproparg postgresql_16/log`
PGINIT=`getproparg postgresql_16/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_16/data property not set"
        exit $SMF_EXIT_ERR_CONFIG
fi
if [ -z $PGLOG ]; then
        echo "Error: postgresql_16/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-16/files/postgresql_16.xml
New file
@@ -0,0 +1,129 @@
<?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
        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_16'>
<service
        name='application/database/postgresql_16'
        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_16 start'
                timeout_seconds='60' />
        <exec_method
                type='method'
                name='stop'
                exec='/lib/svc/method/postgres_16 stop'
                timeout_seconds='60' />
        <exec_method
                type='method'
                name='refresh'
                exec='/lib/svc/method/postgres_16 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_16' type='application'>
            <propval name='bin' type='astring'
               value='/usr/postgres/16/bin' />
            <propval name='data' type='astring'
               value='/var/postgres/16/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 16
                        </loctext>
                </common_name>
        </template>
</service>
</service_bundle>
components/database/postgresql-16/files/prof_attr
New file
@@ -0,0 +1 @@
Postgres Administration::::auths=solaris.smf.manage.postgres,solaris.smf.value.postgres
components/database/postgresql-16/files/user_attr
New file
@@ -0,0 +1 @@
postgres::::type=role;profiles=Postgres Administration,All
components/database/postgresql-16/manifests/sample-manifest.p5m
New file
@@ -0,0 +1,3899 @@
#
# 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 2024 <contributor>
#
set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.human-version value=$(HUMAN_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/16/bin/$(MACH32)/clusterdb
file path=usr/postgres/16/bin/$(MACH32)/createdb
file path=usr/postgres/16/bin/$(MACH32)/createuser
file path=usr/postgres/16/bin/$(MACH32)/dropdb
file path=usr/postgres/16/bin/$(MACH32)/dropuser
file path=usr/postgres/16/bin/$(MACH32)/ecpg
file path=usr/postgres/16/bin/$(MACH32)/initdb
file path=usr/postgres/16/bin/$(MACH32)/oid2name
file path=usr/postgres/16/bin/$(MACH32)/pg_amcheck
file path=usr/postgres/16/bin/$(MACH32)/pg_archivecleanup
file path=usr/postgres/16/bin/$(MACH32)/pg_basebackup
file path=usr/postgres/16/bin/$(MACH32)/pg_checksums
file path=usr/postgres/16/bin/$(MACH32)/pg_config
file path=usr/postgres/16/bin/$(MACH32)/pg_controldata
file path=usr/postgres/16/bin/$(MACH32)/pg_ctl
file path=usr/postgres/16/bin/$(MACH32)/pg_dump
file path=usr/postgres/16/bin/$(MACH32)/pg_dumpall
file path=usr/postgres/16/bin/$(MACH32)/pg_isready
file path=usr/postgres/16/bin/$(MACH32)/pg_receivewal
file path=usr/postgres/16/bin/$(MACH32)/pg_recvlogical
file path=usr/postgres/16/bin/$(MACH32)/pg_resetwal
file path=usr/postgres/16/bin/$(MACH32)/pg_restore
file path=usr/postgres/16/bin/$(MACH32)/pg_rewind
file path=usr/postgres/16/bin/$(MACH32)/pg_test_fsync
file path=usr/postgres/16/bin/$(MACH32)/pg_test_timing
file path=usr/postgres/16/bin/$(MACH32)/pg_upgrade
file path=usr/postgres/16/bin/$(MACH32)/pg_verifybackup
file path=usr/postgres/16/bin/$(MACH32)/pg_waldump
file path=usr/postgres/16/bin/$(MACH32)/pgbench
file path=usr/postgres/16/bin/$(MACH32)/postgres
file path=usr/postgres/16/bin/$(MACH32)/psql
file path=usr/postgres/16/bin/$(MACH32)/reindexdb
file path=usr/postgres/16/bin/$(MACH32)/vacuumdb
file path=usr/postgres/16/bin/$(MACH32)/vacuumlo
file path=usr/postgres/16/bin/clusterdb
file path=usr/postgres/16/bin/createdb
file path=usr/postgres/16/bin/createuser
file path=usr/postgres/16/bin/dropdb
file path=usr/postgres/16/bin/dropuser
file path=usr/postgres/16/bin/ecpg
file path=usr/postgres/16/bin/initdb
file path=usr/postgres/16/bin/oid2name
file path=usr/postgres/16/bin/pg_amcheck
file path=usr/postgres/16/bin/pg_archivecleanup
file path=usr/postgres/16/bin/pg_basebackup
file path=usr/postgres/16/bin/pg_checksums
file path=usr/postgres/16/bin/pg_config
file path=usr/postgres/16/bin/pg_controldata
file path=usr/postgres/16/bin/pg_ctl
file path=usr/postgres/16/bin/pg_dump
file path=usr/postgres/16/bin/pg_dumpall
file path=usr/postgres/16/bin/pg_isready
file path=usr/postgres/16/bin/pg_receivewal
file path=usr/postgres/16/bin/pg_recvlogical
file path=usr/postgres/16/bin/pg_resetwal
file path=usr/postgres/16/bin/pg_restore
file path=usr/postgres/16/bin/pg_rewind
file path=usr/postgres/16/bin/pg_test_fsync
file path=usr/postgres/16/bin/pg_test_timing
file path=usr/postgres/16/bin/pg_upgrade
file path=usr/postgres/16/bin/pg_verifybackup
file path=usr/postgres/16/bin/pg_waldump
file path=usr/postgres/16/bin/pgbench
file path=usr/postgres/16/bin/postgres
file path=usr/postgres/16/bin/psql
file path=usr/postgres/16/bin/reindexdb
file path=usr/postgres/16/bin/vacuumdb
file path=usr/postgres/16/bin/vacuumlo
file path=usr/postgres/16/doc/extension/autoinc.example
file path=usr/postgres/16/doc/extension/insert_username.example
file path=usr/postgres/16/doc/extension/moddatetime.example
file path=usr/postgres/16/doc/extension/refint.example
file path=usr/postgres/16/doc/html/acronyms.html
file path=usr/postgres/16/doc/html/admin.html
file path=usr/postgres/16/doc/html/adminpack.html
file path=usr/postgres/16/doc/html/amcheck.html
file path=usr/postgres/16/doc/html/app-clusterdb.html
file path=usr/postgres/16/doc/html/app-createdb.html
file path=usr/postgres/16/doc/html/app-createuser.html
file path=usr/postgres/16/doc/html/app-dropdb.html
file path=usr/postgres/16/doc/html/app-dropuser.html
file path=usr/postgres/16/doc/html/app-ecpg.html
file path=usr/postgres/16/doc/html/app-initdb.html
file path=usr/postgres/16/doc/html/app-pg-ctl.html
file path=usr/postgres/16/doc/html/app-pg-dumpall.html
file path=usr/postgres/16/doc/html/app-pg-isready.html
file path=usr/postgres/16/doc/html/app-pgamcheck.html
file path=usr/postgres/16/doc/html/app-pgbasebackup.html
file path=usr/postgres/16/doc/html/app-pgchecksums.html
file path=usr/postgres/16/doc/html/app-pgconfig.html
file path=usr/postgres/16/doc/html/app-pgcontroldata.html
file path=usr/postgres/16/doc/html/app-pgdump.html
file path=usr/postgres/16/doc/html/app-pgreceivewal.html
file path=usr/postgres/16/doc/html/app-pgreceivexlog.html
file path=usr/postgres/16/doc/html/app-pgrecvlogical.html
file path=usr/postgres/16/doc/html/app-pgresetwal.html
file path=usr/postgres/16/doc/html/app-pgresetxlog.html
file path=usr/postgres/16/doc/html/app-pgrestore.html
file path=usr/postgres/16/doc/html/app-pgrewind.html
file path=usr/postgres/16/doc/html/app-pgverifybackup.html
file path=usr/postgres/16/doc/html/app-postgres.html
file path=usr/postgres/16/doc/html/app-psql.html
file path=usr/postgres/16/doc/html/app-reindexdb.html
file path=usr/postgres/16/doc/html/app-vacuumdb.html
file path=usr/postgres/16/doc/html/appendix-obsolete.html
file path=usr/postgres/16/doc/html/appendixes.html
file path=usr/postgres/16/doc/html/applevel-consistency.html
file path=usr/postgres/16/doc/html/archive-module-callbacks.html
file path=usr/postgres/16/doc/html/archive-module-init.html
file path=usr/postgres/16/doc/html/archive-modules.html
file path=usr/postgres/16/doc/html/arrays.html
file path=usr/postgres/16/doc/html/auth-bsd.html
file path=usr/postgres/16/doc/html/auth-cert.html
file path=usr/postgres/16/doc/html/auth-delay.html
file path=usr/postgres/16/doc/html/auth-ident.html
file path=usr/postgres/16/doc/html/auth-ldap.html
file path=usr/postgres/16/doc/html/auth-methods.html
file path=usr/postgres/16/doc/html/auth-pam.html
file path=usr/postgres/16/doc/html/auth-password.html
file path=usr/postgres/16/doc/html/auth-peer.html
file path=usr/postgres/16/doc/html/auth-pg-hba-conf.html
file path=usr/postgres/16/doc/html/auth-radius.html
file path=usr/postgres/16/doc/html/auth-trust.html
file path=usr/postgres/16/doc/html/auth-username-maps.html
file path=usr/postgres/16/doc/html/auto-explain.html
file path=usr/postgres/16/doc/html/backup-dump.html
file path=usr/postgres/16/doc/html/backup-file.html
file path=usr/postgres/16/doc/html/backup-manifest-files.html
file path=usr/postgres/16/doc/html/backup-manifest-format.html
file path=usr/postgres/16/doc/html/backup-manifest-toplevel.html
file path=usr/postgres/16/doc/html/backup-manifest-wal-ranges.html
file path=usr/postgres/16/doc/html/backup.html
file path=usr/postgres/16/doc/html/basebackup-to-shell.html
file path=usr/postgres/16/doc/html/basic-archive.html
file path=usr/postgres/16/doc/html/bgworker.html
file path=usr/postgres/16/doc/html/biblio.html
file path=usr/postgres/16/doc/html/bki-commands.html
file path=usr/postgres/16/doc/html/bki-example.html
file path=usr/postgres/16/doc/html/bki-format.html
file path=usr/postgres/16/doc/html/bki-structure.html
file path=usr/postgres/16/doc/html/bki.html
file path=usr/postgres/16/doc/html/bloom.html
file path=usr/postgres/16/doc/html/bookindex.html
file path=usr/postgres/16/doc/html/brin-builtin-opclasses.html
file path=usr/postgres/16/doc/html/brin-extensibility.html
file path=usr/postgres/16/doc/html/brin-intro.html
file path=usr/postgres/16/doc/html/brin.html
file path=usr/postgres/16/doc/html/btree-behavior.html
file path=usr/postgres/16/doc/html/btree-gin.html
file path=usr/postgres/16/doc/html/btree-gist.html
file path=usr/postgres/16/doc/html/btree-implementation.html
file path=usr/postgres/16/doc/html/btree-intro.html
file path=usr/postgres/16/doc/html/btree-support-funcs.html
file path=usr/postgres/16/doc/html/btree.html
file path=usr/postgres/16/doc/html/bug-reporting.html
file path=usr/postgres/16/doc/html/catalog-pg-aggregate.html
file path=usr/postgres/16/doc/html/catalog-pg-am.html
file path=usr/postgres/16/doc/html/catalog-pg-amop.html
file path=usr/postgres/16/doc/html/catalog-pg-amproc.html
file path=usr/postgres/16/doc/html/catalog-pg-attrdef.html
file path=usr/postgres/16/doc/html/catalog-pg-attribute.html
file path=usr/postgres/16/doc/html/catalog-pg-auth-members.html
file path=usr/postgres/16/doc/html/catalog-pg-authid.html
file path=usr/postgres/16/doc/html/catalog-pg-cast.html
file path=usr/postgres/16/doc/html/catalog-pg-class.html
file path=usr/postgres/16/doc/html/catalog-pg-collation.html
file path=usr/postgres/16/doc/html/catalog-pg-constraint.html
file path=usr/postgres/16/doc/html/catalog-pg-conversion.html
file path=usr/postgres/16/doc/html/catalog-pg-database.html
file path=usr/postgres/16/doc/html/catalog-pg-db-role-setting.html
file path=usr/postgres/16/doc/html/catalog-pg-default-acl.html
file path=usr/postgres/16/doc/html/catalog-pg-depend.html
file path=usr/postgres/16/doc/html/catalog-pg-description.html
file path=usr/postgres/16/doc/html/catalog-pg-enum.html
file path=usr/postgres/16/doc/html/catalog-pg-event-trigger.html
file path=usr/postgres/16/doc/html/catalog-pg-extension.html
file path=usr/postgres/16/doc/html/catalog-pg-foreign-data-wrapper.html
file path=usr/postgres/16/doc/html/catalog-pg-foreign-server.html
file path=usr/postgres/16/doc/html/catalog-pg-foreign-table.html
file path=usr/postgres/16/doc/html/catalog-pg-index.html
file path=usr/postgres/16/doc/html/catalog-pg-inherits.html
file path=usr/postgres/16/doc/html/catalog-pg-init-privs.html
file path=usr/postgres/16/doc/html/catalog-pg-language.html
file path=usr/postgres/16/doc/html/catalog-pg-largeobject-metadata.html
file path=usr/postgres/16/doc/html/catalog-pg-largeobject.html
file path=usr/postgres/16/doc/html/catalog-pg-namespace.html
file path=usr/postgres/16/doc/html/catalog-pg-opclass.html
file path=usr/postgres/16/doc/html/catalog-pg-operator.html
file path=usr/postgres/16/doc/html/catalog-pg-opfamily.html
file path=usr/postgres/16/doc/html/catalog-pg-parameter-acl.html
file path=usr/postgres/16/doc/html/catalog-pg-partitioned-table.html
file path=usr/postgres/16/doc/html/catalog-pg-policy.html
file path=usr/postgres/16/doc/html/catalog-pg-proc.html
file path=usr/postgres/16/doc/html/catalog-pg-publication-namespace.html
file path=usr/postgres/16/doc/html/catalog-pg-publication-rel.html
file path=usr/postgres/16/doc/html/catalog-pg-publication.html
file path=usr/postgres/16/doc/html/catalog-pg-range.html
file path=usr/postgres/16/doc/html/catalog-pg-replication-origin.html
file path=usr/postgres/16/doc/html/catalog-pg-rewrite.html
file path=usr/postgres/16/doc/html/catalog-pg-seclabel.html
file path=usr/postgres/16/doc/html/catalog-pg-sequence.html
file path=usr/postgres/16/doc/html/catalog-pg-shdepend.html
file path=usr/postgres/16/doc/html/catalog-pg-shdescription.html
file path=usr/postgres/16/doc/html/catalog-pg-shseclabel.html
file path=usr/postgres/16/doc/html/catalog-pg-statistic-ext-data.html
file path=usr/postgres/16/doc/html/catalog-pg-statistic-ext.html
file path=usr/postgres/16/doc/html/catalog-pg-statistic.html
file path=usr/postgres/16/doc/html/catalog-pg-subscription-rel.html
file path=usr/postgres/16/doc/html/catalog-pg-subscription.html
file path=usr/postgres/16/doc/html/catalog-pg-tablespace.html
file path=usr/postgres/16/doc/html/catalog-pg-transform.html
file path=usr/postgres/16/doc/html/catalog-pg-trigger.html
file path=usr/postgres/16/doc/html/catalog-pg-ts-config-map.html
file path=usr/postgres/16/doc/html/catalog-pg-ts-config.html
file path=usr/postgres/16/doc/html/catalog-pg-ts-dict.html
file path=usr/postgres/16/doc/html/catalog-pg-ts-parser.html
file path=usr/postgres/16/doc/html/catalog-pg-ts-template.html
file path=usr/postgres/16/doc/html/catalog-pg-type.html
file path=usr/postgres/16/doc/html/catalog-pg-user-mapping.html
file path=usr/postgres/16/doc/html/catalogs-overview.html
file path=usr/postgres/16/doc/html/catalogs.html
file path=usr/postgres/16/doc/html/charset.html
file path=usr/postgres/16/doc/html/checksums.html
file path=usr/postgres/16/doc/html/citext.html
file path=usr/postgres/16/doc/html/client-authentication-problems.html
file path=usr/postgres/16/doc/html/client-authentication.html
file path=usr/postgres/16/doc/html/client-interfaces.html
file path=usr/postgres/16/doc/html/collation.html
file path=usr/postgres/16/doc/html/color-when.html
file path=usr/postgres/16/doc/html/color-which.html
file path=usr/postgres/16/doc/html/color.html
file path=usr/postgres/16/doc/html/config-setting.html
file path=usr/postgres/16/doc/html/connect-estab.html
file path=usr/postgres/16/doc/html/continuous-archiving.html
file path=usr/postgres/16/doc/html/contrib-dblink-build-sql-delete.html
file path=usr/postgres/16/doc/html/contrib-dblink-build-sql-insert.html
file path=usr/postgres/16/doc/html/contrib-dblink-build-sql-update.html
file path=usr/postgres/16/doc/html/contrib-dblink-cancel-query.html
file path=usr/postgres/16/doc/html/contrib-dblink-close.html
file path=usr/postgres/16/doc/html/contrib-dblink-connect-u.html
file path=usr/postgres/16/doc/html/contrib-dblink-connect.html
file path=usr/postgres/16/doc/html/contrib-dblink-disconnect.html
file path=usr/postgres/16/doc/html/contrib-dblink-error-message.html
file path=usr/postgres/16/doc/html/contrib-dblink-exec.html
file path=usr/postgres/16/doc/html/contrib-dblink-fetch.html
file path=usr/postgres/16/doc/html/contrib-dblink-function.html
file path=usr/postgres/16/doc/html/contrib-dblink-get-connections.html
file path=usr/postgres/16/doc/html/contrib-dblink-get-notify.html
file path=usr/postgres/16/doc/html/contrib-dblink-get-pkey.html
file path=usr/postgres/16/doc/html/contrib-dblink-get-result.html
file path=usr/postgres/16/doc/html/contrib-dblink-is-busy.html
file path=usr/postgres/16/doc/html/contrib-dblink-open.html
file path=usr/postgres/16/doc/html/contrib-dblink-send-query.html
file path=usr/postgres/16/doc/html/contrib-prog-client.html
file path=usr/postgres/16/doc/html/contrib-prog-server.html
file path=usr/postgres/16/doc/html/contrib-prog.html
file path=usr/postgres/16/doc/html/contrib-spi.html
file path=usr/postgres/16/doc/html/contrib.html
file path=usr/postgres/16/doc/html/creating-cluster.html
file path=usr/postgres/16/doc/html/cube.html
file path=usr/postgres/16/doc/html/custom-rmgr.html
file path=usr/postgres/16/doc/html/custom-scan-execution.html
file path=usr/postgres/16/doc/html/custom-scan-path.html
file path=usr/postgres/16/doc/html/custom-scan-plan.html
file path=usr/postgres/16/doc/html/custom-scan.html
file path=usr/postgres/16/doc/html/database-roles.html
file path=usr/postgres/16/doc/html/datatype-binary.html
file path=usr/postgres/16/doc/html/datatype-bit.html
file path=usr/postgres/16/doc/html/datatype-boolean.html
file path=usr/postgres/16/doc/html/datatype-character.html
file path=usr/postgres/16/doc/html/datatype-datetime.html
file path=usr/postgres/16/doc/html/datatype-enum.html
file path=usr/postgres/16/doc/html/datatype-geometric.html
file path=usr/postgres/16/doc/html/datatype-json.html
file path=usr/postgres/16/doc/html/datatype-money.html
file path=usr/postgres/16/doc/html/datatype-net-types.html
file path=usr/postgres/16/doc/html/datatype-numeric.html
file path=usr/postgres/16/doc/html/datatype-oid.html
file path=usr/postgres/16/doc/html/datatype-pg-lsn.html
file path=usr/postgres/16/doc/html/datatype-pseudo.html
file path=usr/postgres/16/doc/html/datatype-textsearch.html
file path=usr/postgres/16/doc/html/datatype-uuid.html
file path=usr/postgres/16/doc/html/datatype-xml.html
file path=usr/postgres/16/doc/html/datatype.html
file path=usr/postgres/16/doc/html/datetime-appendix.html
file path=usr/postgres/16/doc/html/datetime-config-files.html
file path=usr/postgres/16/doc/html/datetime-input-rules.html
file path=usr/postgres/16/doc/html/datetime-invalid-input.html
file path=usr/postgres/16/doc/html/datetime-julian-dates.html
file path=usr/postgres/16/doc/html/datetime-keywords.html
file path=usr/postgres/16/doc/html/datetime-posix-timezone-specs.html
file path=usr/postgres/16/doc/html/datetime-units-history.html
file path=usr/postgres/16/doc/html/dblink.html
file path=usr/postgres/16/doc/html/ddl-alter.html
file path=usr/postgres/16/doc/html/ddl-basics.html
file path=usr/postgres/16/doc/html/ddl-constraints.html
file path=usr/postgres/16/doc/html/ddl-default.html
file path=usr/postgres/16/doc/html/ddl-depend.html
file path=usr/postgres/16/doc/html/ddl-foreign-data.html
file path=usr/postgres/16/doc/html/ddl-generated-columns.html
file path=usr/postgres/16/doc/html/ddl-inherit.html
file path=usr/postgres/16/doc/html/ddl-others.html
file path=usr/postgres/16/doc/html/ddl-partitioning.html
file path=usr/postgres/16/doc/html/ddl-priv.html
file path=usr/postgres/16/doc/html/ddl-rowsecurity.html
file path=usr/postgres/16/doc/html/ddl-schemas.html
file path=usr/postgres/16/doc/html/ddl-system-columns.html
file path=usr/postgres/16/doc/html/ddl.html
file path=usr/postgres/16/doc/html/default-roles.html
file path=usr/postgres/16/doc/html/dict-int.html
file path=usr/postgres/16/doc/html/dict-xsyn.html
file path=usr/postgres/16/doc/html/different-replication-solutions.html
file path=usr/postgres/16/doc/html/disk-full.html
file path=usr/postgres/16/doc/html/disk-usage.html
file path=usr/postgres/16/doc/html/diskusage.html
file path=usr/postgres/16/doc/html/dml-delete.html
file path=usr/postgres/16/doc/html/dml-insert.html
file path=usr/postgres/16/doc/html/dml-returning.html
file path=usr/postgres/16/doc/html/dml-update.html
file path=usr/postgres/16/doc/html/dml.html
file path=usr/postgres/16/doc/html/docguide-authoring.html
file path=usr/postgres/16/doc/html/docguide-build-meson.html
file path=usr/postgres/16/doc/html/docguide-build.html
file path=usr/postgres/16/doc/html/docguide-docbook.html
file path=usr/postgres/16/doc/html/docguide-style.html
file path=usr/postgres/16/doc/html/docguide-toolsets.html
file path=usr/postgres/16/doc/html/docguide.html
file path=usr/postgres/16/doc/html/domains.html
file path=usr/postgres/16/doc/html/dynamic-trace.html
file path=usr/postgres/16/doc/html/earthdistance.html
file path=usr/postgres/16/doc/html/ecpg-commands.html
file path=usr/postgres/16/doc/html/ecpg-concept.html
file path=usr/postgres/16/doc/html/ecpg-connect.html
file path=usr/postgres/16/doc/html/ecpg-cpp.html
file path=usr/postgres/16/doc/html/ecpg-descriptors.html
file path=usr/postgres/16/doc/html/ecpg-develop.html
file path=usr/postgres/16/doc/html/ecpg-dynamic.html
file path=usr/postgres/16/doc/html/ecpg-errors.html
file path=usr/postgres/16/doc/html/ecpg-informix-compat.html
file path=usr/postgres/16/doc/html/ecpg-library.html
file path=usr/postgres/16/doc/html/ecpg-lo.html
file path=usr/postgres/16/doc/html/ecpg-oracle-compat.html
file path=usr/postgres/16/doc/html/ecpg-pgtypes.html
file path=usr/postgres/16/doc/html/ecpg-preproc.html
file path=usr/postgres/16/doc/html/ecpg-process.html
file path=usr/postgres/16/doc/html/ecpg-sql-allocate-descriptor.html
file path=usr/postgres/16/doc/html/ecpg-sql-commands.html
file path=usr/postgres/16/doc/html/ecpg-sql-connect.html
file path=usr/postgres/16/doc/html/ecpg-sql-deallocate-descriptor.html
file path=usr/postgres/16/doc/html/ecpg-sql-declare-statement.html
file path=usr/postgres/16/doc/html/ecpg-sql-declare.html
file path=usr/postgres/16/doc/html/ecpg-sql-describe.html
file path=usr/postgres/16/doc/html/ecpg-sql-disconnect.html
file path=usr/postgres/16/doc/html/ecpg-sql-execute-immediate.html
file path=usr/postgres/16/doc/html/ecpg-sql-get-descriptor.html
file path=usr/postgres/16/doc/html/ecpg-sql-open.html
file path=usr/postgres/16/doc/html/ecpg-sql-prepare.html
file path=usr/postgres/16/doc/html/ecpg-sql-set-autocommit.html
file path=usr/postgres/16/doc/html/ecpg-sql-set-connection.html
file path=usr/postgres/16/doc/html/ecpg-sql-set-descriptor.html
file path=usr/postgres/16/doc/html/ecpg-sql-type.html
file path=usr/postgres/16/doc/html/ecpg-sql-var.html
file path=usr/postgres/16/doc/html/ecpg-sql-whenever.html
file path=usr/postgres/16/doc/html/ecpg-variables.html
file path=usr/postgres/16/doc/html/ecpg.html
file path=usr/postgres/16/doc/html/encryption-options.html
file path=usr/postgres/16/doc/html/errcodes-appendix.html
file path=usr/postgres/16/doc/html/error-message-reporting.html
file path=usr/postgres/16/doc/html/error-style-guide.html
file path=usr/postgres/16/doc/html/event-log-registration.html
file path=usr/postgres/16/doc/html/event-trigger-definition.html
file path=usr/postgres/16/doc/html/event-trigger-example.html
file path=usr/postgres/16/doc/html/event-trigger-interface.html
file path=usr/postgres/16/doc/html/event-trigger-matrix.html
file path=usr/postgres/16/doc/html/event-trigger-table-rewrite-example.html
file path=usr/postgres/16/doc/html/event-triggers.html
file path=usr/postgres/16/doc/html/executor.html
file path=usr/postgres/16/doc/html/explicit-joins.html
file path=usr/postgres/16/doc/html/explicit-locking.html
file path=usr/postgres/16/doc/html/extend-extensions.html
file path=usr/postgres/16/doc/html/extend-how.html
file path=usr/postgres/16/doc/html/extend-pgxs.html
file path=usr/postgres/16/doc/html/extend-type-system.html
file path=usr/postgres/16/doc/html/extend.html
file path=usr/postgres/16/doc/html/external-admin-tools.html
file path=usr/postgres/16/doc/html/external-extensions.html
file path=usr/postgres/16/doc/html/external-interfaces.html
file path=usr/postgres/16/doc/html/external-pl.html
file path=usr/postgres/16/doc/html/external-projects.html
file path=usr/postgres/16/doc/html/fdw-callbacks.html
file path=usr/postgres/16/doc/html/fdw-functions.html
file path=usr/postgres/16/doc/html/fdw-helpers.html
file path=usr/postgres/16/doc/html/fdw-planning.html
file path=usr/postgres/16/doc/html/fdw-row-locking.html
file path=usr/postgres/16/doc/html/fdwhandler.html
file path=usr/postgres/16/doc/html/features-sql-standard.html
file path=usr/postgres/16/doc/html/features.html
file path=usr/postgres/16/doc/html/file-fdw.html
file path=usr/postgres/16/doc/html/functions-admin.html
file path=usr/postgres/16/doc/html/functions-aggregate.html
file path=usr/postgres/16/doc/html/functions-array.html
file path=usr/postgres/16/doc/html/functions-binarystring.html
file path=usr/postgres/16/doc/html/functions-bitstring.html
file path=usr/postgres/16/doc/html/functions-comparison.html
file path=usr/postgres/16/doc/html/functions-comparisons.html
file path=usr/postgres/16/doc/html/functions-conditional.html
file path=usr/postgres/16/doc/html/functions-datetime.html
file path=usr/postgres/16/doc/html/functions-enum.html
file path=usr/postgres/16/doc/html/functions-event-triggers.html
file path=usr/postgres/16/doc/html/functions-formatting.html
file path=usr/postgres/16/doc/html/functions-geometry.html
file path=usr/postgres/16/doc/html/functions-info.html
file path=usr/postgres/16/doc/html/functions-json.html
file path=usr/postgres/16/doc/html/functions-logical.html
file path=usr/postgres/16/doc/html/functions-matching.html
file path=usr/postgres/16/doc/html/functions-math.html
file path=usr/postgres/16/doc/html/functions-net.html
file path=usr/postgres/16/doc/html/functions-range.html
file path=usr/postgres/16/doc/html/functions-sequence.html
file path=usr/postgres/16/doc/html/functions-srf.html
file path=usr/postgres/16/doc/html/functions-statistics.html
file path=usr/postgres/16/doc/html/functions-string.html
file path=usr/postgres/16/doc/html/functions-subquery.html
file path=usr/postgres/16/doc/html/functions-textsearch.html
file path=usr/postgres/16/doc/html/functions-trigger.html
file path=usr/postgres/16/doc/html/functions-uuid.html
file path=usr/postgres/16/doc/html/functions-window.html
file path=usr/postgres/16/doc/html/functions-xml.html
file path=usr/postgres/16/doc/html/functions.html
file path=usr/postgres/16/doc/html/fuzzystrmatch.html
file path=usr/postgres/16/doc/html/generic-wal.html
file path=usr/postgres/16/doc/html/genetic-algorithm.svg
file path=usr/postgres/16/doc/html/geqo-biblio.html
file path=usr/postgres/16/doc/html/geqo-intro.html
file path=usr/postgres/16/doc/html/geqo-intro2.html
file path=usr/postgres/16/doc/html/geqo-pg-intro.html
file path=usr/postgres/16/doc/html/geqo.html
file path=usr/postgres/16/doc/html/gin-builtin-opclasses.html
file path=usr/postgres/16/doc/html/gin-examples.html
file path=usr/postgres/16/doc/html/gin-extensibility.html
file path=usr/postgres/16/doc/html/gin-implementation.html
file path=usr/postgres/16/doc/html/gin-intro.html
file path=usr/postgres/16/doc/html/gin-limit.html
file path=usr/postgres/16/doc/html/gin-tips.html
file path=usr/postgres/16/doc/html/gin.html
file path=usr/postgres/16/doc/html/gin.svg
file path=usr/postgres/16/doc/html/gist-builtin-opclasses.html
file path=usr/postgres/16/doc/html/gist-examples.html
file path=usr/postgres/16/doc/html/gist-extensibility.html
file path=usr/postgres/16/doc/html/gist-implementation.html
file path=usr/postgres/16/doc/html/gist-intro.html
file path=usr/postgres/16/doc/html/gist.html
file path=usr/postgres/16/doc/html/git.html
file path=usr/postgres/16/doc/html/glossary.html
file path=usr/postgres/16/doc/html/gssapi-auth.html
file path=usr/postgres/16/doc/html/gssapi-enc.html
file path=usr/postgres/16/doc/html/hash-implementation.html
file path=usr/postgres/16/doc/html/hash-index.html
file path=usr/postgres/16/doc/html/hash-intro.html
file path=usr/postgres/16/doc/html/high-availability.html
file path=usr/postgres/16/doc/html/history.html
file path=usr/postgres/16/doc/html/hot-standby.html
file path=usr/postgres/16/doc/html/how-parallel-query-works.html
file path=usr/postgres/16/doc/html/hstore.html
file path=usr/postgres/16/doc/html/index-api.html
file path=usr/postgres/16/doc/html/index-cost-estimation.html
file path=usr/postgres/16/doc/html/index-functions.html
file path=usr/postgres/16/doc/html/index-locking.html
file path=usr/postgres/16/doc/html/index-scanning.html
file path=usr/postgres/16/doc/html/index-unique-checks.html
file path=usr/postgres/16/doc/html/index.html
file path=usr/postgres/16/doc/html/indexam.html
file path=usr/postgres/16/doc/html/indexes-bitmap-scans.html
file path=usr/postgres/16/doc/html/indexes-collations.html
file path=usr/postgres/16/doc/html/indexes-examine.html
file path=usr/postgres/16/doc/html/indexes-expressional.html
file path=usr/postgres/16/doc/html/indexes-index-only-scans.html
file path=usr/postgres/16/doc/html/indexes-intro.html
file path=usr/postgres/16/doc/html/indexes-multicolumn.html
file path=usr/postgres/16/doc/html/indexes-opclass.html
file path=usr/postgres/16/doc/html/indexes-ordering.html
file path=usr/postgres/16/doc/html/indexes-partial.html
file path=usr/postgres/16/doc/html/indexes-types.html
file path=usr/postgres/16/doc/html/indexes-unique.html
file path=usr/postgres/16/doc/html/indexes.html
file path=usr/postgres/16/doc/html/information-schema.html
file path=usr/postgres/16/doc/html/infoschema-administrable-role-authorizations.html
file path=usr/postgres/16/doc/html/infoschema-applicable-roles.html
file path=usr/postgres/16/doc/html/infoschema-attributes.html
file path=usr/postgres/16/doc/html/infoschema-character-sets.html
file path=usr/postgres/16/doc/html/infoschema-check-constraint-routine-usage.html
file path=usr/postgres/16/doc/html/infoschema-check-constraints.html
file path=usr/postgres/16/doc/html/infoschema-collation-character-set-applicab.html
file path=usr/postgres/16/doc/html/infoschema-collations.html
file path=usr/postgres/16/doc/html/infoschema-column-column-usage.html
file path=usr/postgres/16/doc/html/infoschema-column-domain-usage.html
file path=usr/postgres/16/doc/html/infoschema-column-options.html
file path=usr/postgres/16/doc/html/infoschema-column-privileges.html
file path=usr/postgres/16/doc/html/infoschema-column-udt-usage.html
file path=usr/postgres/16/doc/html/infoschema-columns.html
file path=usr/postgres/16/doc/html/infoschema-constraint-column-usage.html
file path=usr/postgres/16/doc/html/infoschema-constraint-table-usage.html
file path=usr/postgres/16/doc/html/infoschema-data-type-privileges.html
file path=usr/postgres/16/doc/html/infoschema-datatypes.html
file path=usr/postgres/16/doc/html/infoschema-domain-constraints.html
file path=usr/postgres/16/doc/html/infoschema-domain-udt-usage.html
file path=usr/postgres/16/doc/html/infoschema-domains.html
file path=usr/postgres/16/doc/html/infoschema-element-types.html
file path=usr/postgres/16/doc/html/infoschema-enabled-roles.html
file path=usr/postgres/16/doc/html/infoschema-foreign-data-wrapper-options.html
file path=usr/postgres/16/doc/html/infoschema-foreign-data-wrappers.html
file path=usr/postgres/16/doc/html/infoschema-foreign-server-options.html
file path=usr/postgres/16/doc/html/infoschema-foreign-servers.html
file path=usr/postgres/16/doc/html/infoschema-foreign-table-options.html
file path=usr/postgres/16/doc/html/infoschema-foreign-tables.html
file path=usr/postgres/16/doc/html/infoschema-information-schema-catalog-name.html
file path=usr/postgres/16/doc/html/infoschema-key-column-usage.html
file path=usr/postgres/16/doc/html/infoschema-parameters.html
file path=usr/postgres/16/doc/html/infoschema-referential-constraints.html
file path=usr/postgres/16/doc/html/infoschema-role-column-grants.html
file path=usr/postgres/16/doc/html/infoschema-role-routine-grants.html
file path=usr/postgres/16/doc/html/infoschema-role-table-grants.html
file path=usr/postgres/16/doc/html/infoschema-role-udt-grants.html
file path=usr/postgres/16/doc/html/infoschema-role-usage-grants.html
file path=usr/postgres/16/doc/html/infoschema-routine-column-usage.html
file path=usr/postgres/16/doc/html/infoschema-routine-privileges.html
file path=usr/postgres/16/doc/html/infoschema-routine-routine-usage.html
file path=usr/postgres/16/doc/html/infoschema-routine-sequence-usage.html
file path=usr/postgres/16/doc/html/infoschema-routine-table-usage.html
file path=usr/postgres/16/doc/html/infoschema-routines.html
file path=usr/postgres/16/doc/html/infoschema-schema.html
file path=usr/postgres/16/doc/html/infoschema-schemata.html
file path=usr/postgres/16/doc/html/infoschema-sequences.html
file path=usr/postgres/16/doc/html/infoschema-sql-features.html
file path=usr/postgres/16/doc/html/infoschema-sql-implementation-info.html
file path=usr/postgres/16/doc/html/infoschema-sql-parts.html
file path=usr/postgres/16/doc/html/infoschema-sql-sizing.html
file path=usr/postgres/16/doc/html/infoschema-table-constraints.html
file path=usr/postgres/16/doc/html/infoschema-table-privileges.html
file path=usr/postgres/16/doc/html/infoschema-tables.html
file path=usr/postgres/16/doc/html/infoschema-transforms.html
file path=usr/postgres/16/doc/html/infoschema-triggered-update-columns.html
file path=usr/postgres/16/doc/html/infoschema-triggers.html
file path=usr/postgres/16/doc/html/infoschema-udt-privileges.html
file path=usr/postgres/16/doc/html/infoschema-usage-privileges.html
file path=usr/postgres/16/doc/html/infoschema-user-defined-types.html
file path=usr/postgres/16/doc/html/infoschema-user-mapping-options.html
file path=usr/postgres/16/doc/html/infoschema-user-mappings.html
file path=usr/postgres/16/doc/html/infoschema-view-column-usage.html
file path=usr/postgres/16/doc/html/infoschema-view-routine-usage.html
file path=usr/postgres/16/doc/html/infoschema-view-table-usage.html
file path=usr/postgres/16/doc/html/infoschema-views.html
file path=usr/postgres/16/doc/html/install-binaries.html
file path=usr/postgres/16/doc/html/install-getsource.html
file path=usr/postgres/16/doc/html/install-make.html
file path=usr/postgres/16/doc/html/install-meson.html
file path=usr/postgres/16/doc/html/install-post.html
file path=usr/postgres/16/doc/html/install-requirements.html
file path=usr/postgres/16/doc/html/install-windows-full.html
file path=usr/postgres/16/doc/html/install-windows.html
file path=usr/postgres/16/doc/html/installation-platform-notes.html
file path=usr/postgres/16/doc/html/installation.html
file path=usr/postgres/16/doc/html/intagg.html
file path=usr/postgres/16/doc/html/intarray.html
file path=usr/postgres/16/doc/html/internals.html
file path=usr/postgres/16/doc/html/intro-whatis.html
file path=usr/postgres/16/doc/html/isn.html
file path=usr/postgres/16/doc/html/jit-configuration.html
file path=usr/postgres/16/doc/html/jit-decision.html
file path=usr/postgres/16/doc/html/jit-extensibility.html
file path=usr/postgres/16/doc/html/jit-reason.html
file path=usr/postgres/16/doc/html/jit.html
file path=usr/postgres/16/doc/html/kernel-resources.html
file path=usr/postgres/16/doc/html/largeobjects.html
file path=usr/postgres/16/doc/html/legalnotice.html
file path=usr/postgres/16/doc/html/libpq-async.html
file path=usr/postgres/16/doc/html/libpq-build.html
file path=usr/postgres/16/doc/html/libpq-cancel.html
file path=usr/postgres/16/doc/html/libpq-connect.html
file path=usr/postgres/16/doc/html/libpq-control.html
file path=usr/postgres/16/doc/html/libpq-copy.html
file path=usr/postgres/16/doc/html/libpq-envars.html
file path=usr/postgres/16/doc/html/libpq-events.html
file path=usr/postgres/16/doc/html/libpq-example.html
file path=usr/postgres/16/doc/html/libpq-exec.html
file path=usr/postgres/16/doc/html/libpq-fastpath.html
file path=usr/postgres/16/doc/html/libpq-ldap.html
file path=usr/postgres/16/doc/html/libpq-misc.html
file path=usr/postgres/16/doc/html/libpq-notice-processing.html
file path=usr/postgres/16/doc/html/libpq-notify.html
file path=usr/postgres/16/doc/html/libpq-pgpass.html
file path=usr/postgres/16/doc/html/libpq-pgservice.html
file path=usr/postgres/16/doc/html/libpq-pipeline-mode.html
file path=usr/postgres/16/doc/html/libpq-single-row-mode.html
file path=usr/postgres/16/doc/html/libpq-ssl.html
file path=usr/postgres/16/doc/html/libpq-status.html
file path=usr/postgres/16/doc/html/libpq-threading.html
file path=usr/postgres/16/doc/html/libpq.html
file path=usr/postgres/16/doc/html/limits.html
file path=usr/postgres/16/doc/html/lo-examplesect.html
file path=usr/postgres/16/doc/html/lo-funcs.html
file path=usr/postgres/16/doc/html/lo-implementation.html
file path=usr/postgres/16/doc/html/lo-interfaces.html
file path=usr/postgres/16/doc/html/lo-intro.html
file path=usr/postgres/16/doc/html/lo.html
file path=usr/postgres/16/doc/html/locale.html
file path=usr/postgres/16/doc/html/locking-indexes.html
file path=usr/postgres/16/doc/html/logfile-maintenance.html
file path=usr/postgres/16/doc/html/logical-replication-architecture.html
file path=usr/postgres/16/doc/html/logical-replication-col-lists.html
file path=usr/postgres/16/doc/html/logical-replication-config.html
file path=usr/postgres/16/doc/html/logical-replication-conflicts.html
file path=usr/postgres/16/doc/html/logical-replication-monitoring.html
file path=usr/postgres/16/doc/html/logical-replication-publication.html
file path=usr/postgres/16/doc/html/logical-replication-quick-setup.html
file path=usr/postgres/16/doc/html/logical-replication-restrictions.html
file path=usr/postgres/16/doc/html/logical-replication-row-filter.html
file path=usr/postgres/16/doc/html/logical-replication-security.html
file path=usr/postgres/16/doc/html/logical-replication-subscription.html
file path=usr/postgres/16/doc/html/logical-replication.html
file path=usr/postgres/16/doc/html/logicaldecoding-catalogs.html
file path=usr/postgres/16/doc/html/logicaldecoding-example.html
file path=usr/postgres/16/doc/html/logicaldecoding-explanation.html
file path=usr/postgres/16/doc/html/logicaldecoding-output-plugin.html
file path=usr/postgres/16/doc/html/logicaldecoding-sql.html
file path=usr/postgres/16/doc/html/logicaldecoding-streaming.html
file path=usr/postgres/16/doc/html/logicaldecoding-synchronous.html
file path=usr/postgres/16/doc/html/logicaldecoding-two-phase-commits.html
file path=usr/postgres/16/doc/html/logicaldecoding-walsender.html
file path=usr/postgres/16/doc/html/logicaldecoding-writer.html
file path=usr/postgres/16/doc/html/logicaldecoding.html
file path=usr/postgres/16/doc/html/ltree.html
file path=usr/postgres/16/doc/html/maintenance.html
file path=usr/postgres/16/doc/html/manage-ag-config.html
file path=usr/postgres/16/doc/html/manage-ag-createdb.html
file path=usr/postgres/16/doc/html/manage-ag-dropdb.html
file path=usr/postgres/16/doc/html/manage-ag-overview.html
file path=usr/postgres/16/doc/html/manage-ag-tablespaces.html
file path=usr/postgres/16/doc/html/manage-ag-templatedbs.html
file path=usr/postgres/16/doc/html/managing-databases.html
file path=usr/postgres/16/doc/html/monitoring-locks.html
file path=usr/postgres/16/doc/html/monitoring-ps.html
file path=usr/postgres/16/doc/html/monitoring-stats.html
file path=usr/postgres/16/doc/html/monitoring.html
file path=usr/postgres/16/doc/html/multibyte.html
file path=usr/postgres/16/doc/html/multivariate-statistics-examples.html
file path=usr/postgres/16/doc/html/mvcc-caveats.html
file path=usr/postgres/16/doc/html/mvcc-intro.html
file path=usr/postgres/16/doc/html/mvcc-serialization-failure-handling.html
file path=usr/postgres/16/doc/html/mvcc.html
file path=usr/postgres/16/doc/html/nls-programmer.html
file path=usr/postgres/16/doc/html/nls-translator.html
file path=usr/postgres/16/doc/html/nls.html
file path=usr/postgres/16/doc/html/non-durability.html
file path=usr/postgres/16/doc/html/notation.html
file path=usr/postgres/16/doc/html/oid2name.html
file path=usr/postgres/16/doc/html/oldsnapshot.html
file path=usr/postgres/16/doc/html/overview.html
file path=usr/postgres/16/doc/html/pageinspect.html
file path=usr/postgres/16/doc/html/pagelayout.svg
file path=usr/postgres/16/doc/html/parallel-plans.html
file path=usr/postgres/16/doc/html/parallel-query.html
file path=usr/postgres/16/doc/html/parallel-safety.html
file path=usr/postgres/16/doc/html/parser-stage.html
file path=usr/postgres/16/doc/html/passwordcheck.html
file path=usr/postgres/16/doc/html/performance-tips.html
file path=usr/postgres/16/doc/html/perm-functions.html
file path=usr/postgres/16/doc/html/pgarchivecleanup.html
file path=usr/postgres/16/doc/html/pgbench.html
file path=usr/postgres/16/doc/html/pgbuffercache.html
file path=usr/postgres/16/doc/html/pgcrypto.html
file path=usr/postgres/16/doc/html/pgfreespacemap.html
file path=usr/postgres/16/doc/html/pgprewarm.html
file path=usr/postgres/16/doc/html/pgrowlocks.html
file path=usr/postgres/16/doc/html/pgstatstatements.html
file path=usr/postgres/16/doc/html/pgstattuple.html
file path=usr/postgres/16/doc/html/pgsurgery.html
file path=usr/postgres/16/doc/html/pgtestfsync.html
file path=usr/postgres/16/doc/html/pgtesttiming.html
file path=usr/postgres/16/doc/html/pgtrgm.html
file path=usr/postgres/16/doc/html/pgupgrade.html
file path=usr/postgres/16/doc/html/pgvisibility.html
file path=usr/postgres/16/doc/html/pgwaldump.html
file path=usr/postgres/16/doc/html/pgwalinspect.html
file path=usr/postgres/16/doc/html/pgxlogdump.html
file path=usr/postgres/16/doc/html/planner-optimizer.html
file path=usr/postgres/16/doc/html/planner-stats-details.html
file path=usr/postgres/16/doc/html/planner-stats-security.html
file path=usr/postgres/16/doc/html/planner-stats.html
file path=usr/postgres/16/doc/html/plhandler.html
file path=usr/postgres/16/doc/html/plperl-builtins.html
file path=usr/postgres/16/doc/html/plperl-data.html
file path=usr/postgres/16/doc/html/plperl-event-triggers.html
file path=usr/postgres/16/doc/html/plperl-funcs.html
file path=usr/postgres/16/doc/html/plperl-global.html
file path=usr/postgres/16/doc/html/plperl-triggers.html
file path=usr/postgres/16/doc/html/plperl-trusted.html
file path=usr/postgres/16/doc/html/plperl-under-the-hood.html
file path=usr/postgres/16/doc/html/plperl.html
file path=usr/postgres/16/doc/html/plpgsql-control-structures.html
file path=usr/postgres/16/doc/html/plpgsql-cursors.html
file path=usr/postgres/16/doc/html/plpgsql-declarations.html
file path=usr/postgres/16/doc/html/plpgsql-development-tips.html
file path=usr/postgres/16/doc/html/plpgsql-errors-and-messages.html
file path=usr/postgres/16/doc/html/plpgsql-expressions.html
file path=usr/postgres/16/doc/html/plpgsql-implementation.html
file path=usr/postgres/16/doc/html/plpgsql-overview.html
file path=usr/postgres/16/doc/html/plpgsql-porting.html
file path=usr/postgres/16/doc/html/plpgsql-statements.html
file path=usr/postgres/16/doc/html/plpgsql-structure.html
file path=usr/postgres/16/doc/html/plpgsql-transactions.html
file path=usr/postgres/16/doc/html/plpgsql-trigger.html
file path=usr/postgres/16/doc/html/plpgsql.html
file path=usr/postgres/16/doc/html/plpython-data.html
file path=usr/postgres/16/doc/html/plpython-database.html
file path=usr/postgres/16/doc/html/plpython-do.html
file path=usr/postgres/16/doc/html/plpython-envar.html
file path=usr/postgres/16/doc/html/plpython-funcs.html
file path=usr/postgres/16/doc/html/plpython-python23.html
file path=usr/postgres/16/doc/html/plpython-sharing.html
file path=usr/postgres/16/doc/html/plpython-subtransaction.html
file path=usr/postgres/16/doc/html/plpython-transactions.html
file path=usr/postgres/16/doc/html/plpython-trigger.html
file path=usr/postgres/16/doc/html/plpython-util.html
file path=usr/postgres/16/doc/html/plpython.html
file path=usr/postgres/16/doc/html/pltcl-config.html
file path=usr/postgres/16/doc/html/pltcl-data.html
file path=usr/postgres/16/doc/html/pltcl-dbaccess.html
file path=usr/postgres/16/doc/html/pltcl-error-handling.html
file path=usr/postgres/16/doc/html/pltcl-event-trigger.html
file path=usr/postgres/16/doc/html/pltcl-functions.html
file path=usr/postgres/16/doc/html/pltcl-global.html
file path=usr/postgres/16/doc/html/pltcl-overview.html
file path=usr/postgres/16/doc/html/pltcl-procnames.html
file path=usr/postgres/16/doc/html/pltcl-subtransactions.html
file path=usr/postgres/16/doc/html/pltcl-transactions.html
file path=usr/postgres/16/doc/html/pltcl-trigger.html
file path=usr/postgres/16/doc/html/pltcl.html
file path=usr/postgres/16/doc/html/populate.html
file path=usr/postgres/16/doc/html/postgres-fdw.html
file path=usr/postgres/16/doc/html/postgres-user.html
file path=usr/postgres/16/doc/html/predefined-roles.html
file path=usr/postgres/16/doc/html/preface.html
file path=usr/postgres/16/doc/html/preventing-server-spoofing.html
file path=usr/postgres/16/doc/html/progress-reporting.html
file path=usr/postgres/16/doc/html/protocol-changes.html
file path=usr/postgres/16/doc/html/protocol-error-fields.html
file path=usr/postgres/16/doc/html/protocol-flow.html
file path=usr/postgres/16/doc/html/protocol-logical-replication.html
file path=usr/postgres/16/doc/html/protocol-logicalrep-message-formats.html
file path=usr/postgres/16/doc/html/protocol-message-formats.html
file path=usr/postgres/16/doc/html/protocol-message-types.html
file path=usr/postgres/16/doc/html/protocol-overview.html
file path=usr/postgres/16/doc/html/protocol-replication.html
file path=usr/postgres/16/doc/html/protocol.html
file path=usr/postgres/16/doc/html/queries-limit.html
file path=usr/postgres/16/doc/html/queries-order.html
file path=usr/postgres/16/doc/html/queries-overview.html
file path=usr/postgres/16/doc/html/queries-select-lists.html
file path=usr/postgres/16/doc/html/queries-table-expressions.html
file path=usr/postgres/16/doc/html/queries-union.html
file path=usr/postgres/16/doc/html/queries-values.html
file path=usr/postgres/16/doc/html/queries-with.html
file path=usr/postgres/16/doc/html/queries.html
file path=usr/postgres/16/doc/html/query-path.html
file path=usr/postgres/16/doc/html/querytree.html
file path=usr/postgres/16/doc/html/rangetypes.html
file path=usr/postgres/16/doc/html/recovery-config.html
file path=usr/postgres/16/doc/html/reference-client.html
file path=usr/postgres/16/doc/html/reference-server.html
file path=usr/postgres/16/doc/html/reference.html
file path=usr/postgres/16/doc/html/regress-coverage.html
file path=usr/postgres/16/doc/html/regress-evaluation.html
file path=usr/postgres/16/doc/html/regress-run.html
file path=usr/postgres/16/doc/html/regress-tap.html
file path=usr/postgres/16/doc/html/regress-variant.html
file path=usr/postgres/16/doc/html/regress.html
file path=usr/postgres/16/doc/html/release-16-1.html
file path=usr/postgres/16/doc/html/release-16-2.html
file path=usr/postgres/16/doc/html/release-16.html
file path=usr/postgres/16/doc/html/release-prior.html
file path=usr/postgres/16/doc/html/release.html
file path=usr/postgres/16/doc/html/replication-origins.html
file path=usr/postgres/16/doc/html/resources.html
file path=usr/postgres/16/doc/html/role-attributes.html
file path=usr/postgres/16/doc/html/role-membership.html
file path=usr/postgres/16/doc/html/role-removal.html
file path=usr/postgres/16/doc/html/routine-reindex.html
file path=usr/postgres/16/doc/html/routine-vacuuming.html
file path=usr/postgres/16/doc/html/row-estimation-examples.html
file path=usr/postgres/16/doc/html/rowtypes.html
file path=usr/postgres/16/doc/html/rule-system.html
file path=usr/postgres/16/doc/html/rules-materializedviews.html
file path=usr/postgres/16/doc/html/rules-privileges.html
file path=usr/postgres/16/doc/html/rules-status.html
file path=usr/postgres/16/doc/html/rules-triggers.html
file path=usr/postgres/16/doc/html/rules-update.html
file path=usr/postgres/16/doc/html/rules-views.html
file path=usr/postgres/16/doc/html/rules.html
file path=usr/postgres/16/doc/html/runtime-config-autovacuum.html
file path=usr/postgres/16/doc/html/runtime-config-client.html
file path=usr/postgres/16/doc/html/runtime-config-compatible.html
file path=usr/postgres/16/doc/html/runtime-config-connection.html
file path=usr/postgres/16/doc/html/runtime-config-custom.html
file path=usr/postgres/16/doc/html/runtime-config-developer.html
file path=usr/postgres/16/doc/html/runtime-config-error-handling.html
file path=usr/postgres/16/doc/html/runtime-config-file-locations.html
file path=usr/postgres/16/doc/html/runtime-config-locks.html
file path=usr/postgres/16/doc/html/runtime-config-logging.html
file path=usr/postgres/16/doc/html/runtime-config-preset.html
file path=usr/postgres/16/doc/html/runtime-config-query.html
file path=usr/postgres/16/doc/html/runtime-config-replication.html
file path=usr/postgres/16/doc/html/runtime-config-resource.html
file path=usr/postgres/16/doc/html/runtime-config-short.html
file path=usr/postgres/16/doc/html/runtime-config-statistics.html
file path=usr/postgres/16/doc/html/runtime-config-wal.html
file path=usr/postgres/16/doc/html/runtime-config.html
file path=usr/postgres/16/doc/html/runtime.html
file path=usr/postgres/16/doc/html/sasl-authentication.html
file path=usr/postgres/16/doc/html/seg.html
file path=usr/postgres/16/doc/html/sepgsql.html
file path=usr/postgres/16/doc/html/server-programming.html
file path=usr/postgres/16/doc/html/server-shutdown.html
file path=usr/postgres/16/doc/html/server-start.html
file path=usr/postgres/16/doc/html/source-conventions.html
file path=usr/postgres/16/doc/html/source-format.html
file path=usr/postgres/16/doc/html/source.html
file path=usr/postgres/16/doc/html/sourcerepo.html
file path=usr/postgres/16/doc/html/spgist-builtin-opclasses.html
file path=usr/postgres/16/doc/html/spgist-examples.html
file path=usr/postgres/16/doc/html/spgist-extensibility.html
file path=usr/postgres/16/doc/html/spgist-implementation.html
file path=usr/postgres/16/doc/html/spgist-intro.html
file path=usr/postgres/16/doc/html/spgist.html
file path=usr/postgres/16/doc/html/spi-examples.html
file path=usr/postgres/16/doc/html/spi-interface-support.html
file path=usr/postgres/16/doc/html/spi-interface.html
file path=usr/postgres/16/doc/html/spi-memory.html
file path=usr/postgres/16/doc/html/spi-realloc.html
file path=usr/postgres/16/doc/html/spi-spi-commit.html
file path=usr/postgres/16/doc/html/spi-spi-connect.html
file path=usr/postgres/16/doc/html/spi-spi-copytuple.html
file path=usr/postgres/16/doc/html/spi-spi-cursor-close.html
file path=usr/postgres/16/doc/html/spi-spi-cursor-fetch.html
file path=usr/postgres/16/doc/html/spi-spi-cursor-find.html
file path=usr/postgres/16/doc/html/spi-spi-cursor-move.html
file path=usr/postgres/16/doc/html/spi-spi-cursor-open-with-args.html
file path=usr/postgres/16/doc/html/spi-spi-cursor-open-with-paramlist.html
file path=usr/postgres/16/doc/html/spi-spi-cursor-open.html
file path=usr/postgres/16/doc/html/spi-spi-cursor-parse-open.html
file path=usr/postgres/16/doc/html/spi-spi-exec.html
file path=usr/postgres/16/doc/html/spi-spi-execp.html
file path=usr/postgres/16/doc/html/spi-spi-execute-extended.html
file path=usr/postgres/16/doc/html/spi-spi-execute-plan-extended.html
file path=usr/postgres/16/doc/html/spi-spi-execute-plan-with-paramlist.html
file path=usr/postgres/16/doc/html/spi-spi-execute-plan.html
file path=usr/postgres/16/doc/html/spi-spi-execute-with-args.html
file path=usr/postgres/16/doc/html/spi-spi-execute.html
file path=usr/postgres/16/doc/html/spi-spi-finish.html
file path=usr/postgres/16/doc/html/spi-spi-fname.html
file path=usr/postgres/16/doc/html/spi-spi-fnumber.html
file path=usr/postgres/16/doc/html/spi-spi-freeplan.html
file path=usr/postgres/16/doc/html/spi-spi-freetuple.html
file path=usr/postgres/16/doc/html/spi-spi-freetupletable.html
file path=usr/postgres/16/doc/html/spi-spi-getargcount.html
file path=usr/postgres/16/doc/html/spi-spi-getargtypeid.html
file path=usr/postgres/16/doc/html/spi-spi-getbinval.html
file path=usr/postgres/16/doc/html/spi-spi-getnspname.html
file path=usr/postgres/16/doc/html/spi-spi-getrelname.html
file path=usr/postgres/16/doc/html/spi-spi-gettype.html
file path=usr/postgres/16/doc/html/spi-spi-gettypeid.html
file path=usr/postgres/16/doc/html/spi-spi-getvalue.html
file path=usr/postgres/16/doc/html/spi-spi-is-cursor-plan.html
file path=usr/postgres/16/doc/html/spi-spi-keepplan.html
file path=usr/postgres/16/doc/html/spi-spi-modifytuple.html
file path=usr/postgres/16/doc/html/spi-spi-palloc.html
file path=usr/postgres/16/doc/html/spi-spi-pfree.html
file path=usr/postgres/16/doc/html/spi-spi-prepare-cursor.html
file path=usr/postgres/16/doc/html/spi-spi-prepare-extended.html
file path=usr/postgres/16/doc/html/spi-spi-prepare-params.html
file path=usr/postgres/16/doc/html/spi-spi-prepare.html
file path=usr/postgres/16/doc/html/spi-spi-register-relation.html
file path=usr/postgres/16/doc/html/spi-spi-register-trigger-data.html
file path=usr/postgres/16/doc/html/spi-spi-result-code-string.html
file path=usr/postgres/16/doc/html/spi-spi-returntuple.html
file path=usr/postgres/16/doc/html/spi-spi-rollback.html
file path=usr/postgres/16/doc/html/spi-spi-saveplan.html
file path=usr/postgres/16/doc/html/spi-spi-scroll-cursor-fetch.html
file path=usr/postgres/16/doc/html/spi-spi-scroll-cursor-move.html
file path=usr/postgres/16/doc/html/spi-spi-start-transaction.html
file path=usr/postgres/16/doc/html/spi-spi-unregister-relation.html
file path=usr/postgres/16/doc/html/spi-transaction.html
file path=usr/postgres/16/doc/html/spi-visibility.html
file path=usr/postgres/16/doc/html/spi.html
file path=usr/postgres/16/doc/html/sql-abort.html
file path=usr/postgres/16/doc/html/sql-alteraggregate.html
file path=usr/postgres/16/doc/html/sql-altercollation.html
file path=usr/postgres/16/doc/html/sql-alterconversion.html
file path=usr/postgres/16/doc/html/sql-alterdatabase.html
file path=usr/postgres/16/doc/html/sql-alterdefaultprivileges.html
file path=usr/postgres/16/doc/html/sql-alterdomain.html
file path=usr/postgres/16/doc/html/sql-altereventtrigger.html
file path=usr/postgres/16/doc/html/sql-alterextension.html
file path=usr/postgres/16/doc/html/sql-alterforeigndatawrapper.html
file path=usr/postgres/16/doc/html/sql-alterforeigntable.html
file path=usr/postgres/16/doc/html/sql-alterfunction.html
file path=usr/postgres/16/doc/html/sql-altergroup.html
file path=usr/postgres/16/doc/html/sql-alterindex.html
file path=usr/postgres/16/doc/html/sql-alterlanguage.html
file path=usr/postgres/16/doc/html/sql-alterlargeobject.html
file path=usr/postgres/16/doc/html/sql-altermaterializedview.html
file path=usr/postgres/16/doc/html/sql-alteropclass.html
file path=usr/postgres/16/doc/html/sql-alteroperator.html
file path=usr/postgres/16/doc/html/sql-alteropfamily.html
file path=usr/postgres/16/doc/html/sql-alterpolicy.html
file path=usr/postgres/16/doc/html/sql-alterprocedure.html
file path=usr/postgres/16/doc/html/sql-alterpublication.html
file path=usr/postgres/16/doc/html/sql-alterrole.html
file path=usr/postgres/16/doc/html/sql-alterroutine.html
file path=usr/postgres/16/doc/html/sql-alterrule.html
file path=usr/postgres/16/doc/html/sql-alterschema.html
file path=usr/postgres/16/doc/html/sql-altersequence.html
file path=usr/postgres/16/doc/html/sql-alterserver.html
file path=usr/postgres/16/doc/html/sql-alterstatistics.html
file path=usr/postgres/16/doc/html/sql-altersubscription.html
file path=usr/postgres/16/doc/html/sql-altersystem.html
file path=usr/postgres/16/doc/html/sql-altertable.html
file path=usr/postgres/16/doc/html/sql-altertablespace.html
file path=usr/postgres/16/doc/html/sql-altertrigger.html
file path=usr/postgres/16/doc/html/sql-altertsconfig.html
file path=usr/postgres/16/doc/html/sql-altertsdictionary.html
file path=usr/postgres/16/doc/html/sql-altertsparser.html
file path=usr/postgres/16/doc/html/sql-altertstemplate.html
file path=usr/postgres/16/doc/html/sql-altertype.html
file path=usr/postgres/16/doc/html/sql-alteruser.html
file path=usr/postgres/16/doc/html/sql-alterusermapping.html
file path=usr/postgres/16/doc/html/sql-alterview.html
file path=usr/postgres/16/doc/html/sql-analyze.html
file path=usr/postgres/16/doc/html/sql-begin.html
file path=usr/postgres/16/doc/html/sql-call.html
file path=usr/postgres/16/doc/html/sql-checkpoint.html
file path=usr/postgres/16/doc/html/sql-close.html
file path=usr/postgres/16/doc/html/sql-cluster.html
file path=usr/postgres/16/doc/html/sql-commands.html
file path=usr/postgres/16/doc/html/sql-comment.html
file path=usr/postgres/16/doc/html/sql-commit-prepared.html
file path=usr/postgres/16/doc/html/sql-commit.html
file path=usr/postgres/16/doc/html/sql-copy.html
file path=usr/postgres/16/doc/html/sql-create-access-method.html
file path=usr/postgres/16/doc/html/sql-createaggregate.html
file path=usr/postgres/16/doc/html/sql-createcast.html
file path=usr/postgres/16/doc/html/sql-createcollation.html
file path=usr/postgres/16/doc/html/sql-createconversion.html
file path=usr/postgres/16/doc/html/sql-createdatabase.html
file path=usr/postgres/16/doc/html/sql-createdomain.html
file path=usr/postgres/16/doc/html/sql-createeventtrigger.html
file path=usr/postgres/16/doc/html/sql-createextension.html
file path=usr/postgres/16/doc/html/sql-createforeigndatawrapper.html
file path=usr/postgres/16/doc/html/sql-createforeigntable.html
file path=usr/postgres/16/doc/html/sql-createfunction.html
file path=usr/postgres/16/doc/html/sql-creategroup.html
file path=usr/postgres/16/doc/html/sql-createindex.html
file path=usr/postgres/16/doc/html/sql-createlanguage.html
file path=usr/postgres/16/doc/html/sql-creatematerializedview.html
file path=usr/postgres/16/doc/html/sql-createopclass.html
file path=usr/postgres/16/doc/html/sql-createoperator.html
file path=usr/postgres/16/doc/html/sql-createopfamily.html
file path=usr/postgres/16/doc/html/sql-createpolicy.html
file path=usr/postgres/16/doc/html/sql-createprocedure.html
file path=usr/postgres/16/doc/html/sql-createpublication.html
file path=usr/postgres/16/doc/html/sql-createrole.html
file path=usr/postgres/16/doc/html/sql-createrule.html
file path=usr/postgres/16/doc/html/sql-createschema.html
file path=usr/postgres/16/doc/html/sql-createsequence.html
file path=usr/postgres/16/doc/html/sql-createserver.html
file path=usr/postgres/16/doc/html/sql-createstatistics.html
file path=usr/postgres/16/doc/html/sql-createsubscription.html
file path=usr/postgres/16/doc/html/sql-createtable.html
file path=usr/postgres/16/doc/html/sql-createtableas.html
file path=usr/postgres/16/doc/html/sql-createtablespace.html
file path=usr/postgres/16/doc/html/sql-createtransform.html
file path=usr/postgres/16/doc/html/sql-createtrigger.html
file path=usr/postgres/16/doc/html/sql-createtsconfig.html
file path=usr/postgres/16/doc/html/sql-createtsdictionary.html
file path=usr/postgres/16/doc/html/sql-createtsparser.html
file path=usr/postgres/16/doc/html/sql-createtstemplate.html
file path=usr/postgres/16/doc/html/sql-createtype.html
file path=usr/postgres/16/doc/html/sql-createuser.html
file path=usr/postgres/16/doc/html/sql-createusermapping.html
file path=usr/postgres/16/doc/html/sql-createview.html
file path=usr/postgres/16/doc/html/sql-deallocate.html
file path=usr/postgres/16/doc/html/sql-declare.html
file path=usr/postgres/16/doc/html/sql-delete.html
file path=usr/postgres/16/doc/html/sql-discard.html
file path=usr/postgres/16/doc/html/sql-do.html
file path=usr/postgres/16/doc/html/sql-drop-access-method.html
file path=usr/postgres/16/doc/html/sql-drop-owned.html
file path=usr/postgres/16/doc/html/sql-dropaggregate.html
file path=usr/postgres/16/doc/html/sql-dropcast.html
file path=usr/postgres/16/doc/html/sql-dropcollation.html
file path=usr/postgres/16/doc/html/sql-dropconversion.html
file path=usr/postgres/16/doc/html/sql-dropdatabase.html
file path=usr/postgres/16/doc/html/sql-dropdomain.html
file path=usr/postgres/16/doc/html/sql-dropeventtrigger.html
file path=usr/postgres/16/doc/html/sql-dropextension.html
file path=usr/postgres/16/doc/html/sql-dropforeigndatawrapper.html
file path=usr/postgres/16/doc/html/sql-dropforeigntable.html
file path=usr/postgres/16/doc/html/sql-dropfunction.html
file path=usr/postgres/16/doc/html/sql-dropgroup.html
file path=usr/postgres/16/doc/html/sql-dropindex.html
file path=usr/postgres/16/doc/html/sql-droplanguage.html
file path=usr/postgres/16/doc/html/sql-dropmaterializedview.html
file path=usr/postgres/16/doc/html/sql-dropopclass.html
file path=usr/postgres/16/doc/html/sql-dropoperator.html
file path=usr/postgres/16/doc/html/sql-dropopfamily.html
file path=usr/postgres/16/doc/html/sql-droppolicy.html
file path=usr/postgres/16/doc/html/sql-dropprocedure.html
file path=usr/postgres/16/doc/html/sql-droppublication.html
file path=usr/postgres/16/doc/html/sql-droprole.html
file path=usr/postgres/16/doc/html/sql-droproutine.html
file path=usr/postgres/16/doc/html/sql-droprule.html
file path=usr/postgres/16/doc/html/sql-dropschema.html
file path=usr/postgres/16/doc/html/sql-dropsequence.html
file path=usr/postgres/16/doc/html/sql-dropserver.html
file path=usr/postgres/16/doc/html/sql-dropstatistics.html
file path=usr/postgres/16/doc/html/sql-dropsubscription.html
file path=usr/postgres/16/doc/html/sql-droptable.html
file path=usr/postgres/16/doc/html/sql-droptablespace.html
file path=usr/postgres/16/doc/html/sql-droptransform.html
file path=usr/postgres/16/doc/html/sql-droptrigger.html
file path=usr/postgres/16/doc/html/sql-droptsconfig.html
file path=usr/postgres/16/doc/html/sql-droptsdictionary.html
file path=usr/postgres/16/doc/html/sql-droptsparser.html
file path=usr/postgres/16/doc/html/sql-droptstemplate.html
file path=usr/postgres/16/doc/html/sql-droptype.html
file path=usr/postgres/16/doc/html/sql-dropuser.html
file path=usr/postgres/16/doc/html/sql-dropusermapping.html
file path=usr/postgres/16/doc/html/sql-dropview.html
file path=usr/postgres/16/doc/html/sql-end.html
file path=usr/postgres/16/doc/html/sql-execute.html
file path=usr/postgres/16/doc/html/sql-explain.html
file path=usr/postgres/16/doc/html/sql-expressions.html
file path=usr/postgres/16/doc/html/sql-fetch.html
file path=usr/postgres/16/doc/html/sql-grant.html
file path=usr/postgres/16/doc/html/sql-importforeignschema.html
file path=usr/postgres/16/doc/html/sql-insert.html
file path=usr/postgres/16/doc/html/sql-keywords-appendix.html
file path=usr/postgres/16/doc/html/sql-listen.html
file path=usr/postgres/16/doc/html/sql-load.html
file path=usr/postgres/16/doc/html/sql-lock.html
file path=usr/postgres/16/doc/html/sql-merge.html
file path=usr/postgres/16/doc/html/sql-move.html
file path=usr/postgres/16/doc/html/sql-notify.html
file path=usr/postgres/16/doc/html/sql-prepare-transaction.html
file path=usr/postgres/16/doc/html/sql-prepare.html
file path=usr/postgres/16/doc/html/sql-reassign-owned.html
file path=usr/postgres/16/doc/html/sql-refreshmaterializedview.html
file path=usr/postgres/16/doc/html/sql-reindex.html
file path=usr/postgres/16/doc/html/sql-release-savepoint.html
file path=usr/postgres/16/doc/html/sql-reset.html
file path=usr/postgres/16/doc/html/sql-revoke.html
file path=usr/postgres/16/doc/html/sql-rollback-prepared.html
file path=usr/postgres/16/doc/html/sql-rollback-to.html
file path=usr/postgres/16/doc/html/sql-rollback.html
file path=usr/postgres/16/doc/html/sql-savepoint.html
file path=usr/postgres/16/doc/html/sql-security-label.html
file path=usr/postgres/16/doc/html/sql-select.html
file path=usr/postgres/16/doc/html/sql-selectinto.html
file path=usr/postgres/16/doc/html/sql-set-constraints.html
file path=usr/postgres/16/doc/html/sql-set-role.html
file path=usr/postgres/16/doc/html/sql-set-session-authorization.html
file path=usr/postgres/16/doc/html/sql-set-transaction.html
file path=usr/postgres/16/doc/html/sql-set.html
file path=usr/postgres/16/doc/html/sql-show.html
file path=usr/postgres/16/doc/html/sql-start-transaction.html
file path=usr/postgres/16/doc/html/sql-syntax-calling-funcs.html
file path=usr/postgres/16/doc/html/sql-syntax-lexical.html
file path=usr/postgres/16/doc/html/sql-syntax.html
file path=usr/postgres/16/doc/html/sql-truncate.html
file path=usr/postgres/16/doc/html/sql-unlisten.html
file path=usr/postgres/16/doc/html/sql-update.html
file path=usr/postgres/16/doc/html/sql-vacuum.html
file path=usr/postgres/16/doc/html/sql-values.html
file path=usr/postgres/16/doc/html/sql.html
file path=usr/postgres/16/doc/html/ssh-tunnels.html
file path=usr/postgres/16/doc/html/ssl-tcp.html
file path=usr/postgres/16/doc/html/sslinfo.html
file path=usr/postgres/16/doc/html/sspi-auth.html
file path=usr/postgres/16/doc/html/storage-file-layout.html
file path=usr/postgres/16/doc/html/storage-fsm.html
file path=usr/postgres/16/doc/html/storage-hot.html
file path=usr/postgres/16/doc/html/storage-init.html
file path=usr/postgres/16/doc/html/storage-page-layout.html
file path=usr/postgres/16/doc/html/storage-toast.html
file path=usr/postgres/16/doc/html/storage-vm.html
file path=usr/postgres/16/doc/html/storage.html
file path=usr/postgres/16/doc/html/stylesheet.css
file path=usr/postgres/16/doc/html/subxacts.html
file path=usr/postgres/16/doc/html/supported-platforms.html
file path=usr/postgres/16/doc/html/system-catalog-declarations.html
file path=usr/postgres/16/doc/html/system-catalog-initial-data.html
file path=usr/postgres/16/doc/html/tableam.html
file path=usr/postgres/16/doc/html/tablefunc.html
file path=usr/postgres/16/doc/html/tablesample-method.html
file path=usr/postgres/16/doc/html/tablesample-support-functions.html
file path=usr/postgres/16/doc/html/tcn.html
file path=usr/postgres/16/doc/html/test-decoding.html
file path=usr/postgres/16/doc/html/textsearch-configuration.html
file path=usr/postgres/16/doc/html/textsearch-controls.html
file path=usr/postgres/16/doc/html/textsearch-debugging.html
file path=usr/postgres/16/doc/html/textsearch-dictionaries.html
file path=usr/postgres/16/doc/html/textsearch-features.html
file path=usr/postgres/16/doc/html/textsearch-indexes.html
file path=usr/postgres/16/doc/html/textsearch-intro.html
file path=usr/postgres/16/doc/html/textsearch-limitations.html
file path=usr/postgres/16/doc/html/textsearch-parsers.html
file path=usr/postgres/16/doc/html/textsearch-psql.html
file path=usr/postgres/16/doc/html/textsearch-tables.html
file path=usr/postgres/16/doc/html/textsearch.html
file path=usr/postgres/16/doc/html/transaction-id.html
file path=usr/postgres/16/doc/html/transaction-iso.html
file path=usr/postgres/16/doc/html/transactions.html
file path=usr/postgres/16/doc/html/trigger-datachanges.html
file path=usr/postgres/16/doc/html/trigger-definition.html
file path=usr/postgres/16/doc/html/trigger-example.html
file path=usr/postgres/16/doc/html/trigger-interface.html
file path=usr/postgres/16/doc/html/triggers.html
file path=usr/postgres/16/doc/html/tsm-system-rows.html
file path=usr/postgres/16/doc/html/tsm-system-time.html
file path=usr/postgres/16/doc/html/tutorial-accessdb.html
file path=usr/postgres/16/doc/html/tutorial-advanced-intro.html
file path=usr/postgres/16/doc/html/tutorial-advanced.html
file path=usr/postgres/16/doc/html/tutorial-agg.html
file path=usr/postgres/16/doc/html/tutorial-arch.html
file path=usr/postgres/16/doc/html/tutorial-concepts.html
file path=usr/postgres/16/doc/html/tutorial-conclusion.html
file path=usr/postgres/16/doc/html/tutorial-createdb.html
file path=usr/postgres/16/doc/html/tutorial-delete.html
file path=usr/postgres/16/doc/html/tutorial-fk.html
file path=usr/postgres/16/doc/html/tutorial-inheritance.html
file path=usr/postgres/16/doc/html/tutorial-install.html
file path=usr/postgres/16/doc/html/tutorial-join.html
file path=usr/postgres/16/doc/html/tutorial-populate.html
file path=usr/postgres/16/doc/html/tutorial-select.html
file path=usr/postgres/16/doc/html/tutorial-sql-intro.html
file path=usr/postgres/16/doc/html/tutorial-sql.html
file path=usr/postgres/16/doc/html/tutorial-start.html
file path=usr/postgres/16/doc/html/tutorial-table.html
file path=usr/postgres/16/doc/html/tutorial-transactions.html
file path=usr/postgres/16/doc/html/tutorial-update.html
file path=usr/postgres/16/doc/html/tutorial-views.html
file path=usr/postgres/16/doc/html/tutorial-window.html
file path=usr/postgres/16/doc/html/tutorial.html
file path=usr/postgres/16/doc/html/two-phase.html
file path=usr/postgres/16/doc/html/typeconv-func.html
file path=usr/postgres/16/doc/html/typeconv-oper.html
file path=usr/postgres/16/doc/html/typeconv-overview.html
file path=usr/postgres/16/doc/html/typeconv-query.html
file path=usr/postgres/16/doc/html/typeconv-select.html
file path=usr/postgres/16/doc/html/typeconv-union-case.html
file path=usr/postgres/16/doc/html/typeconv.html
file path=usr/postgres/16/doc/html/unaccent.html
file path=usr/postgres/16/doc/html/unsupported-features-sql-standard.html
file path=usr/postgres/16/doc/html/upgrading.html
file path=usr/postgres/16/doc/html/user-manag.html
file path=usr/postgres/16/doc/html/using-explain.html
file path=usr/postgres/16/doc/html/uuid-ossp.html
file path=usr/postgres/16/doc/html/vacuumlo.html
file path=usr/postgres/16/doc/html/view-pg-available-extension-versions.html
file path=usr/postgres/16/doc/html/view-pg-available-extensions.html
file path=usr/postgres/16/doc/html/view-pg-backend-memory-contexts.html
file path=usr/postgres/16/doc/html/view-pg-config.html
file path=usr/postgres/16/doc/html/view-pg-cursors.html
file path=usr/postgres/16/doc/html/view-pg-file-settings.html
file path=usr/postgres/16/doc/html/view-pg-group.html
file path=usr/postgres/16/doc/html/view-pg-hba-file-rules.html
file path=usr/postgres/16/doc/html/view-pg-ident-file-mappings.html
file path=usr/postgres/16/doc/html/view-pg-indexes.html
file path=usr/postgres/16/doc/html/view-pg-locks.html
file path=usr/postgres/16/doc/html/view-pg-matviews.html
file path=usr/postgres/16/doc/html/view-pg-policies.html
file path=usr/postgres/16/doc/html/view-pg-prepared-statements.html
file path=usr/postgres/16/doc/html/view-pg-prepared-xacts.html
file path=usr/postgres/16/doc/html/view-pg-publication-tables.html
file path=usr/postgres/16/doc/html/view-pg-replication-origin-status.html
file path=usr/postgres/16/doc/html/view-pg-replication-slots.html
file path=usr/postgres/16/doc/html/view-pg-roles.html
file path=usr/postgres/16/doc/html/view-pg-rules.html
file path=usr/postgres/16/doc/html/view-pg-seclabels.html
file path=usr/postgres/16/doc/html/view-pg-sequences.html
file path=usr/postgres/16/doc/html/view-pg-settings.html
file path=usr/postgres/16/doc/html/view-pg-shadow.html
file path=usr/postgres/16/doc/html/view-pg-shmem-allocations.html
file path=usr/postgres/16/doc/html/view-pg-stats-ext-exprs.html
file path=usr/postgres/16/doc/html/view-pg-stats-ext.html
file path=usr/postgres/16/doc/html/view-pg-stats.html
file path=usr/postgres/16/doc/html/view-pg-tables.html
file path=usr/postgres/16/doc/html/view-pg-timezone-abbrevs.html
file path=usr/postgres/16/doc/html/view-pg-timezone-names.html
file path=usr/postgres/16/doc/html/view-pg-user-mappings.html
file path=usr/postgres/16/doc/html/view-pg-user.html
file path=usr/postgres/16/doc/html/view-pg-views.html
file path=usr/postgres/16/doc/html/views-overview.html
file path=usr/postgres/16/doc/html/views.html
file path=usr/postgres/16/doc/html/wal-async-commit.html
file path=usr/postgres/16/doc/html/wal-configuration.html
file path=usr/postgres/16/doc/html/wal-internals.html
file path=usr/postgres/16/doc/html/wal-intro.html
file path=usr/postgres/16/doc/html/wal-reliability.html
file path=usr/postgres/16/doc/html/wal.html
file path=usr/postgres/16/doc/html/warm-standby-failover.html
file path=usr/postgres/16/doc/html/warm-standby.html
file path=usr/postgres/16/doc/html/when-can-parallel-query-be-used.html
file path=usr/postgres/16/doc/html/xact-locking.html
file path=usr/postgres/16/doc/html/xaggr.html
file path=usr/postgres/16/doc/html/xfunc-c.html
file path=usr/postgres/16/doc/html/xfunc-internal.html
file path=usr/postgres/16/doc/html/xfunc-optimization.html
file path=usr/postgres/16/doc/html/xfunc-overload.html
file path=usr/postgres/16/doc/html/xfunc-pl.html
file path=usr/postgres/16/doc/html/xfunc-sql.html
file path=usr/postgres/16/doc/html/xfunc-volatility.html
file path=usr/postgres/16/doc/html/xfunc.html
file path=usr/postgres/16/doc/html/xindex.html
file path=usr/postgres/16/doc/html/xml-limits-conformance.html
file path=usr/postgres/16/doc/html/xml2.html
file path=usr/postgres/16/doc/html/xoper-optimization.html
file path=usr/postgres/16/doc/html/xoper.html
file path=usr/postgres/16/doc/html/xplang-install.html
file path=usr/postgres/16/doc/html/xplang.html
file path=usr/postgres/16/doc/html/xproc.html
file path=usr/postgres/16/doc/html/xtypes.html
file path=usr/postgres/16/include/ecpg_config.h
file path=usr/postgres/16/include/ecpg_informix.h
file path=usr/postgres/16/include/ecpgerrno.h
file path=usr/postgres/16/include/ecpglib.h
file path=usr/postgres/16/include/ecpgtype.h
file path=usr/postgres/16/include/informix/esql/datetime.h
file path=usr/postgres/16/include/informix/esql/decimal.h
file path=usr/postgres/16/include/informix/esql/sqltypes.h
file path=usr/postgres/16/include/internal/c.h
file path=usr/postgres/16/include/internal/fe-auth-sasl.h
file path=usr/postgres/16/include/internal/libpq-int.h
file path=usr/postgres/16/include/internal/libpq/pqcomm.h
file path=usr/postgres/16/include/internal/port.h
file path=usr/postgres/16/include/internal/postgres_fe.h
file path=usr/postgres/16/include/internal/pqexpbuffer.h
file path=usr/postgres/16/include/libpq-events.h
file path=usr/postgres/16/include/libpq-fe.h
file path=usr/postgres/16/include/libpq/libpq-fs.h
file path=usr/postgres/16/include/pg_config-32.h
file path=usr/postgres/16/include/pg_config-64.h
file path=usr/postgres/16/include/pg_config_ext.h
file path=usr/postgres/16/include/pg_config_manual.h
file path=usr/postgres/16/include/pg_config_os.h
file path=usr/postgres/16/include/pgtypes.h
file path=usr/postgres/16/include/pgtypes_date.h
file path=usr/postgres/16/include/pgtypes_error.h
file path=usr/postgres/16/include/pgtypes_interval.h
file path=usr/postgres/16/include/pgtypes_numeric.h
file path=usr/postgres/16/include/pgtypes_timestamp.h
file path=usr/postgres/16/include/postgres_ext.h
file path=usr/postgres/16/include/server/access/amapi.h
file path=usr/postgres/16/include/server/access/amvalidate.h
file path=usr/postgres/16/include/server/access/attmap.h
file path=usr/postgres/16/include/server/access/attnum.h
file path=usr/postgres/16/include/server/access/brin.h
file path=usr/postgres/16/include/server/access/brin_internal.h
file path=usr/postgres/16/include/server/access/brin_page.h
file path=usr/postgres/16/include/server/access/brin_pageops.h
file path=usr/postgres/16/include/server/access/brin_revmap.h
file path=usr/postgres/16/include/server/access/brin_tuple.h
file path=usr/postgres/16/include/server/access/brin_xlog.h
file path=usr/postgres/16/include/server/access/bufmask.h
file path=usr/postgres/16/include/server/access/clog.h
file path=usr/postgres/16/include/server/access/commit_ts.h
file path=usr/postgres/16/include/server/access/detoast.h
file path=usr/postgres/16/include/server/access/genam.h
file path=usr/postgres/16/include/server/access/generic_xlog.h
file path=usr/postgres/16/include/server/access/gin.h
file path=usr/postgres/16/include/server/access/gin_private.h
file path=usr/postgres/16/include/server/access/ginblock.h
file path=usr/postgres/16/include/server/access/ginxlog.h
file path=usr/postgres/16/include/server/access/gist.h
file path=usr/postgres/16/include/server/access/gist_private.h
file path=usr/postgres/16/include/server/access/gistscan.h
file path=usr/postgres/16/include/server/access/gistxlog.h
file path=usr/postgres/16/include/server/access/hash.h
file path=usr/postgres/16/include/server/access/hash_xlog.h
file path=usr/postgres/16/include/server/access/heapam.h
file path=usr/postgres/16/include/server/access/heapam_xlog.h
file path=usr/postgres/16/include/server/access/heaptoast.h
file path=usr/postgres/16/include/server/access/hio.h
file path=usr/postgres/16/include/server/access/htup.h
file path=usr/postgres/16/include/server/access/htup_details.h
file path=usr/postgres/16/include/server/access/itup.h
file path=usr/postgres/16/include/server/access/multixact.h
file path=usr/postgres/16/include/server/access/nbtree.h
file path=usr/postgres/16/include/server/access/nbtxlog.h
file path=usr/postgres/16/include/server/access/parallel.h
file path=usr/postgres/16/include/server/access/printsimple.h
file path=usr/postgres/16/include/server/access/printtup.h
file path=usr/postgres/16/include/server/access/relation.h
file path=usr/postgres/16/include/server/access/reloptions.h
file path=usr/postgres/16/include/server/access/relscan.h
file path=usr/postgres/16/include/server/access/rewriteheap.h
file path=usr/postgres/16/include/server/access/rmgr.h
file path=usr/postgres/16/include/server/access/rmgrdesc_utils.h
file path=usr/postgres/16/include/server/access/rmgrlist.h
file path=usr/postgres/16/include/server/access/sdir.h
file path=usr/postgres/16/include/server/access/session.h
file path=usr/postgres/16/include/server/access/skey.h
file path=usr/postgres/16/include/server/access/slru.h
file path=usr/postgres/16/include/server/access/spgist.h
file path=usr/postgres/16/include/server/access/spgist_private.h
file path=usr/postgres/16/include/server/access/spgxlog.h
file path=usr/postgres/16/include/server/access/stratnum.h
file path=usr/postgres/16/include/server/access/subtrans.h
file path=usr/postgres/16/include/server/access/syncscan.h
file path=usr/postgres/16/include/server/access/sysattr.h
file path=usr/postgres/16/include/server/access/table.h
file path=usr/postgres/16/include/server/access/tableam.h
file path=usr/postgres/16/include/server/access/timeline.h
file path=usr/postgres/16/include/server/access/toast_compression.h
file path=usr/postgres/16/include/server/access/toast_helper.h
file path=usr/postgres/16/include/server/access/toast_internals.h
file path=usr/postgres/16/include/server/access/transam.h
file path=usr/postgres/16/include/server/access/tsmapi.h
file path=usr/postgres/16/include/server/access/tupconvert.h
file path=usr/postgres/16/include/server/access/tupdesc.h
file path=usr/postgres/16/include/server/access/tupdesc_details.h
file path=usr/postgres/16/include/server/access/tupmacs.h
file path=usr/postgres/16/include/server/access/twophase.h
file path=usr/postgres/16/include/server/access/twophase_rmgr.h
file path=usr/postgres/16/include/server/access/valid.h
file path=usr/postgres/16/include/server/access/visibilitymap.h
file path=usr/postgres/16/include/server/access/visibilitymapdefs.h
file path=usr/postgres/16/include/server/access/xact.h
file path=usr/postgres/16/include/server/access/xlog.h
file path=usr/postgres/16/include/server/access/xlog_internal.h
file path=usr/postgres/16/include/server/access/xlogarchive.h
file path=usr/postgres/16/include/server/access/xlogbackup.h
file path=usr/postgres/16/include/server/access/xlogdefs.h
file path=usr/postgres/16/include/server/access/xloginsert.h
file path=usr/postgres/16/include/server/access/xlogprefetcher.h
file path=usr/postgres/16/include/server/access/xlogreader.h
file path=usr/postgres/16/include/server/access/xlogrecord.h
file path=usr/postgres/16/include/server/access/xlogrecovery.h
file path=usr/postgres/16/include/server/access/xlogstats.h
file path=usr/postgres/16/include/server/access/xlogutils.h
file path=usr/postgres/16/include/server/archive/archive_module.h
file path=usr/postgres/16/include/server/archive/shell_archive.h
file path=usr/postgres/16/include/server/bootstrap/bootstrap.h
file path=usr/postgres/16/include/server/c.h
file path=usr/postgres/16/include/server/catalog/binary_upgrade.h
file path=usr/postgres/16/include/server/catalog/catalog.h
file path=usr/postgres/16/include/server/catalog/catversion.h
file path=usr/postgres/16/include/server/catalog/dependency.h
file path=usr/postgres/16/include/server/catalog/genbki.h
file path=usr/postgres/16/include/server/catalog/heap.h
file path=usr/postgres/16/include/server/catalog/index.h
file path=usr/postgres/16/include/server/catalog/indexing.h
file path=usr/postgres/16/include/server/catalog/namespace.h
file path=usr/postgres/16/include/server/catalog/objectaccess.h
file path=usr/postgres/16/include/server/catalog/objectaddress.h
file path=usr/postgres/16/include/server/catalog/partition.h
file path=usr/postgres/16/include/server/catalog/pg_aggregate.h
file path=usr/postgres/16/include/server/catalog/pg_aggregate_d.h
file path=usr/postgres/16/include/server/catalog/pg_am.h
file path=usr/postgres/16/include/server/catalog/pg_am_d.h
file path=usr/postgres/16/include/server/catalog/pg_amop.h
file path=usr/postgres/16/include/server/catalog/pg_amop_d.h
file path=usr/postgres/16/include/server/catalog/pg_amproc.h
file path=usr/postgres/16/include/server/catalog/pg_amproc_d.h
file path=usr/postgres/16/include/server/catalog/pg_attrdef.h
file path=usr/postgres/16/include/server/catalog/pg_attrdef_d.h
file path=usr/postgres/16/include/server/catalog/pg_attribute.h
file path=usr/postgres/16/include/server/catalog/pg_attribute_d.h
file path=usr/postgres/16/include/server/catalog/pg_auth_members.h
file path=usr/postgres/16/include/server/catalog/pg_auth_members_d.h
file path=usr/postgres/16/include/server/catalog/pg_authid.h
file path=usr/postgres/16/include/server/catalog/pg_authid_d.h
file path=usr/postgres/16/include/server/catalog/pg_cast.h
file path=usr/postgres/16/include/server/catalog/pg_cast_d.h
file path=usr/postgres/16/include/server/catalog/pg_class.h
file path=usr/postgres/16/include/server/catalog/pg_class_d.h
file path=usr/postgres/16/include/server/catalog/pg_collation.h
file path=usr/postgres/16/include/server/catalog/pg_collation_d.h
file path=usr/postgres/16/include/server/catalog/pg_constraint.h
file path=usr/postgres/16/include/server/catalog/pg_constraint_d.h
file path=usr/postgres/16/include/server/catalog/pg_control.h
file path=usr/postgres/16/include/server/catalog/pg_conversion.h
file path=usr/postgres/16/include/server/catalog/pg_conversion_d.h
file path=usr/postgres/16/include/server/catalog/pg_database.h
file path=usr/postgres/16/include/server/catalog/pg_database_d.h
file path=usr/postgres/16/include/server/catalog/pg_db_role_setting.h
file path=usr/postgres/16/include/server/catalog/pg_db_role_setting_d.h
file path=usr/postgres/16/include/server/catalog/pg_default_acl.h
file path=usr/postgres/16/include/server/catalog/pg_default_acl_d.h
file path=usr/postgres/16/include/server/catalog/pg_depend.h
file path=usr/postgres/16/include/server/catalog/pg_depend_d.h
file path=usr/postgres/16/include/server/catalog/pg_description.h
file path=usr/postgres/16/include/server/catalog/pg_description_d.h
file path=usr/postgres/16/include/server/catalog/pg_enum.h
file path=usr/postgres/16/include/server/catalog/pg_enum_d.h
file path=usr/postgres/16/include/server/catalog/pg_event_trigger.h
file path=usr/postgres/16/include/server/catalog/pg_event_trigger_d.h
file path=usr/postgres/16/include/server/catalog/pg_extension.h
file path=usr/postgres/16/include/server/catalog/pg_extension_d.h
file path=usr/postgres/16/include/server/catalog/pg_foreign_data_wrapper.h
file path=usr/postgres/16/include/server/catalog/pg_foreign_data_wrapper_d.h
file path=usr/postgres/16/include/server/catalog/pg_foreign_server.h
file path=usr/postgres/16/include/server/catalog/pg_foreign_server_d.h
file path=usr/postgres/16/include/server/catalog/pg_foreign_table.h
file path=usr/postgres/16/include/server/catalog/pg_foreign_table_d.h
file path=usr/postgres/16/include/server/catalog/pg_index.h
file path=usr/postgres/16/include/server/catalog/pg_index_d.h
file path=usr/postgres/16/include/server/catalog/pg_inherits.h
file path=usr/postgres/16/include/server/catalog/pg_inherits_d.h
file path=usr/postgres/16/include/server/catalog/pg_init_privs.h
file path=usr/postgres/16/include/server/catalog/pg_init_privs_d.h
file path=usr/postgres/16/include/server/catalog/pg_language.h
file path=usr/postgres/16/include/server/catalog/pg_language_d.h
file path=usr/postgres/16/include/server/catalog/pg_largeobject.h
file path=usr/postgres/16/include/server/catalog/pg_largeobject_d.h
file path=usr/postgres/16/include/server/catalog/pg_largeobject_metadata.h
file path=usr/postgres/16/include/server/catalog/pg_largeobject_metadata_d.h
file path=usr/postgres/16/include/server/catalog/pg_namespace.h
file path=usr/postgres/16/include/server/catalog/pg_namespace_d.h
file path=usr/postgres/16/include/server/catalog/pg_opclass.h
file path=usr/postgres/16/include/server/catalog/pg_opclass_d.h
file path=usr/postgres/16/include/server/catalog/pg_operator.h
file path=usr/postgres/16/include/server/catalog/pg_operator_d.h
file path=usr/postgres/16/include/server/catalog/pg_opfamily.h
file path=usr/postgres/16/include/server/catalog/pg_opfamily_d.h
file path=usr/postgres/16/include/server/catalog/pg_parameter_acl.h
file path=usr/postgres/16/include/server/catalog/pg_parameter_acl_d.h
file path=usr/postgres/16/include/server/catalog/pg_partitioned_table.h
file path=usr/postgres/16/include/server/catalog/pg_partitioned_table_d.h
file path=usr/postgres/16/include/server/catalog/pg_policy.h
file path=usr/postgres/16/include/server/catalog/pg_policy_d.h
file path=usr/postgres/16/include/server/catalog/pg_proc.h
file path=usr/postgres/16/include/server/catalog/pg_proc_d.h
file path=usr/postgres/16/include/server/catalog/pg_publication.h
file path=usr/postgres/16/include/server/catalog/pg_publication_d.h
file path=usr/postgres/16/include/server/catalog/pg_publication_namespace.h
file path=usr/postgres/16/include/server/catalog/pg_publication_namespace_d.h
file path=usr/postgres/16/include/server/catalog/pg_publication_rel.h
file path=usr/postgres/16/include/server/catalog/pg_publication_rel_d.h
file path=usr/postgres/16/include/server/catalog/pg_range.h
file path=usr/postgres/16/include/server/catalog/pg_range_d.h
file path=usr/postgres/16/include/server/catalog/pg_replication_origin.h
file path=usr/postgres/16/include/server/catalog/pg_replication_origin_d.h
file path=usr/postgres/16/include/server/catalog/pg_rewrite.h
file path=usr/postgres/16/include/server/catalog/pg_rewrite_d.h
file path=usr/postgres/16/include/server/catalog/pg_seclabel.h
file path=usr/postgres/16/include/server/catalog/pg_seclabel_d.h
file path=usr/postgres/16/include/server/catalog/pg_sequence.h
file path=usr/postgres/16/include/server/catalog/pg_sequence_d.h
file path=usr/postgres/16/include/server/catalog/pg_shdepend.h
file path=usr/postgres/16/include/server/catalog/pg_shdepend_d.h
file path=usr/postgres/16/include/server/catalog/pg_shdescription.h
file path=usr/postgres/16/include/server/catalog/pg_shdescription_d.h
file path=usr/postgres/16/include/server/catalog/pg_shseclabel.h
file path=usr/postgres/16/include/server/catalog/pg_shseclabel_d.h
file path=usr/postgres/16/include/server/catalog/pg_statistic.h
file path=usr/postgres/16/include/server/catalog/pg_statistic_d.h
file path=usr/postgres/16/include/server/catalog/pg_statistic_ext.h
file path=usr/postgres/16/include/server/catalog/pg_statistic_ext_d.h
file path=usr/postgres/16/include/server/catalog/pg_statistic_ext_data.h
file path=usr/postgres/16/include/server/catalog/pg_statistic_ext_data_d.h
file path=usr/postgres/16/include/server/catalog/pg_subscription.h
file path=usr/postgres/16/include/server/catalog/pg_subscription_d.h
file path=usr/postgres/16/include/server/catalog/pg_subscription_rel.h
file path=usr/postgres/16/include/server/catalog/pg_subscription_rel_d.h
file path=usr/postgres/16/include/server/catalog/pg_tablespace.h
file path=usr/postgres/16/include/server/catalog/pg_tablespace_d.h
file path=usr/postgres/16/include/server/catalog/pg_transform.h
file path=usr/postgres/16/include/server/catalog/pg_transform_d.h
file path=usr/postgres/16/include/server/catalog/pg_trigger.h
file path=usr/postgres/16/include/server/catalog/pg_trigger_d.h
file path=usr/postgres/16/include/server/catalog/pg_ts_config.h
file path=usr/postgres/16/include/server/catalog/pg_ts_config_d.h
file path=usr/postgres/16/include/server/catalog/pg_ts_config_map.h
file path=usr/postgres/16/include/server/catalog/pg_ts_config_map_d.h
file path=usr/postgres/16/include/server/catalog/pg_ts_dict.h
file path=usr/postgres/16/include/server/catalog/pg_ts_dict_d.h
file path=usr/postgres/16/include/server/catalog/pg_ts_parser.h
file path=usr/postgres/16/include/server/catalog/pg_ts_parser_d.h
file path=usr/postgres/16/include/server/catalog/pg_ts_template.h
file path=usr/postgres/16/include/server/catalog/pg_ts_template_d.h
file path=usr/postgres/16/include/server/catalog/pg_type.h
file path=usr/postgres/16/include/server/catalog/pg_type_d.h
file path=usr/postgres/16/include/server/catalog/pg_user_mapping.h
file path=usr/postgres/16/include/server/catalog/pg_user_mapping_d.h
file path=usr/postgres/16/include/server/catalog/schemapg.h
file path=usr/postgres/16/include/server/catalog/storage.h
file path=usr/postgres/16/include/server/catalog/storage_xlog.h
file path=usr/postgres/16/include/server/catalog/system_fk_info.h
file path=usr/postgres/16/include/server/catalog/toasting.h
file path=usr/postgres/16/include/server/commands/alter.h
file path=usr/postgres/16/include/server/commands/async.h
file path=usr/postgres/16/include/server/commands/cluster.h
file path=usr/postgres/16/include/server/commands/collationcmds.h
file path=usr/postgres/16/include/server/commands/comment.h
file path=usr/postgres/16/include/server/commands/conversioncmds.h
file path=usr/postgres/16/include/server/commands/copy.h
file path=usr/postgres/16/include/server/commands/copyfrom_internal.h
file path=usr/postgres/16/include/server/commands/createas.h
file path=usr/postgres/16/include/server/commands/dbcommands.h
file path=usr/postgres/16/include/server/commands/dbcommands_xlog.h
file path=usr/postgres/16/include/server/commands/defrem.h
file path=usr/postgres/16/include/server/commands/discard.h
file path=usr/postgres/16/include/server/commands/event_trigger.h
file path=usr/postgres/16/include/server/commands/explain.h
file path=usr/postgres/16/include/server/commands/extension.h
file path=usr/postgres/16/include/server/commands/lockcmds.h
file path=usr/postgres/16/include/server/commands/matview.h
file path=usr/postgres/16/include/server/commands/policy.h
file path=usr/postgres/16/include/server/commands/portalcmds.h
file path=usr/postgres/16/include/server/commands/prepare.h
file path=usr/postgres/16/include/server/commands/proclang.h
file path=usr/postgres/16/include/server/commands/progress.h
file path=usr/postgres/16/include/server/commands/publicationcmds.h
file path=usr/postgres/16/include/server/commands/schemacmds.h
file path=usr/postgres/16/include/server/commands/seclabel.h
file path=usr/postgres/16/include/server/commands/sequence.h
file path=usr/postgres/16/include/server/commands/subscriptioncmds.h
file path=usr/postgres/16/include/server/commands/tablecmds.h
file path=usr/postgres/16/include/server/commands/tablespace.h
file path=usr/postgres/16/include/server/commands/trigger.h
file path=usr/postgres/16/include/server/commands/typecmds.h
file path=usr/postgres/16/include/server/commands/user.h
file path=usr/postgres/16/include/server/commands/vacuum.h
file path=usr/postgres/16/include/server/commands/view.h
file path=usr/postgres/16/include/server/common/archive.h
file path=usr/postgres/16/include/server/common/base64.h
file path=usr/postgres/16/include/server/common/checksum_helper.h
file path=usr/postgres/16/include/server/common/compression.h
file path=usr/postgres/16/include/server/common/config_info.h
file path=usr/postgres/16/include/server/common/connect.h
file path=usr/postgres/16/include/server/common/controldata_utils.h
file path=usr/postgres/16/include/server/common/cryptohash.h
file path=usr/postgres/16/include/server/common/fe_memutils.h
file path=usr/postgres/16/include/server/common/file_perm.h
file path=usr/postgres/16/include/server/common/file_utils.h
file path=usr/postgres/16/include/server/common/hashfn.h
file path=usr/postgres/16/include/server/common/hmac.h
file path=usr/postgres/16/include/server/common/int.h
file path=usr/postgres/16/include/server/common/int128.h
file path=usr/postgres/16/include/server/common/ip.h
file path=usr/postgres/16/include/server/common/jsonapi.h
file path=usr/postgres/16/include/server/common/keywords.h
file path=usr/postgres/16/include/server/common/kwlookup.h
file path=usr/postgres/16/include/server/common/link-canary.h
file path=usr/postgres/16/include/server/common/logging.h
file path=usr/postgres/16/include/server/common/md5.h
file path=usr/postgres/16/include/server/common/openssl.h
file path=usr/postgres/16/include/server/common/percentrepl.h
file path=usr/postgres/16/include/server/common/pg_lzcompress.h
file path=usr/postgres/16/include/server/common/pg_prng.h
file path=usr/postgres/16/include/server/common/relpath.h
file path=usr/postgres/16/include/server/common/restricted_token.h
file path=usr/postgres/16/include/server/common/saslprep.h
file path=usr/postgres/16/include/server/common/scram-common.h
file path=usr/postgres/16/include/server/common/sha1.h
file path=usr/postgres/16/include/server/common/sha2.h
file path=usr/postgres/16/include/server/common/shortest_dec.h
file path=usr/postgres/16/include/server/common/string.h
file path=usr/postgres/16/include/server/common/unicode_east_asian_fw_table.h
file path=usr/postgres/16/include/server/common/unicode_nonspacing_table.h
file path=usr/postgres/16/include/server/common/unicode_norm.h
file path=usr/postgres/16/include/server/common/unicode_norm_hashfunc.h
file path=usr/postgres/16/include/server/common/unicode_norm_table.h
file path=usr/postgres/16/include/server/common/unicode_normprops_table.h
file path=usr/postgres/16/include/server/common/username.h
file path=usr/postgres/16/include/server/datatype/timestamp.h
file path=usr/postgres/16/include/server/executor/execAsync.h
file path=usr/postgres/16/include/server/executor/execExpr.h
file path=usr/postgres/16/include/server/executor/execParallel.h
file path=usr/postgres/16/include/server/executor/execPartition.h
file path=usr/postgres/16/include/server/executor/execdebug.h
file path=usr/postgres/16/include/server/executor/execdesc.h
file path=usr/postgres/16/include/server/executor/executor.h
file path=usr/postgres/16/include/server/executor/functions.h
file path=usr/postgres/16/include/server/executor/hashjoin.h
file path=usr/postgres/16/include/server/executor/instrument.h
file path=usr/postgres/16/include/server/executor/nodeAgg.h
file path=usr/postgres/16/include/server/executor/nodeAppend.h
file path=usr/postgres/16/include/server/executor/nodeBitmapAnd.h
file path=usr/postgres/16/include/server/executor/nodeBitmapHeapscan.h
file path=usr/postgres/16/include/server/executor/nodeBitmapIndexscan.h
file path=usr/postgres/16/include/server/executor/nodeBitmapOr.h
file path=usr/postgres/16/include/server/executor/nodeCtescan.h
file path=usr/postgres/16/include/server/executor/nodeCustom.h
file path=usr/postgres/16/include/server/executor/nodeForeignscan.h
file path=usr/postgres/16/include/server/executor/nodeFunctionscan.h
file path=usr/postgres/16/include/server/executor/nodeGather.h
file path=usr/postgres/16/include/server/executor/nodeGatherMerge.h
file path=usr/postgres/16/include/server/executor/nodeGroup.h
file path=usr/postgres/16/include/server/executor/nodeHash.h
file path=usr/postgres/16/include/server/executor/nodeHashjoin.h
file path=usr/postgres/16/include/server/executor/nodeIncrementalSort.h
file path=usr/postgres/16/include/server/executor/nodeIndexonlyscan.h
file path=usr/postgres/16/include/server/executor/nodeIndexscan.h
file path=usr/postgres/16/include/server/executor/nodeLimit.h
file path=usr/postgres/16/include/server/executor/nodeLockRows.h
file path=usr/postgres/16/include/server/executor/nodeMaterial.h
file path=usr/postgres/16/include/server/executor/nodeMemoize.h
file path=usr/postgres/16/include/server/executor/nodeMergeAppend.h
file path=usr/postgres/16/include/server/executor/nodeMergejoin.h
file path=usr/postgres/16/include/server/executor/nodeModifyTable.h
file path=usr/postgres/16/include/server/executor/nodeNamedtuplestorescan.h
file path=usr/postgres/16/include/server/executor/nodeNestloop.h
file path=usr/postgres/16/include/server/executor/nodeProjectSet.h
file path=usr/postgres/16/include/server/executor/nodeRecursiveunion.h
file path=usr/postgres/16/include/server/executor/nodeResult.h
file path=usr/postgres/16/include/server/executor/nodeSamplescan.h
file path=usr/postgres/16/include/server/executor/nodeSeqscan.h
file path=usr/postgres/16/include/server/executor/nodeSetOp.h
file path=usr/postgres/16/include/server/executor/nodeSort.h
file path=usr/postgres/16/include/server/executor/nodeSubplan.h
file path=usr/postgres/16/include/server/executor/nodeSubqueryscan.h
file path=usr/postgres/16/include/server/executor/nodeTableFuncscan.h
file path=usr/postgres/16/include/server/executor/nodeTidrangescan.h
file path=usr/postgres/16/include/server/executor/nodeTidscan.h
file path=usr/postgres/16/include/server/executor/nodeUnique.h
file path=usr/postgres/16/include/server/executor/nodeValuesscan.h
file path=usr/postgres/16/include/server/executor/nodeWindowAgg.h
file path=usr/postgres/16/include/server/executor/nodeWorktablescan.h
file path=usr/postgres/16/include/server/executor/spi.h
file path=usr/postgres/16/include/server/executor/spi_priv.h
file path=usr/postgres/16/include/server/executor/tablefunc.h
file path=usr/postgres/16/include/server/executor/tqueue.h
file path=usr/postgres/16/include/server/executor/tstoreReceiver.h
file path=usr/postgres/16/include/server/executor/tuptable.h
file path=usr/postgres/16/include/server/extension/cube/cubedata.h
file path=usr/postgres/16/include/server/extension/hstore/hstore.h
file path=usr/postgres/16/include/server/extension/isn/isn.h
file path=usr/postgres/16/include/server/extension/ltree/ltree.h
file path=usr/postgres/16/include/server/extension/seg/segdata.h
file path=usr/postgres/16/include/server/fe_utils/archive.h
file path=usr/postgres/16/include/server/fe_utils/cancel.h
file path=usr/postgres/16/include/server/fe_utils/conditional.h
file path=usr/postgres/16/include/server/fe_utils/connect_utils.h
file path=usr/postgres/16/include/server/fe_utils/mbprint.h
file path=usr/postgres/16/include/server/fe_utils/option_utils.h
file path=usr/postgres/16/include/server/fe_utils/parallel_slot.h
file path=usr/postgres/16/include/server/fe_utils/print.h
file path=usr/postgres/16/include/server/fe_utils/psqlscan.h
file path=usr/postgres/16/include/server/fe_utils/psqlscan_int.h
file path=usr/postgres/16/include/server/fe_utils/query_utils.h
file path=usr/postgres/16/include/server/fe_utils/recovery_gen.h
file path=usr/postgres/16/include/server/fe_utils/simple_list.h
file path=usr/postgres/16/include/server/fe_utils/string_utils.h
file path=usr/postgres/16/include/server/fmgr.h
file path=usr/postgres/16/include/server/foreign/fdwapi.h
file path=usr/postgres/16/include/server/foreign/foreign.h
file path=usr/postgres/16/include/server/funcapi.h
file path=usr/postgres/16/include/server/getopt_long.h
file path=usr/postgres/16/include/server/jit/jit.h
file path=usr/postgres/16/include/server/jit/llvmjit.h
file path=usr/postgres/16/include/server/jit/llvmjit_emit.h
file path=usr/postgres/16/include/server/lib/binaryheap.h
file path=usr/postgres/16/include/server/lib/bipartite_match.h
file path=usr/postgres/16/include/server/lib/bloomfilter.h
file path=usr/postgres/16/include/server/lib/dshash.h
file path=usr/postgres/16/include/server/lib/hyperloglog.h
file path=usr/postgres/16/include/server/lib/ilist.h
file path=usr/postgres/16/include/server/lib/integerset.h
file path=usr/postgres/16/include/server/lib/knapsack.h
file path=usr/postgres/16/include/server/lib/pairingheap.h
file path=usr/postgres/16/include/server/lib/qunique.h
file path=usr/postgres/16/include/server/lib/rbtree.h
file path=usr/postgres/16/include/server/lib/simplehash.h
file path=usr/postgres/16/include/server/lib/sort_template.h
file path=usr/postgres/16/include/server/lib/stringinfo.h
file path=usr/postgres/16/include/server/libpq/auth.h
file path=usr/postgres/16/include/server/libpq/be-fsstubs.h
file path=usr/postgres/16/include/server/libpq/be-gssapi-common.h
file path=usr/postgres/16/include/server/libpq/crypt.h
file path=usr/postgres/16/include/server/libpq/hba.h
file path=usr/postgres/16/include/server/libpq/ifaddr.h
file path=usr/postgres/16/include/server/libpq/libpq-be-fe-helpers.h
file path=usr/postgres/16/include/server/libpq/libpq-be.h
file path=usr/postgres/16/include/server/libpq/libpq-fs.h
file path=usr/postgres/16/include/server/libpq/libpq.h
file path=usr/postgres/16/include/server/libpq/pqcomm.h
file path=usr/postgres/16/include/server/libpq/pqformat.h
file path=usr/postgres/16/include/server/libpq/pqmq.h
file path=usr/postgres/16/include/server/libpq/pqsignal.h
file path=usr/postgres/16/include/server/libpq/sasl.h
file path=usr/postgres/16/include/server/libpq/scram.h
file path=usr/postgres/16/include/server/mb/pg_wchar.h
file path=usr/postgres/16/include/server/mb/stringinfo_mb.h
file path=usr/postgres/16/include/server/miscadmin.h
file path=usr/postgres/16/include/server/nodes/bitmapset.h
file path=usr/postgres/16/include/server/nodes/execnodes.h
file path=usr/postgres/16/include/server/nodes/extensible.h
file path=usr/postgres/16/include/server/nodes/lockoptions.h
file path=usr/postgres/16/include/server/nodes/makefuncs.h
file path=usr/postgres/16/include/server/nodes/memnodes.h
file path=usr/postgres/16/include/server/nodes/miscnodes.h
file path=usr/postgres/16/include/server/nodes/multibitmapset.h
file path=usr/postgres/16/include/server/nodes/nodeFuncs.h
file path=usr/postgres/16/include/server/nodes/nodes.h
file path=usr/postgres/16/include/server/nodes/nodetags.h
file path=usr/postgres/16/include/server/nodes/params.h
file path=usr/postgres/16/include/server/nodes/parsenodes.h
file path=usr/postgres/16/include/server/nodes/pathnodes.h
file path=usr/postgres/16/include/server/nodes/pg_list.h
file path=usr/postgres/16/include/server/nodes/plannodes.h
file path=usr/postgres/16/include/server/nodes/primnodes.h
file path=usr/postgres/16/include/server/nodes/print.h
file path=usr/postgres/16/include/server/nodes/queryjumble.h
file path=usr/postgres/16/include/server/nodes/readfuncs.h
file path=usr/postgres/16/include/server/nodes/replnodes.h
file path=usr/postgres/16/include/server/nodes/subscripting.h
file path=usr/postgres/16/include/server/nodes/supportnodes.h
file path=usr/postgres/16/include/server/nodes/tidbitmap.h
file path=usr/postgres/16/include/server/nodes/value.h
file path=usr/postgres/16/include/server/optimizer/appendinfo.h
file path=usr/postgres/16/include/server/optimizer/clauses.h
file path=usr/postgres/16/include/server/optimizer/cost.h
file path=usr/postgres/16/include/server/optimizer/geqo.h
file path=usr/postgres/16/include/server/optimizer/geqo_copy.h
file path=usr/postgres/16/include/server/optimizer/geqo_gene.h
file path=usr/postgres/16/include/server/optimizer/geqo_misc.h
file path=usr/postgres/16/include/server/optimizer/geqo_mutation.h
file path=usr/postgres/16/include/server/optimizer/geqo_pool.h
file path=usr/postgres/16/include/server/optimizer/geqo_random.h
file path=usr/postgres/16/include/server/optimizer/geqo_recombination.h
file path=usr/postgres/16/include/server/optimizer/geqo_selection.h
file path=usr/postgres/16/include/server/optimizer/inherit.h
file path=usr/postgres/16/include/server/optimizer/joininfo.h
file path=usr/postgres/16/include/server/optimizer/optimizer.h
file path=usr/postgres/16/include/server/optimizer/orclauses.h
file path=usr/postgres/16/include/server/optimizer/paramassign.h
file path=usr/postgres/16/include/server/optimizer/pathnode.h
file path=usr/postgres/16/include/server/optimizer/paths.h
file path=usr/postgres/16/include/server/optimizer/placeholder.h
file path=usr/postgres/16/include/server/optimizer/plancat.h
file path=usr/postgres/16/include/server/optimizer/planmain.h
file path=usr/postgres/16/include/server/optimizer/planner.h
file path=usr/postgres/16/include/server/optimizer/prep.h
file path=usr/postgres/16/include/server/optimizer/restrictinfo.h
file path=usr/postgres/16/include/server/optimizer/subselect.h
file path=usr/postgres/16/include/server/optimizer/tlist.h
file path=usr/postgres/16/include/server/parser/analyze.h
file path=usr/postgres/16/include/server/parser/kwlist.h
file path=usr/postgres/16/include/server/parser/parse_agg.h
file path=usr/postgres/16/include/server/parser/parse_clause.h
file path=usr/postgres/16/include/server/parser/parse_coerce.h
file path=usr/postgres/16/include/server/parser/parse_collate.h
file path=usr/postgres/16/include/server/parser/parse_cte.h
file path=usr/postgres/16/include/server/parser/parse_enr.h
file path=usr/postgres/16/include/server/parser/parse_expr.h
file path=usr/postgres/16/include/server/parser/parse_func.h
file path=usr/postgres/16/include/server/parser/parse_merge.h
file path=usr/postgres/16/include/server/parser/parse_node.h
file path=usr/postgres/16/include/server/parser/parse_oper.h
file path=usr/postgres/16/include/server/parser/parse_param.h
file path=usr/postgres/16/include/server/parser/parse_relation.h
file path=usr/postgres/16/include/server/parser/parse_target.h
file path=usr/postgres/16/include/server/parser/parse_type.h
file path=usr/postgres/16/include/server/parser/parse_utilcmd.h
file path=usr/postgres/16/include/server/parser/parser.h
file path=usr/postgres/16/include/server/parser/parsetree.h
file path=usr/postgres/16/include/server/parser/scanner.h
file path=usr/postgres/16/include/server/parser/scansup.h
file path=usr/postgres/16/include/server/partitioning/partbounds.h
file path=usr/postgres/16/include/server/partitioning/partdefs.h
file path=usr/postgres/16/include/server/partitioning/partdesc.h
file path=usr/postgres/16/include/server/partitioning/partprune.h
file path=usr/postgres/16/include/server/pg_config-32.h
file path=usr/postgres/16/include/server/pg_config-64.h
file path=usr/postgres/16/include/server/pg_config_ext.h
file path=usr/postgres/16/include/server/pg_config_manual.h
file path=usr/postgres/16/include/server/pg_config_os.h
file path=usr/postgres/16/include/server/pg_getopt.h
file path=usr/postgres/16/include/server/pg_trace.h
file path=usr/postgres/16/include/server/pgstat.h
file path=usr/postgres/16/include/server/pgtar.h
file path=usr/postgres/16/include/server/pgtime.h
file path=usr/postgres/16/include/server/plperl.h
file path=usr/postgres/16/include/server/plperl_system.h
file path=usr/postgres/16/include/server/plpgsql.h
file path=usr/postgres/16/include/server/plpy_cursorobject.h
file path=usr/postgres/16/include/server/plpy_elog.h
file path=usr/postgres/16/include/server/plpy_exec.h
file path=usr/postgres/16/include/server/plpy_main.h
file path=usr/postgres/16/include/server/plpy_planobject.h
file path=usr/postgres/16/include/server/plpy_plpymodule.h
file path=usr/postgres/16/include/server/plpy_procedure.h
file path=usr/postgres/16/include/server/plpy_resultobject.h
file path=usr/postgres/16/include/server/plpy_spi.h
file path=usr/postgres/16/include/server/plpy_subxactobject.h
file path=usr/postgres/16/include/server/plpy_typeio.h
file path=usr/postgres/16/include/server/plpy_util.h
file path=usr/postgres/16/include/server/plpython.h
file path=usr/postgres/16/include/server/plpython_system.h
file path=usr/postgres/16/include/server/port.h
file path=usr/postgres/16/include/server/port/aix.h
file path=usr/postgres/16/include/server/port/atomics.h
file path=usr/postgres/16/include/server/port/atomics/arch-arm.h
file path=usr/postgres/16/include/server/port/atomics/arch-hppa.h
file path=usr/postgres/16/include/server/port/atomics/arch-ppc.h
file path=usr/postgres/16/include/server/port/atomics/arch-x86.h
file path=usr/postgres/16/include/server/port/atomics/fallback.h
file path=usr/postgres/16/include/server/port/atomics/generic-gcc.h
file path=usr/postgres/16/include/server/port/atomics/generic-msvc.h
file path=usr/postgres/16/include/server/port/atomics/generic-sunpro.h
file path=usr/postgres/16/include/server/port/atomics/generic.h
file path=usr/postgres/16/include/server/port/cygwin.h
file path=usr/postgres/16/include/server/port/darwin.h
file path=usr/postgres/16/include/server/port/freebsd.h
file path=usr/postgres/16/include/server/port/linux.h
file path=usr/postgres/16/include/server/port/netbsd.h
file path=usr/postgres/16/include/server/port/openbsd.h
file path=usr/postgres/16/include/server/port/pg_bitutils.h
file path=usr/postgres/16/include/server/port/pg_bswap.h
file path=usr/postgres/16/include/server/port/pg_crc32c.h
file path=usr/postgres/16/include/server/port/pg_iovec.h
file path=usr/postgres/16/include/server/port/pg_lfind.h
file path=usr/postgres/16/include/server/port/pg_pthread.h
file path=usr/postgres/16/include/server/port/simd.h
file path=usr/postgres/16/include/server/port/solaris.h
file path=usr/postgres/16/include/server/port/win32.h
file path=usr/postgres/16/include/server/port/win32/arpa/inet.h
file path=usr/postgres/16/include/server/port/win32/dlfcn.h
file path=usr/postgres/16/include/server/port/win32/grp.h
file path=usr/postgres/16/include/server/port/win32/netdb.h
file path=usr/postgres/16/include/server/port/win32/netinet/in.h
file path=usr/postgres/16/include/server/port/win32/netinet/tcp.h
file path=usr/postgres/16/include/server/port/win32/pwd.h
file path=usr/postgres/16/include/server/port/win32/sys/resource.h
file path=usr/postgres/16/include/server/port/win32/sys/select.h
file path=usr/postgres/16/include/server/port/win32/sys/socket.h
file path=usr/postgres/16/include/server/port/win32/sys/un.h
file path=usr/postgres/16/include/server/port/win32/sys/wait.h
file path=usr/postgres/16/include/server/port/win32_msvc/dirent.h
file path=usr/postgres/16/include/server/port/win32_msvc/sys/file.h
file path=usr/postgres/16/include/server/port/win32_msvc/sys/param.h
file path=usr/postgres/16/include/server/port/win32_msvc/sys/time.h
file path=usr/postgres/16/include/server/port/win32_msvc/unistd.h
file path=usr/postgres/16/include/server/port/win32_msvc/utime.h
file path=usr/postgres/16/include/server/port/win32_port.h
file path=usr/postgres/16/include/server/port/win32ntdll.h
file path=usr/postgres/16/include/server/portability/instr_time.h
file path=usr/postgres/16/include/server/portability/mem.h
file path=usr/postgres/16/include/server/postgres.h
file path=usr/postgres/16/include/server/postgres_ext.h
file path=usr/postgres/16/include/server/postgres_fe.h
file path=usr/postgres/16/include/server/postmaster/autovacuum.h
file path=usr/postgres/16/include/server/postmaster/auxprocess.h
file path=usr/postgres/16/include/server/postmaster/bgworker.h
file path=usr/postgres/16/include/server/postmaster/bgworker_internals.h
file path=usr/postgres/16/include/server/postmaster/bgwriter.h
file path=usr/postgres/16/include/server/postmaster/fork_process.h
file path=usr/postgres/16/include/server/postmaster/interrupt.h
file path=usr/postgres/16/include/server/postmaster/pgarch.h
file path=usr/postgres/16/include/server/postmaster/postmaster.h
file path=usr/postgres/16/include/server/postmaster/startup.h
file path=usr/postgres/16/include/server/postmaster/syslogger.h
file path=usr/postgres/16/include/server/postmaster/walwriter.h
file path=usr/postgres/16/include/server/ppport.h
file path=usr/postgres/16/include/server/regex/regcustom.h
file path=usr/postgres/16/include/server/regex/regerrs.h
file path=usr/postgres/16/include/server/regex/regex.h
file path=usr/postgres/16/include/server/regex/regexport.h
file path=usr/postgres/16/include/server/regex/regguts.h
file path=usr/postgres/16/include/server/replication/decode.h
file path=usr/postgres/16/include/server/replication/logical.h
file path=usr/postgres/16/include/server/replication/logicallauncher.h
file path=usr/postgres/16/include/server/replication/logicalproto.h
file path=usr/postgres/16/include/server/replication/logicalrelation.h
file path=usr/postgres/16/include/server/replication/logicalworker.h
file path=usr/postgres/16/include/server/replication/message.h
file path=usr/postgres/16/include/server/replication/origin.h
file path=usr/postgres/16/include/server/replication/output_plugin.h
file path=usr/postgres/16/include/server/replication/pgoutput.h
file path=usr/postgres/16/include/server/replication/reorderbuffer.h
file path=usr/postgres/16/include/server/replication/slot.h
file path=usr/postgres/16/include/server/replication/snapbuild.h
file path=usr/postgres/16/include/server/replication/syncrep.h
file path=usr/postgres/16/include/server/replication/walreceiver.h
file path=usr/postgres/16/include/server/replication/walsender.h
file path=usr/postgres/16/include/server/replication/walsender_private.h
file path=usr/postgres/16/include/server/replication/worker_internal.h
file path=usr/postgres/16/include/server/rewrite/prs2lock.h
file path=usr/postgres/16/include/server/rewrite/rewriteDefine.h
file path=usr/postgres/16/include/server/rewrite/rewriteHandler.h
file path=usr/postgres/16/include/server/rewrite/rewriteManip.h
file path=usr/postgres/16/include/server/rewrite/rewriteRemove.h
file path=usr/postgres/16/include/server/rewrite/rewriteSearchCycle.h
file path=usr/postgres/16/include/server/rewrite/rewriteSupport.h
file path=usr/postgres/16/include/server/rewrite/rowsecurity.h
file path=usr/postgres/16/include/server/snowball/header.h
file path=usr/postgres/16/include/server/snowball/libstemmer/api.h
file path=usr/postgres/16/include/server/snowball/libstemmer/header.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_basque.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_catalan.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_danish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_dutch.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_english.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_finnish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_french.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_german.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_indonesian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_irish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_italian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_norwegian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_porter.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_portuguese.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_spanish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_swedish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_2_hungarian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_2_romanian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_KOI8_R_russian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_arabic.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_armenian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_basque.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_catalan.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_danish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_dutch.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_english.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_finnish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_french.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_german.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_greek.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_hindi.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_hungarian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_indonesian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_irish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_italian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_lithuanian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_nepali.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_norwegian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_porter.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_portuguese.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_romanian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_russian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_serbian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_spanish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_swedish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_tamil.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_turkish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_yiddish.h
file path=usr/postgres/16/include/server/statistics/extended_stats_internal.h
file path=usr/postgres/16/include/server/statistics/statistics.h
file path=usr/postgres/16/include/server/storage/backendid.h
file path=usr/postgres/16/include/server/storage/barrier.h
file path=usr/postgres/16/include/server/storage/block.h
file path=usr/postgres/16/include/server/storage/buf.h
file path=usr/postgres/16/include/server/storage/buf_internals.h
file path=usr/postgres/16/include/server/storage/buffile.h
file path=usr/postgres/16/include/server/storage/bufmgr.h
file path=usr/postgres/16/include/server/storage/bufpage.h
file path=usr/postgres/16/include/server/storage/checksum.h
file path=usr/postgres/16/include/server/storage/checksum_impl.h
file path=usr/postgres/16/include/server/storage/condition_variable.h
file path=usr/postgres/16/include/server/storage/copydir.h
file path=usr/postgres/16/include/server/storage/dsm.h
file path=usr/postgres/16/include/server/storage/dsm_impl.h
file path=usr/postgres/16/include/server/storage/fd.h
file path=usr/postgres/16/include/server/storage/fileset.h
file path=usr/postgres/16/include/server/storage/freespace.h
file path=usr/postgres/16/include/server/storage/fsm_internals.h
file path=usr/postgres/16/include/server/storage/indexfsm.h
file path=usr/postgres/16/include/server/storage/ipc.h
file path=usr/postgres/16/include/server/storage/item.h
file path=usr/postgres/16/include/server/storage/itemid.h
file path=usr/postgres/16/include/server/storage/itemptr.h
file path=usr/postgres/16/include/server/storage/large_object.h
file path=usr/postgres/16/include/server/storage/latch.h
file path=usr/postgres/16/include/server/storage/lmgr.h
file path=usr/postgres/16/include/server/storage/lock.h
file path=usr/postgres/16/include/server/storage/lockdefs.h
file path=usr/postgres/16/include/server/storage/lwlock.h
file path=usr/postgres/16/include/server/storage/lwlocknames.h
file path=usr/postgres/16/include/server/storage/md.h
file path=usr/postgres/16/include/server/storage/off.h
file path=usr/postgres/16/include/server/storage/pg_sema.h
file path=usr/postgres/16/include/server/storage/pg_shmem.h
file path=usr/postgres/16/include/server/storage/pmsignal.h
file path=usr/postgres/16/include/server/storage/predicate.h
file path=usr/postgres/16/include/server/storage/predicate_internals.h
file path=usr/postgres/16/include/server/storage/proc.h
file path=usr/postgres/16/include/server/storage/procarray.h
file path=usr/postgres/16/include/server/storage/proclist.h
file path=usr/postgres/16/include/server/storage/proclist_types.h
file path=usr/postgres/16/include/server/storage/procsignal.h
file path=usr/postgres/16/include/server/storage/reinit.h
file path=usr/postgres/16/include/server/storage/relfilelocator.h
file path=usr/postgres/16/include/server/storage/s_lock.h
file path=usr/postgres/16/include/server/storage/sharedfileset.h
file path=usr/postgres/16/include/server/storage/shm_mq.h
file path=usr/postgres/16/include/server/storage/shm_toc.h
file path=usr/postgres/16/include/server/storage/shmem.h
file path=usr/postgres/16/include/server/storage/sinval.h
file path=usr/postgres/16/include/server/storage/sinvaladt.h
file path=usr/postgres/16/include/server/storage/smgr.h
file path=usr/postgres/16/include/server/storage/spin.h
file path=usr/postgres/16/include/server/storage/standby.h
file path=usr/postgres/16/include/server/storage/standbydefs.h
file path=usr/postgres/16/include/server/storage/sync.h
file path=usr/postgres/16/include/server/tcop/cmdtag.h
file path=usr/postgres/16/include/server/tcop/cmdtaglist.h
file path=usr/postgres/16/include/server/tcop/deparse_utility.h
file path=usr/postgres/16/include/server/tcop/dest.h
file path=usr/postgres/16/include/server/tcop/fastpath.h
file path=usr/postgres/16/include/server/tcop/pquery.h
file path=usr/postgres/16/include/server/tcop/tcopprot.h
file path=usr/postgres/16/include/server/tcop/utility.h
file path=usr/postgres/16/include/server/tsearch/dicts/regis.h
file path=usr/postgres/16/include/server/tsearch/dicts/spell.h
file path=usr/postgres/16/include/server/tsearch/ts_cache.h
file path=usr/postgres/16/include/server/tsearch/ts_locale.h
file path=usr/postgres/16/include/server/tsearch/ts_public.h
file path=usr/postgres/16/include/server/tsearch/ts_type.h
file path=usr/postgres/16/include/server/tsearch/ts_utils.h
file path=usr/postgres/16/include/server/utils/acl.h
file path=usr/postgres/16/include/server/utils/aclchk_internal.h
file path=usr/postgres/16/include/server/utils/array.h
file path=usr/postgres/16/include/server/utils/arrayaccess.h
file path=usr/postgres/16/include/server/utils/ascii.h
file path=usr/postgres/16/include/server/utils/attoptcache.h
file path=usr/postgres/16/include/server/utils/backend_progress.h
file path=usr/postgres/16/include/server/utils/backend_status.h
file path=usr/postgres/16/include/server/utils/builtins.h
file path=usr/postgres/16/include/server/utils/bytea.h
file path=usr/postgres/16/include/server/utils/cash.h
file path=usr/postgres/16/include/server/utils/catcache.h
file path=usr/postgres/16/include/server/utils/combocid.h
file path=usr/postgres/16/include/server/utils/conffiles.h
file path=usr/postgres/16/include/server/utils/date.h
file path=usr/postgres/16/include/server/utils/datetime.h
file path=usr/postgres/16/include/server/utils/datum.h
file path=usr/postgres/16/include/server/utils/dsa.h
file path=usr/postgres/16/include/server/utils/dynahash.h
file path=usr/postgres/16/include/server/utils/elog.h
file path=usr/postgres/16/include/server/utils/errcodes.h
file path=usr/postgres/16/include/server/utils/evtcache.h
file path=usr/postgres/16/include/server/utils/expandeddatum.h
file path=usr/postgres/16/include/server/utils/expandedrecord.h
file path=usr/postgres/16/include/server/utils/float.h
file path=usr/postgres/16/include/server/utils/fmgroids.h
file path=usr/postgres/16/include/server/utils/fmgrprotos.h
file path=usr/postgres/16/include/server/utils/fmgrtab.h
file path=usr/postgres/16/include/server/utils/formatting.h
file path=usr/postgres/16/include/server/utils/freepage.h
file path=usr/postgres/16/include/server/utils/geo_decls.h
file path=usr/postgres/16/include/server/utils/guc.h
file path=usr/postgres/16/include/server/utils/guc_hooks.h
file path=usr/postgres/16/include/server/utils/guc_tables.h
file path=usr/postgres/16/include/server/utils/help_config.h
file path=usr/postgres/16/include/server/utils/hsearch.h
file path=usr/postgres/16/include/server/utils/index_selfuncs.h
file path=usr/postgres/16/include/server/utils/inet.h
file path=usr/postgres/16/include/server/utils/inval.h
file path=usr/postgres/16/include/server/utils/json.h
file path=usr/postgres/16/include/server/utils/jsonb.h
file path=usr/postgres/16/include/server/utils/jsonfuncs.h
file path=usr/postgres/16/include/server/utils/jsonpath.h
file path=usr/postgres/16/include/server/utils/logtape.h
file path=usr/postgres/16/include/server/utils/lsyscache.h
file path=usr/postgres/16/include/server/utils/memdebug.h
file path=usr/postgres/16/include/server/utils/memutils.h
file path=usr/postgres/16/include/server/utils/memutils_internal.h
file path=usr/postgres/16/include/server/utils/memutils_memorychunk.h
file path=usr/postgres/16/include/server/utils/multirangetypes.h
file path=usr/postgres/16/include/server/utils/numeric.h
file path=usr/postgres/16/include/server/utils/old_snapshot.h
file path=usr/postgres/16/include/server/utils/palloc.h
file path=usr/postgres/16/include/server/utils/partcache.h
file path=usr/postgres/16/include/server/utils/pg_crc.h
file path=usr/postgres/16/include/server/utils/pg_locale.h
file path=usr/postgres/16/include/server/utils/pg_lsn.h
file path=usr/postgres/16/include/server/utils/pg_rusage.h
file path=usr/postgres/16/include/server/utils/pgstat_internal.h
file path=usr/postgres/16/include/server/utils/pidfile.h
file path=usr/postgres/16/include/server/utils/plancache.h
file path=usr/postgres/16/include/server/utils/portal.h
file path=usr/postgres/16/include/server/utils/probes.h
file path=usr/postgres/16/include/server/utils/ps_status.h
file path=usr/postgres/16/include/server/utils/queryenvironment.h
file path=usr/postgres/16/include/server/utils/rangetypes.h
file path=usr/postgres/16/include/server/utils/regproc.h
file path=usr/postgres/16/include/server/utils/rel.h
file path=usr/postgres/16/include/server/utils/relcache.h
file path=usr/postgres/16/include/server/utils/relfilenumbermap.h
file path=usr/postgres/16/include/server/utils/relmapper.h
file path=usr/postgres/16/include/server/utils/relptr.h
file path=usr/postgres/16/include/server/utils/reltrigger.h
file path=usr/postgres/16/include/server/utils/resowner.h
file path=usr/postgres/16/include/server/utils/resowner_private.h
file path=usr/postgres/16/include/server/utils/rls.h
file path=usr/postgres/16/include/server/utils/ruleutils.h
file path=usr/postgres/16/include/server/utils/sampling.h
file path=usr/postgres/16/include/server/utils/selfuncs.h
file path=usr/postgres/16/include/server/utils/sharedtuplestore.h
file path=usr/postgres/16/include/server/utils/snapmgr.h
file path=usr/postgres/16/include/server/utils/snapshot.h
file path=usr/postgres/16/include/server/utils/sortsupport.h
file path=usr/postgres/16/include/server/utils/spccache.h
file path=usr/postgres/16/include/server/utils/syscache.h
file path=usr/postgres/16/include/server/utils/timeout.h
file path=usr/postgres/16/include/server/utils/timestamp.h
file path=usr/postgres/16/include/server/utils/tuplesort.h
file path=usr/postgres/16/include/server/utils/tuplestore.h
file path=usr/postgres/16/include/server/utils/typcache.h
file path=usr/postgres/16/include/server/utils/tzparser.h
file path=usr/postgres/16/include/server/utils/usercontext.h
file path=usr/postgres/16/include/server/utils/uuid.h
file path=usr/postgres/16/include/server/utils/varbit.h
file path=usr/postgres/16/include/server/utils/varlena.h
file path=usr/postgres/16/include/server/utils/wait_event.h
file path=usr/postgres/16/include/server/utils/xid8.h
file path=usr/postgres/16/include/server/utils/xml.h
file path=usr/postgres/16/include/server/varatt.h
file path=usr/postgres/16/include/server/windowapi.h
file path=usr/postgres/16/include/sql3types.h
file path=usr/postgres/16/include/sqlca.h
file path=usr/postgres/16/include/sqlda-compat.h
file path=usr/postgres/16/include/sqlda-native.h
file path=usr/postgres/16/include/sqlda.h
file path=usr/postgres/16/lib/$(MACH64)/_int.so
file path=usr/postgres/16/lib/$(MACH64)/adminpack.so
file path=usr/postgres/16/lib/$(MACH64)/amcheck.so
file path=usr/postgres/16/lib/$(MACH64)/auth_delay.so
file path=usr/postgres/16/lib/$(MACH64)/auto_explain.so
file path=usr/postgres/16/lib/$(MACH64)/autoinc.so
file path=usr/postgres/16/lib/$(MACH64)/basebackup_to_shell.so
file path=usr/postgres/16/lib/$(MACH64)/basic_archive.so
file path=usr/postgres/16/lib/$(MACH64)/bloom.so
file path=usr/postgres/16/lib/$(MACH64)/bool_plperl.so
file path=usr/postgres/16/lib/$(MACH64)/btree_gin.so
file path=usr/postgres/16/lib/$(MACH64)/btree_gist.so
file path=usr/postgres/16/lib/$(MACH64)/citext.so
file path=usr/postgres/16/lib/$(MACH64)/cube.so
file path=usr/postgres/16/lib/$(MACH64)/cyrillic_and_mic.so
file path=usr/postgres/16/lib/$(MACH64)/dblink.so
file path=usr/postgres/16/lib/$(MACH64)/dict_int.so
file path=usr/postgres/16/lib/$(MACH64)/dict_snowball.so
file path=usr/postgres/16/lib/$(MACH64)/dict_xsyn.so
file path=usr/postgres/16/lib/$(MACH64)/earthdistance.so
file path=usr/postgres/16/lib/$(MACH64)/euc2004_sjis2004.so
file path=usr/postgres/16/lib/$(MACH64)/euc_cn_and_mic.so
file path=usr/postgres/16/lib/$(MACH64)/euc_jp_and_sjis.so
file path=usr/postgres/16/lib/$(MACH64)/euc_kr_and_mic.so
file path=usr/postgres/16/lib/$(MACH64)/euc_tw_and_big5.so
file path=usr/postgres/16/lib/$(MACH64)/file_fdw.so
file path=usr/postgres/16/lib/$(MACH64)/fuzzystrmatch.so
file path=usr/postgres/16/lib/$(MACH64)/hstore.so
file path=usr/postgres/16/lib/$(MACH64)/hstore_plperl.so
file path=usr/postgres/16/lib/$(MACH64)/hstore_plpython3.so
file path=usr/postgres/16/lib/$(MACH64)/insert_username.so
file path=usr/postgres/16/lib/$(MACH64)/isn.so
file path=usr/postgres/16/lib/$(MACH64)/jsonb_plperl.so
file path=usr/postgres/16/lib/$(MACH64)/jsonb_plpython3.so
file path=usr/postgres/16/lib/$(MACH64)/latin2_and_win1250.so
file path=usr/postgres/16/lib/$(MACH64)/latin_and_mic.so
file path=usr/postgres/16/lib/$(MACH64)/libecpg.a
link path=usr/postgres/16/lib/$(MACH64)/libecpg.so target=libecpg.so.6.16
link path=usr/postgres/16/lib/$(MACH64)/libecpg.so.6 target=libecpg.so.6.16
file path=usr/postgres/16/lib/$(MACH64)/libecpg.so.6.16
file path=usr/postgres/16/lib/$(MACH64)/libecpg_compat.a
link path=usr/postgres/16/lib/$(MACH64)/libecpg_compat.so \
    target=libecpg_compat.so.3.16
link path=usr/postgres/16/lib/$(MACH64)/libecpg_compat.so.3 \
    target=libecpg_compat.so.3.16
file path=usr/postgres/16/lib/$(MACH64)/libecpg_compat.so.3.16
file path=usr/postgres/16/lib/$(MACH64)/libpgcommon.a
file path=usr/postgres/16/lib/$(MACH64)/libpgcommon_shlib.a
file path=usr/postgres/16/lib/$(MACH64)/libpgfeutils.a
file path=usr/postgres/16/lib/$(MACH64)/libpgport.a
file path=usr/postgres/16/lib/$(MACH64)/libpgport_shlib.a
file path=usr/postgres/16/lib/$(MACH64)/libpgtypes.a
link path=usr/postgres/16/lib/$(MACH64)/libpgtypes.so target=libpgtypes.so.3.16
link path=usr/postgres/16/lib/$(MACH64)/libpgtypes.so.3 \
    target=libpgtypes.so.3.16
file path=usr/postgres/16/lib/$(MACH64)/libpgtypes.so.3.16
file path=usr/postgres/16/lib/$(MACH64)/libpq.a
link path=usr/postgres/16/lib/$(MACH64)/libpq.so target=libpq.so.5.16
link path=usr/postgres/16/lib/$(MACH64)/libpq.so.5 target=libpq.so.5.16
file path=usr/postgres/16/lib/$(MACH64)/libpq.so.5.16
file path=usr/postgres/16/lib/$(MACH64)/libpqwalreceiver.so
file path=usr/postgres/16/lib/$(MACH64)/lo.so
file path=usr/postgres/16/lib/$(MACH64)/ltree.so
file path=usr/postgres/16/lib/$(MACH64)/ltree_plpython3.so
file path=usr/postgres/16/lib/$(MACH64)/moddatetime.so
file path=usr/postgres/16/lib/$(MACH64)/old_snapshot.so
file path=usr/postgres/16/lib/$(MACH64)/pageinspect.so
file path=usr/postgres/16/lib/$(MACH64)/passwordcheck.so
file path=usr/postgres/16/lib/$(MACH64)/pg_buffercache.so
file path=usr/postgres/16/lib/$(MACH64)/pg_freespacemap.so
file path=usr/postgres/16/lib/$(MACH64)/pg_prewarm.so
file path=usr/postgres/16/lib/$(MACH64)/pg_stat_statements.so
file path=usr/postgres/16/lib/$(MACH64)/pg_surgery.so
file path=usr/postgres/16/lib/$(MACH64)/pg_trgm.so
file path=usr/postgres/16/lib/$(MACH64)/pg_visibility.so
file path=usr/postgres/16/lib/$(MACH64)/pg_walinspect.so
file path=usr/postgres/16/lib/$(MACH64)/pgcrypto.so
file path=usr/postgres/16/lib/$(MACH64)/pgoutput.so
file path=usr/postgres/16/lib/$(MACH64)/pgrowlocks.so
file path=usr/postgres/16/lib/$(MACH64)/pgstattuple.so
file path=usr/postgres/16/lib/$(MACH64)/pgxml.so
file path=usr/postgres/16/lib/$(MACH64)/pgxs/config/install-sh
file path=usr/postgres/16/lib/$(MACH64)/pgxs/config/missing
file path=usr/postgres/16/lib/$(MACH64)/pgxs/src/Makefile.global
file path=usr/postgres/16/lib/$(MACH64)/pgxs/src/Makefile.port
file path=usr/postgres/16/lib/$(MACH64)/pgxs/src/Makefile.shlib
file path=usr/postgres/16/lib/$(MACH64)/pgxs/src/makefiles/pgxs.mk
file path=usr/postgres/16/lib/$(MACH64)/pgxs/src/nls-global.mk
file path=usr/postgres/16/lib/$(MACH64)/pgxs/src/test/isolation/isolationtester
file path=usr/postgres/16/lib/$(MACH64)/pgxs/src/test/isolation/pg_isolation_regress
file path=usr/postgres/16/lib/$(MACH64)/pgxs/src/test/regress/pg_regress
file path=usr/postgres/16/lib/$(MACH64)/pkgconfig/libecpg.pc
file path=usr/postgres/16/lib/$(MACH64)/pkgconfig/libecpg_compat.pc
file path=usr/postgres/16/lib/$(MACH64)/pkgconfig/libpgtypes.pc
file path=usr/postgres/16/lib/$(MACH64)/pkgconfig/libpq.pc
file path=usr/postgres/16/lib/$(MACH64)/plperl.so
file path=usr/postgres/16/lib/$(MACH64)/plpgsql.so
file path=usr/postgres/16/lib/$(MACH64)/plpython3.so
file path=usr/postgres/16/lib/$(MACH64)/pltcl.so
file path=usr/postgres/16/lib/$(MACH64)/postgres_fdw.so
file path=usr/postgres/16/lib/$(MACH64)/refint.so
file path=usr/postgres/16/lib/$(MACH64)/regress.so
file path=usr/postgres/16/lib/$(MACH64)/regress/data/agg.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/array.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/constrf.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/constro.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/dept.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/desc.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/emp.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/hash.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/jsonb.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/onek.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/person.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/real_city.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/rect.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/streets.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/stud_emp.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/student.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/tenk.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/tsearch.data
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/advisory_lock.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/aggregates.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/alter_generic.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/alter_operator.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/alter_table.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/amutils.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/arrays.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/async.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/bit.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/bitmapops.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/boolean.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/box.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/brin.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/brin_bloom.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/brin_multi.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/btree_index.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/case.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/char.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/char_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/char_2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/circle.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/cluster.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/collate.icu.utf8.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/collate.icu.utf8_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/collate.linux.utf8.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/collate.linux.utf8_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/collate.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/collate.windows.win1252.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/collate.windows.win1252_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/combocid.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/comments.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/compression.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/compression_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/constraints.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/conversion.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/copy.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/copy2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/copydml.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/copyselect.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_aggregate.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_am.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_cast.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_function_c.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_function_sql.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_index.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_index_spgist.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_misc.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_operator.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_procedure.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_role.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_schema.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_table.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_table_like.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_type.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_view.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/date.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/dbsize.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/delete.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/dependency.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/domain.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/drop_if_exists.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/drop_operator.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/enum.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/equivclass.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/errors.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/event_trigger.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/explain.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/expressions.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/fast_default.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/float4-misrounded-input.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/float4.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/float8.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/foreign_data.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/foreign_key.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/functional_deps.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/generated.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/geometry.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/gin.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/gist.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/groupingsets.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/guc.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/hash_func.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/hash_index.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/hash_part.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/horology.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/identity.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/incremental_sort.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/index_including.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/index_including_gist.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/indexing.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/indirect_toast.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/inet.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/infinite_recurse.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/infinite_recurse_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/inherit.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/init_privs.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/insert.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/insert_conflict.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/int2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/int4.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/int8.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/interval.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/join.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/join_hash.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/json.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/json_encoding.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/json_encoding_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/json_encoding_2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/jsonb.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/jsonb_jsonpath.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/jsonpath.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/jsonpath_encoding.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/jsonpath_encoding_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/jsonpath_encoding_2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/largeobject.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/largeobject_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/limit.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/line.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/lock.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/lseg.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/macaddr.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/macaddr8.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/matview.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/md5.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/memoize.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/merge.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/misc.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/misc_functions.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/misc_sanity.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/money.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/multirangetypes.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/mvcc.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/name.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/namespace.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/numeric.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/numeric_big.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/numerology.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/object_address.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/oid.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/oidjoins.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/opr_sanity.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/partition_aggregate.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/partition_info.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/partition_join.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/partition_prune.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/password.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/path.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/pg_lsn.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/plancache.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/plpgsql.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/point.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/polygon.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/polymorphism.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/portals.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/portals_p2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/prepare.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/prepared_xacts.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/prepared_xacts_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/privileges.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/psql.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/psql_crosstab.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/publication.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/random.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/rangefuncs.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/rangetypes.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/regex.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/regproc.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/reindex_catalog.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/reloptions.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/replica_identity.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/returning.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/roleattributes.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/rowsecurity.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/rowtypes.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/rules.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/sanity_check.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/security_label.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_distinct.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_distinct_on.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_having.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_having_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_having_2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_implicit.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_implicit_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_implicit_2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_into.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_parallel.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_views.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/sequence.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/spgist.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/sqljson.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/stats.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/stats_ext.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/strings.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/subscription.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/subselect.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/sysviews.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tablesample.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tablespace.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/temp.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/test_setup.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/text.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tid.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tidrangescan.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tidscan.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/time.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/timestamp.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/timestamptz.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/timetz.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/transactions.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/triggers.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/truncate.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tsdicts.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tsearch.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tsrf.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tstypes.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tuplesort.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/txid.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/type_sanity.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/typed_table.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/unicode.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/unicode_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/union.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/updatable_views.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/update.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/uuid.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/vacuum.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/vacuum_parallel.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/varchar.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/varchar_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/varchar_2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/window.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/with.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/write_parallel.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/xid.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/xml.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/xml_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/xml_2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/xmlmap.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/xmlmap_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/parallel_schedule
file path=usr/postgres/16/lib/$(MACH64)/regress/resultmap
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/advisory_lock.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/aggregates.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/alter_generic.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/alter_operator.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/alter_table.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/amutils.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/arrays.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/async.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/bit.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/bitmapops.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/boolean.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/box.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/brin.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/brin_bloom.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/brin_multi.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/btree_index.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/case.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/char.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/circle.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/cluster.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/collate.icu.utf8.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/collate.linux.utf8.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/collate.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/collate.windows.win1252.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/combocid.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/comments.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/compression.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/constraints.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/conversion.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/copy.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/copy2.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/copydml.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/copyselect.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_aggregate.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_am.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_cast.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_function_c.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_function_sql.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_index.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_index_spgist.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_misc.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_operator.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_procedure.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_role.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_schema.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_table.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_table_like.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_type.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_view.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/date.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/dbsize.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/delete.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/dependency.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/domain.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/drop_if_exists.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/drop_operator.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/enum.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/equivclass.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/errors.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/event_trigger.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/explain.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/expressions.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/fast_default.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/float4.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/float8.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/foreign_data.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/foreign_key.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/functional_deps.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/generated.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/geometry.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/gin.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/gist.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/groupingsets.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/guc.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/hash_func.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/hash_index.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/hash_part.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/horology.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/identity.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/incremental_sort.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/index_including.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/index_including_gist.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/indexing.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/indirect_toast.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/inet.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/infinite_recurse.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/inherit.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/init_privs.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/insert.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/insert_conflict.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/int2.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/int4.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/int8.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/interval.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/join.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/join_hash.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/json.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/json_encoding.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/jsonb.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/jsonb_jsonpath.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/jsonpath.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/jsonpath_encoding.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/largeobject.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/limit.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/line.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/lock.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/lseg.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/macaddr.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/macaddr8.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/matview.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/md5.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/memoize.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/merge.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/misc.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/misc_functions.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/misc_sanity.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/money.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/multirangetypes.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/mvcc.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/name.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/namespace.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/numeric.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/numeric_big.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/numerology.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/object_address.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/oid.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/oidjoins.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/opr_sanity.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/partition_aggregate.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/partition_info.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/partition_join.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/partition_prune.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/password.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/path.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/pg_lsn.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/plancache.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/plpgsql.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/point.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/polygon.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/polymorphism.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/portals.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/portals_p2.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/prepare.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/prepared_xacts.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/privileges.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/psql.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/psql_crosstab.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/publication.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/random.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/rangefuncs.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/rangetypes.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/regex.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/regproc.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/reindex_catalog.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/reloptions.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/replica_identity.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/returning.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/roleattributes.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/rowsecurity.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/rowtypes.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/rules.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/sanity_check.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/security_label.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/select.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/select_distinct.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/select_distinct_on.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/select_having.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/select_implicit.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/select_into.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/select_parallel.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/select_views.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/sequence.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/spgist.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/sqljson.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/stats.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/stats_ext.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/strings.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/subscription.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/subselect.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/sysviews.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tablesample.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tablespace.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/temp.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/test_setup.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/text.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tid.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tidrangescan.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tidscan.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/time.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/timestamp.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/timestamptz.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/timetz.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/transactions.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/triggers.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/truncate.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tsdicts.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tsearch.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tsrf.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tstypes.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tuplesort.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/txid.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/type_sanity.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/typed_table.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/unicode.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/union.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/updatable_views.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/update.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/uuid.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/vacuum.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/vacuum_parallel.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/varchar.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/window.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/with.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/write_parallel.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/xid.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/xml.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/xmlmap.sql
file path=usr/postgres/16/lib/$(MACH64)/seg.so
file path=usr/postgres/16/lib/$(MACH64)/sslinfo.so
file path=usr/postgres/16/lib/$(MACH64)/tablefunc.so
file path=usr/postgres/16/lib/$(MACH64)/tcn.so
file path=usr/postgres/16/lib/$(MACH64)/test_decoding.so
file path=usr/postgres/16/lib/$(MACH64)/tsm_system_rows.so
file path=usr/postgres/16/lib/$(MACH64)/tsm_system_time.so
file path=usr/postgres/16/lib/$(MACH64)/unaccent.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_big5.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_cyrillic.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_euc2004.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_euc_cn.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_euc_jp.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_euc_kr.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_euc_tw.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_gb18030.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_gbk.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_iso8859.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_iso8859_1.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_johab.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_sjis.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_sjis2004.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_uhc.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_win.so
file path=usr/postgres/16/lib/$(MACH64)/uuid-ossp.so
file path=usr/postgres/16/lib/_int.so
file path=usr/postgres/16/lib/adminpack.so
file path=usr/postgres/16/lib/amcheck.so
file path=usr/postgres/16/lib/auth_delay.so
file path=usr/postgres/16/lib/auto_explain.so
file path=usr/postgres/16/lib/autoinc.so
file path=usr/postgres/16/lib/basebackup_to_shell.so
file path=usr/postgres/16/lib/basic_archive.so
file path=usr/postgres/16/lib/bloom.so
file path=usr/postgres/16/lib/btree_gin.so
file path=usr/postgres/16/lib/btree_gist.so
file path=usr/postgres/16/lib/citext.so
file path=usr/postgres/16/lib/cube.so
file path=usr/postgres/16/lib/cyrillic_and_mic.so
file path=usr/postgres/16/lib/dblink.so
file path=usr/postgres/16/lib/dict_int.so
file path=usr/postgres/16/lib/dict_snowball.so
file path=usr/postgres/16/lib/dict_xsyn.so
file path=usr/postgres/16/lib/earthdistance.so
file path=usr/postgres/16/lib/euc2004_sjis2004.so
file path=usr/postgres/16/lib/euc_cn_and_mic.so
file path=usr/postgres/16/lib/euc_jp_and_sjis.so
file path=usr/postgres/16/lib/euc_kr_and_mic.so
file path=usr/postgres/16/lib/euc_tw_and_big5.so
file path=usr/postgres/16/lib/file_fdw.so
file path=usr/postgres/16/lib/fuzzystrmatch.so
file path=usr/postgres/16/lib/hstore.so
file path=usr/postgres/16/lib/insert_username.so
file path=usr/postgres/16/lib/isn.so
file path=usr/postgres/16/lib/latin2_and_win1250.so
file path=usr/postgres/16/lib/latin_and_mic.so
file path=usr/postgres/16/lib/libecpg.a
link path=usr/postgres/16/lib/libecpg.so target=libecpg.so.6.16
link path=usr/postgres/16/lib/libecpg.so.6 target=libecpg.so.6.16
file path=usr/postgres/16/lib/libecpg.so.6.16
file path=usr/postgres/16/lib/libecpg_compat.a
link path=usr/postgres/16/lib/libecpg_compat.so target=libecpg_compat.so.3.16
link path=usr/postgres/16/lib/libecpg_compat.so.3 target=libecpg_compat.so.3.16
file path=usr/postgres/16/lib/libecpg_compat.so.3.16
file path=usr/postgres/16/lib/libpgcommon.a
file path=usr/postgres/16/lib/libpgcommon_shlib.a
file path=usr/postgres/16/lib/libpgfeutils.a
file path=usr/postgres/16/lib/libpgport.a
file path=usr/postgres/16/lib/libpgport_shlib.a
file path=usr/postgres/16/lib/libpgtypes.a
link path=usr/postgres/16/lib/libpgtypes.so target=libpgtypes.so.3.16
link path=usr/postgres/16/lib/libpgtypes.so.3 target=libpgtypes.so.3.16
file path=usr/postgres/16/lib/libpgtypes.so.3.16
file path=usr/postgres/16/lib/libpq.a
link path=usr/postgres/16/lib/libpq.so target=libpq.so.5.16
link path=usr/postgres/16/lib/libpq.so.5 target=libpq.so.5.16
file path=usr/postgres/16/lib/libpq.so.5.16
file path=usr/postgres/16/lib/libpqwalreceiver.so
file path=usr/postgres/16/lib/lo.so
file path=usr/postgres/16/lib/ltree.so
file path=usr/postgres/16/lib/moddatetime.so
file path=usr/postgres/16/lib/old_snapshot.so
file path=usr/postgres/16/lib/pageinspect.so
file path=usr/postgres/16/lib/passwordcheck.so
file path=usr/postgres/16/lib/pg_buffercache.so
file path=usr/postgres/16/lib/pg_freespacemap.so
file path=usr/postgres/16/lib/pg_prewarm.so
file path=usr/postgres/16/lib/pg_stat_statements.so
file path=usr/postgres/16/lib/pg_surgery.so
file path=usr/postgres/16/lib/pg_trgm.so
file path=usr/postgres/16/lib/pg_visibility.so
file path=usr/postgres/16/lib/pg_walinspect.so
file path=usr/postgres/16/lib/pgcrypto.so
file path=usr/postgres/16/lib/pgoutput.so
file path=usr/postgres/16/lib/pgrowlocks.so
file path=usr/postgres/16/lib/pgstattuple.so
file path=usr/postgres/16/lib/pgxml.so
file path=usr/postgres/16/lib/pgxs/config/install-sh
file path=usr/postgres/16/lib/pgxs/config/missing
file path=usr/postgres/16/lib/pgxs/src/Makefile.global
file path=usr/postgres/16/lib/pgxs/src/Makefile.port
file path=usr/postgres/16/lib/pgxs/src/Makefile.shlib
file path=usr/postgres/16/lib/pgxs/src/makefiles/pgxs.mk
file path=usr/postgres/16/lib/pgxs/src/nls-global.mk
file path=usr/postgres/16/lib/pgxs/src/test/isolation/isolationtester
file path=usr/postgres/16/lib/pgxs/src/test/isolation/pg_isolation_regress
file path=usr/postgres/16/lib/pgxs/src/test/regress/pg_regress
file path=usr/postgres/16/lib/pkgconfig/libecpg.pc
file path=usr/postgres/16/lib/pkgconfig/libecpg_compat.pc
file path=usr/postgres/16/lib/pkgconfig/libpgtypes.pc
file path=usr/postgres/16/lib/pkgconfig/libpq.pc
file path=usr/postgres/16/lib/plpgsql.so
file path=usr/postgres/16/lib/postgres_fdw.so
file path=usr/postgres/16/lib/refint.so
file path=usr/postgres/16/lib/seg.so
file path=usr/postgres/16/lib/sslinfo.so
file path=usr/postgres/16/lib/tablefunc.so
file path=usr/postgres/16/lib/tcn.so
file path=usr/postgres/16/lib/test_decoding.so
file path=usr/postgres/16/lib/tsm_system_rows.so
file path=usr/postgres/16/lib/tsm_system_time.so
file path=usr/postgres/16/lib/unaccent.so
file path=usr/postgres/16/lib/utf8_and_big5.so
file path=usr/postgres/16/lib/utf8_and_cyrillic.so
file path=usr/postgres/16/lib/utf8_and_euc2004.so
file path=usr/postgres/16/lib/utf8_and_euc_cn.so
file path=usr/postgres/16/lib/utf8_and_euc_jp.so
file path=usr/postgres/16/lib/utf8_and_euc_kr.so
file path=usr/postgres/16/lib/utf8_and_euc_tw.so
file path=usr/postgres/16/lib/utf8_and_gb18030.so
file path=usr/postgres/16/lib/utf8_and_gbk.so
file path=usr/postgres/16/lib/utf8_and_iso8859.so
file path=usr/postgres/16/lib/utf8_and_iso8859_1.so
file path=usr/postgres/16/lib/utf8_and_johab.so
file path=usr/postgres/16/lib/utf8_and_sjis.so
file path=usr/postgres/16/lib/utf8_and_sjis2004.so
file path=usr/postgres/16/lib/utf8_and_uhc.so
file path=usr/postgres/16/lib/utf8_and_win.so
file path=usr/postgres/16/lib/uuid-ossp.so
file path=usr/postgres/16/man/man1/clusterdb.1
file path=usr/postgres/16/man/man1/createdb.1
file path=usr/postgres/16/man/man1/createuser.1
file path=usr/postgres/16/man/man1/dropdb.1
file path=usr/postgres/16/man/man1/dropuser.1
file path=usr/postgres/16/man/man1/ecpg.1
file path=usr/postgres/16/man/man1/initdb.1
file path=usr/postgres/16/man/man1/oid2name.1
file path=usr/postgres/16/man/man1/pg_amcheck.1
file path=usr/postgres/16/man/man1/pg_archivecleanup.1
file path=usr/postgres/16/man/man1/pg_basebackup.1
file path=usr/postgres/16/man/man1/pg_checksums.1
file path=usr/postgres/16/man/man1/pg_config.1
file path=usr/postgres/16/man/man1/pg_controldata.1
file path=usr/postgres/16/man/man1/pg_ctl.1
file path=usr/postgres/16/man/man1/pg_dump.1
file path=usr/postgres/16/man/man1/pg_dumpall.1
file path=usr/postgres/16/man/man1/pg_isready.1
file path=usr/postgres/16/man/man1/pg_receivewal.1
file path=usr/postgres/16/man/man1/pg_recvlogical.1
file path=usr/postgres/16/man/man1/pg_resetwal.1
file path=usr/postgres/16/man/man1/pg_restore.1
file path=usr/postgres/16/man/man1/pg_rewind.1
file path=usr/postgres/16/man/man1/pg_test_fsync.1
file path=usr/postgres/16/man/man1/pg_test_timing.1
file path=usr/postgres/16/man/man1/pg_upgrade.1
file path=usr/postgres/16/man/man1/pg_verifybackup.1
file path=usr/postgres/16/man/man1/pg_waldump.1
file path=usr/postgres/16/man/man1/pgbench.1
file path=usr/postgres/16/man/man1/postgres.1
file path=usr/postgres/16/man/man1/psql.1
file path=usr/postgres/16/man/man1/reindexdb.1
file path=usr/postgres/16/man/man1/vacuumdb.1
file path=usr/postgres/16/man/man1/vacuumlo.1
file path=usr/postgres/16/man/man3/SPI_commit.3
file path=usr/postgres/16/man/man3/SPI_commit_and_chain.3
file path=usr/postgres/16/man/man3/SPI_connect.3
file path=usr/postgres/16/man/man3/SPI_connect_ext.3
file path=usr/postgres/16/man/man3/SPI_copytuple.3
file path=usr/postgres/16/man/man3/SPI_cursor_close.3
file path=usr/postgres/16/man/man3/SPI_cursor_fetch.3
file path=usr/postgres/16/man/man3/SPI_cursor_find.3
file path=usr/postgres/16/man/man3/SPI_cursor_move.3
file path=usr/postgres/16/man/man3/SPI_cursor_open.3
file path=usr/postgres/16/man/man3/SPI_cursor_open_with_args.3
file path=usr/postgres/16/man/man3/SPI_cursor_open_with_paramlist.3
file path=usr/postgres/16/man/man3/SPI_cursor_parse_open.3
file path=usr/postgres/16/man/man3/SPI_exec.3
file path=usr/postgres/16/man/man3/SPI_execp.3
file path=usr/postgres/16/man/man3/SPI_execute.3
file path=usr/postgres/16/man/man3/SPI_execute_extended.3
file path=usr/postgres/16/man/man3/SPI_execute_plan.3
file path=usr/postgres/16/man/man3/SPI_execute_plan_extended.3
file path=usr/postgres/16/man/man3/SPI_execute_plan_with_paramlist.3
file path=usr/postgres/16/man/man3/SPI_execute_with_args.3
file path=usr/postgres/16/man/man3/SPI_finish.3
file path=usr/postgres/16/man/man3/SPI_fname.3
file path=usr/postgres/16/man/man3/SPI_fnumber.3
file path=usr/postgres/16/man/man3/SPI_freeplan.3
file path=usr/postgres/16/man/man3/SPI_freetuple.3
file path=usr/postgres/16/man/man3/SPI_freetuptable.3
file path=usr/postgres/16/man/man3/SPI_getargcount.3
file path=usr/postgres/16/man/man3/SPI_getargtypeid.3
file path=usr/postgres/16/man/man3/SPI_getbinval.3
file path=usr/postgres/16/man/man3/SPI_getnspname.3
file path=usr/postgres/16/man/man3/SPI_getrelname.3
file path=usr/postgres/16/man/man3/SPI_gettype.3
file path=usr/postgres/16/man/man3/SPI_gettypeid.3
file path=usr/postgres/16/man/man3/SPI_getvalue.3
file path=usr/postgres/16/man/man3/SPI_is_cursor_plan.3
file path=usr/postgres/16/man/man3/SPI_keepplan.3
file path=usr/postgres/16/man/man3/SPI_modifytuple.3
file path=usr/postgres/16/man/man3/SPI_palloc.3
file path=usr/postgres/16/man/man3/SPI_pfree.3
file path=usr/postgres/16/man/man3/SPI_prepare.3
file path=usr/postgres/16/man/man3/SPI_prepare_cursor.3
file path=usr/postgres/16/man/man3/SPI_prepare_extended.3
file path=usr/postgres/16/man/man3/SPI_prepare_params.3
file path=usr/postgres/16/man/man3/SPI_register_relation.3
file path=usr/postgres/16/man/man3/SPI_register_trigger_data.3
file path=usr/postgres/16/man/man3/SPI_repalloc.3
file path=usr/postgres/16/man/man3/SPI_result_code_string.3
file path=usr/postgres/16/man/man3/SPI_returntuple.3
file path=usr/postgres/16/man/man3/SPI_rollback.3
file path=usr/postgres/16/man/man3/SPI_rollback_and_chain.3
file path=usr/postgres/16/man/man3/SPI_saveplan.3
file path=usr/postgres/16/man/man3/SPI_scroll_cursor_fetch.3
file path=usr/postgres/16/man/man3/SPI_scroll_cursor_move.3
file path=usr/postgres/16/man/man3/SPI_start_transaction.3
file path=usr/postgres/16/man/man3/SPI_unregister_relation.3
file path=usr/postgres/16/man/man3/dblink.3
file path=usr/postgres/16/man/man3/dblink_build_sql_delete.3
file path=usr/postgres/16/man/man3/dblink_build_sql_insert.3
file path=usr/postgres/16/man/man3/dblink_build_sql_update.3
file path=usr/postgres/16/man/man3/dblink_cancel_query.3
file path=usr/postgres/16/man/man3/dblink_close.3
file path=usr/postgres/16/man/man3/dblink_connect.3
file path=usr/postgres/16/man/man3/dblink_connect_u.3
file path=usr/postgres/16/man/man3/dblink_disconnect.3
file path=usr/postgres/16/man/man3/dblink_error_message.3
file path=usr/postgres/16/man/man3/dblink_exec.3
file path=usr/postgres/16/man/man3/dblink_fetch.3
file path=usr/postgres/16/man/man3/dblink_get_connections.3
file path=usr/postgres/16/man/man3/dblink_get_notify.3
file path=usr/postgres/16/man/man3/dblink_get_pkey.3
file path=usr/postgres/16/man/man3/dblink_get_result.3
file path=usr/postgres/16/man/man3/dblink_is_busy.3
file path=usr/postgres/16/man/man3/dblink_open.3
file path=usr/postgres/16/man/man3/dblink_send_query.3
file path=usr/postgres/16/man/man5/ABORT.5sql
file path=usr/postgres/16/man/man5/ALTER_AGGREGATE.5sql
file path=usr/postgres/16/man/man5/ALTER_COLLATION.5sql
file path=usr/postgres/16/man/man5/ALTER_CONVERSION.5sql
file path=usr/postgres/16/man/man5/ALTER_DATABASE.5sql
file path=usr/postgres/16/man/man5/ALTER_DEFAULT_PRIVILEGES.5sql
file path=usr/postgres/16/man/man5/ALTER_DOMAIN.5sql
file path=usr/postgres/16/man/man5/ALTER_EVENT_TRIGGER.5sql
file path=usr/postgres/16/man/man5/ALTER_EXTENSION.5sql
file path=usr/postgres/16/man/man5/ALTER_FOREIGN_DATA_WRAPPER.5sql
file path=usr/postgres/16/man/man5/ALTER_FOREIGN_TABLE.5sql
file path=usr/postgres/16/man/man5/ALTER_FUNCTION.5sql
file path=usr/postgres/16/man/man5/ALTER_GROUP.5sql
file path=usr/postgres/16/man/man5/ALTER_INDEX.5sql
file path=usr/postgres/16/man/man5/ALTER_LANGUAGE.5sql
file path=usr/postgres/16/man/man5/ALTER_LARGE_OBJECT.5sql
file path=usr/postgres/16/man/man5/ALTER_MATERIALIZED_VIEW.5sql
file path=usr/postgres/16/man/man5/ALTER_OPERATOR.5sql
file path=usr/postgres/16/man/man5/ALTER_OPERATOR_CLASS.5sql
file path=usr/postgres/16/man/man5/ALTER_OPERATOR_FAMILY.5sql
file path=usr/postgres/16/man/man5/ALTER_POLICY.5sql
file path=usr/postgres/16/man/man5/ALTER_PROCEDURE.5sql
file path=usr/postgres/16/man/man5/ALTER_PUBLICATION.5sql
file path=usr/postgres/16/man/man5/ALTER_ROLE.5sql
file path=usr/postgres/16/man/man5/ALTER_ROUTINE.5sql
file path=usr/postgres/16/man/man5/ALTER_RULE.5sql
file path=usr/postgres/16/man/man5/ALTER_SCHEMA.5sql
file path=usr/postgres/16/man/man5/ALTER_SEQUENCE.5sql
file path=usr/postgres/16/man/man5/ALTER_SERVER.5sql
file path=usr/postgres/16/man/man5/ALTER_STATISTICS.5sql
file path=usr/postgres/16/man/man5/ALTER_SUBSCRIPTION.5sql
file path=usr/postgres/16/man/man5/ALTER_SYSTEM.5sql
file path=usr/postgres/16/man/man5/ALTER_TABLE.5sql
file path=usr/postgres/16/man/man5/ALTER_TABLESPACE.5sql
file path=usr/postgres/16/man/man5/ALTER_TEXT_SEARCH_CONFIGURATION.5sql
file path=usr/postgres/16/man/man5/ALTER_TEXT_SEARCH_DICTIONARY.5sql
file path=usr/postgres/16/man/man5/ALTER_TEXT_SEARCH_PARSER.5sql
file path=usr/postgres/16/man/man5/ALTER_TEXT_SEARCH_TEMPLATE.5sql
file path=usr/postgres/16/man/man5/ALTER_TRIGGER.5sql
file path=usr/postgres/16/man/man5/ALTER_TYPE.5sql
file path=usr/postgres/16/man/man5/ALTER_USER.5sql
file path=usr/postgres/16/man/man5/ALTER_USER_MAPPING.5sql
file path=usr/postgres/16/man/man5/ALTER_VIEW.5sql
file path=usr/postgres/16/man/man5/ANALYZE.5sql
file path=usr/postgres/16/man/man5/BEGIN.5sql
file path=usr/postgres/16/man/man5/CALL.5sql
file path=usr/postgres/16/man/man5/CHECKPOINT.5sql
file path=usr/postgres/16/man/man5/CLOSE.5sql
file path=usr/postgres/16/man/man5/CLUSTER.5sql
file path=usr/postgres/16/man/man5/COMMENT.5sql
file path=usr/postgres/16/man/man5/COMMIT.5sql
file path=usr/postgres/16/man/man5/COMMIT_PREPARED.5sql
file path=usr/postgres/16/man/man5/COPY.5sql
file path=usr/postgres/16/man/man5/CREATE_ACCESS_METHOD.5sql
file path=usr/postgres/16/man/man5/CREATE_AGGREGATE.5sql
file path=usr/postgres/16/man/man5/CREATE_CAST.5sql
file path=usr/postgres/16/man/man5/CREATE_COLLATION.5sql
file path=usr/postgres/16/man/man5/CREATE_CONVERSION.5sql
file path=usr/postgres/16/man/man5/CREATE_DATABASE.5sql
file path=usr/postgres/16/man/man5/CREATE_DOMAIN.5sql
file path=usr/postgres/16/man/man5/CREATE_EVENT_TRIGGER.5sql
file path=usr/postgres/16/man/man5/CREATE_EXTENSION.5sql
file path=usr/postgres/16/man/man5/CREATE_FOREIGN_DATA_WRAPPER.5sql
file path=usr/postgres/16/man/man5/CREATE_FOREIGN_TABLE.5sql
file path=usr/postgres/16/man/man5/CREATE_FUNCTION.5sql
file path=usr/postgres/16/man/man5/CREATE_GROUP.5sql
file path=usr/postgres/16/man/man5/CREATE_INDEX.5sql
file path=usr/postgres/16/man/man5/CREATE_LANGUAGE.5sql
file path=usr/postgres/16/man/man5/CREATE_MATERIALIZED_VIEW.5sql
file path=usr/postgres/16/man/man5/CREATE_OPERATOR.5sql
file path=usr/postgres/16/man/man5/CREATE_OPERATOR_CLASS.5sql
file path=usr/postgres/16/man/man5/CREATE_OPERATOR_FAMILY.5sql
file path=usr/postgres/16/man/man5/CREATE_POLICY.5sql
file path=usr/postgres/16/man/man5/CREATE_PROCEDURE.5sql
file path=usr/postgres/16/man/man5/CREATE_PUBLICATION.5sql
file path=usr/postgres/16/man/man5/CREATE_ROLE.5sql
file path=usr/postgres/16/man/man5/CREATE_RULE.5sql
file path=usr/postgres/16/man/man5/CREATE_SCHEMA.5sql
file path=usr/postgres/16/man/man5/CREATE_SEQUENCE.5sql
file path=usr/postgres/16/man/man5/CREATE_SERVER.5sql
file path=usr/postgres/16/man/man5/CREATE_STATISTICS.5sql
file path=usr/postgres/16/man/man5/CREATE_SUBSCRIPTION.5sql
file path=usr/postgres/16/man/man5/CREATE_TABLE.5sql
file path=usr/postgres/16/man/man5/CREATE_TABLESPACE.5sql
file path=usr/postgres/16/man/man5/CREATE_TABLE_AS.5sql
file path=usr/postgres/16/man/man5/CREATE_TEXT_SEARCH_CONFIGURATION.5sql
file path=usr/postgres/16/man/man5/CREATE_TEXT_SEARCH_DICTIONARY.5sql
file path=usr/postgres/16/man/man5/CREATE_TEXT_SEARCH_PARSER.5sql
file path=usr/postgres/16/man/man5/CREATE_TEXT_SEARCH_TEMPLATE.5sql
file path=usr/postgres/16/man/man5/CREATE_TRANSFORM.5sql
file path=usr/postgres/16/man/man5/CREATE_TRIGGER.5sql
file path=usr/postgres/16/man/man5/CREATE_TYPE.5sql
file path=usr/postgres/16/man/man5/CREATE_USER.5sql
file path=usr/postgres/16/man/man5/CREATE_USER_MAPPING.5sql
file path=usr/postgres/16/man/man5/CREATE_VIEW.5sql
file path=usr/postgres/16/man/man5/DEALLOCATE.5sql
file path=usr/postgres/16/man/man5/DECLARE.5sql
file path=usr/postgres/16/man/man5/DELETE.5sql
file path=usr/postgres/16/man/man5/DISCARD.5sql
file path=usr/postgres/16/man/man5/DO.5sql
file path=usr/postgres/16/man/man5/DROP_ACCESS_METHOD.5sql
file path=usr/postgres/16/man/man5/DROP_AGGREGATE.5sql
file path=usr/postgres/16/man/man5/DROP_CAST.5sql
file path=usr/postgres/16/man/man5/DROP_COLLATION.5sql
file path=usr/postgres/16/man/man5/DROP_CONVERSION.5sql
file path=usr/postgres/16/man/man5/DROP_DATABASE.5sql
file path=usr/postgres/16/man/man5/DROP_DOMAIN.5sql
file path=usr/postgres/16/man/man5/DROP_EVENT_TRIGGER.5sql
file path=usr/postgres/16/man/man5/DROP_EXTENSION.5sql
file path=usr/postgres/16/man/man5/DROP_FOREIGN_DATA_WRAPPER.5sql
file path=usr/postgres/16/man/man5/DROP_FOREIGN_TABLE.5sql
file path=usr/postgres/16/man/man5/DROP_FUNCTION.5sql
file path=usr/postgres/16/man/man5/DROP_GROUP.5sql
file path=usr/postgres/16/man/man5/DROP_INDEX.5sql
file path=usr/postgres/16/man/man5/DROP_LANGUAGE.5sql
file path=usr/postgres/16/man/man5/DROP_MATERIALIZED_VIEW.5sql
file path=usr/postgres/16/man/man5/DROP_OPERATOR.5sql
file path=usr/postgres/16/man/man5/DROP_OPERATOR_CLASS.5sql
file path=usr/postgres/16/man/man5/DROP_OPERATOR_FAMILY.5sql
file path=usr/postgres/16/man/man5/DROP_OWNED.5sql
file path=usr/postgres/16/man/man5/DROP_POLICY.5sql
file path=usr/postgres/16/man/man5/DROP_PROCEDURE.5sql
file path=usr/postgres/16/man/man5/DROP_PUBLICATION.5sql
file path=usr/postgres/16/man/man5/DROP_ROLE.5sql
file path=usr/postgres/16/man/man5/DROP_ROUTINE.5sql
file path=usr/postgres/16/man/man5/DROP_RULE.5sql
file path=usr/postgres/16/man/man5/DROP_SCHEMA.5sql
file path=usr/postgres/16/man/man5/DROP_SEQUENCE.5sql
file path=usr/postgres/16/man/man5/DROP_SERVER.5sql
file path=usr/postgres/16/man/man5/DROP_STATISTICS.5sql
file path=usr/postgres/16/man/man5/DROP_SUBSCRIPTION.5sql
file path=usr/postgres/16/man/man5/DROP_TABLE.5sql
file path=usr/postgres/16/man/man5/DROP_TABLESPACE.5sql
file path=usr/postgres/16/man/man5/DROP_TEXT_SEARCH_CONFIGURATION.5sql
file path=usr/postgres/16/man/man5/DROP_TEXT_SEARCH_DICTIONARY.5sql
file path=usr/postgres/16/man/man5/DROP_TEXT_SEARCH_PARSER.5sql
file path=usr/postgres/16/man/man5/DROP_TEXT_SEARCH_TEMPLATE.5sql
file path=usr/postgres/16/man/man5/DROP_TRANSFORM.5sql
file path=usr/postgres/16/man/man5/DROP_TRIGGER.5sql
file path=usr/postgres/16/man/man5/DROP_TYPE.5sql
file path=usr/postgres/16/man/man5/DROP_USER.5sql
file path=usr/postgres/16/man/man5/DROP_USER_MAPPING.5sql
file path=usr/postgres/16/man/man5/DROP_VIEW.5sql
file path=usr/postgres/16/man/man5/END.5sql
file path=usr/postgres/16/man/man5/EXECUTE.5sql
file path=usr/postgres/16/man/man5/EXPLAIN.5sql
file path=usr/postgres/16/man/man5/FETCH.5sql
file path=usr/postgres/16/man/man5/GRANT.5sql
file path=usr/postgres/16/man/man5/IMPORT_FOREIGN_SCHEMA.5sql
file path=usr/postgres/16/man/man5/INSERT.5sql
file path=usr/postgres/16/man/man5/LISTEN.5sql
file path=usr/postgres/16/man/man5/LOAD.5sql
file path=usr/postgres/16/man/man5/LOCK.5sql
file path=usr/postgres/16/man/man5/MERGE.5sql
file path=usr/postgres/16/man/man5/MOVE.5sql
file path=usr/postgres/16/man/man5/NOTIFY.5sql
file path=usr/postgres/16/man/man5/PREPARE.5sql
file path=usr/postgres/16/man/man5/PREPARE_TRANSACTION.5sql
file path=usr/postgres/16/man/man5/REASSIGN_OWNED.5sql
file path=usr/postgres/16/man/man5/REFRESH_MATERIALIZED_VIEW.5sql
file path=usr/postgres/16/man/man5/REINDEX.5sql
file path=usr/postgres/16/man/man5/RELEASE_SAVEPOINT.5sql
file path=usr/postgres/16/man/man5/RESET.5sql
file path=usr/postgres/16/man/man5/REVOKE.5sql
file path=usr/postgres/16/man/man5/ROLLBACK.5sql
file path=usr/postgres/16/man/man5/ROLLBACK_PREPARED.5sql
file path=usr/postgres/16/man/man5/ROLLBACK_TO_SAVEPOINT.5sql
file path=usr/postgres/16/man/man5/SAVEPOINT.5sql
file path=usr/postgres/16/man/man5/SECURITY_LABEL.5sql
file path=usr/postgres/16/man/man5/SELECT.5sql
file path=usr/postgres/16/man/man5/SELECT_INTO.5sql
file path=usr/postgres/16/man/man5/SET.5sql
file path=usr/postgres/16/man/man5/SET_CONSTRAINTS.5sql
file path=usr/postgres/16/man/man5/SET_ROLE.5sql
file path=usr/postgres/16/man/man5/SET_SESSION_AUTHORIZATION.5sql
file path=usr/postgres/16/man/man5/SET_TRANSACTION.5sql
file path=usr/postgres/16/man/man5/SHOW.5sql
file path=usr/postgres/16/man/man5/START_TRANSACTION.5sql
file path=usr/postgres/16/man/man5/TABLE.5sql
file path=usr/postgres/16/man/man5/TRUNCATE.5sql
file path=usr/postgres/16/man/man5/UNLISTEN.5sql
file path=usr/postgres/16/man/man5/UPDATE.5sql
file path=usr/postgres/16/man/man5/VACUUM.5sql
file path=usr/postgres/16/man/man5/VALUES.5sql
file path=usr/postgres/16/man/man5/WITH.5sql
file path=usr/postgres/16/share/errcodes.txt
file path=usr/postgres/16/share/extension/adminpack--1.0--1.1.sql
file path=usr/postgres/16/share/extension/adminpack--1.0.sql
file path=usr/postgres/16/share/extension/adminpack--1.1--2.0.sql
file path=usr/postgres/16/share/extension/adminpack--2.0--2.1.sql
file path=usr/postgres/16/share/extension/adminpack.control
file path=usr/postgres/16/share/extension/amcheck--1.0--1.1.sql
file path=usr/postgres/16/share/extension/amcheck--1.0.sql
file path=usr/postgres/16/share/extension/amcheck--1.1--1.2.sql
file path=usr/postgres/16/share/extension/amcheck--1.2--1.3.sql
file path=usr/postgres/16/share/extension/amcheck.control
file path=usr/postgres/16/share/extension/autoinc--1.0.sql
file path=usr/postgres/16/share/extension/autoinc.control
file path=usr/postgres/16/share/extension/bloom--1.0.sql
file path=usr/postgres/16/share/extension/bloom.control
file path=usr/postgres/16/share/extension/bool_plperl--1.0.sql
file path=usr/postgres/16/share/extension/bool_plperl.control
file path=usr/postgres/16/share/extension/bool_plperlu--1.0.sql
file path=usr/postgres/16/share/extension/bool_plperlu.control
file path=usr/postgres/16/share/extension/btree_gin--1.0--1.1.sql
file path=usr/postgres/16/share/extension/btree_gin--1.0.sql
file path=usr/postgres/16/share/extension/btree_gin--1.1--1.2.sql
file path=usr/postgres/16/share/extension/btree_gin--1.2--1.3.sql
file path=usr/postgres/16/share/extension/btree_gin.control
file path=usr/postgres/16/share/extension/btree_gist--1.0--1.1.sql
file path=usr/postgres/16/share/extension/btree_gist--1.1--1.2.sql
file path=usr/postgres/16/share/extension/btree_gist--1.2--1.3.sql
file path=usr/postgres/16/share/extension/btree_gist--1.2.sql
file path=usr/postgres/16/share/extension/btree_gist--1.3--1.4.sql
file path=usr/postgres/16/share/extension/btree_gist--1.4--1.5.sql
file path=usr/postgres/16/share/extension/btree_gist--1.5--1.6.sql
file path=usr/postgres/16/share/extension/btree_gist--1.6--1.7.sql
file path=usr/postgres/16/share/extension/btree_gist.control
file path=usr/postgres/16/share/extension/citext--1.0--1.1.sql
file path=usr/postgres/16/share/extension/citext--1.1--1.2.sql
file path=usr/postgres/16/share/extension/citext--1.2--1.3.sql
file path=usr/postgres/16/share/extension/citext--1.3--1.4.sql
file path=usr/postgres/16/share/extension/citext--1.4--1.5.sql
file path=usr/postgres/16/share/extension/citext--1.4.sql
file path=usr/postgres/16/share/extension/citext--1.5--1.6.sql
file path=usr/postgres/16/share/extension/citext.control
file path=usr/postgres/16/share/extension/cube--1.0--1.1.sql
file path=usr/postgres/16/share/extension/cube--1.1--1.2.sql
file path=usr/postgres/16/share/extension/cube--1.2--1.3.sql
file path=usr/postgres/16/share/extension/cube--1.2.sql
file path=usr/postgres/16/share/extension/cube--1.3--1.4.sql
file path=usr/postgres/16/share/extension/cube--1.4--1.5.sql
file path=usr/postgres/16/share/extension/cube.control
file path=usr/postgres/16/share/extension/dblink--1.0--1.1.sql
file path=usr/postgres/16/share/extension/dblink--1.1--1.2.sql
file path=usr/postgres/16/share/extension/dblink--1.2.sql
file path=usr/postgres/16/share/extension/dblink.control
file path=usr/postgres/16/share/extension/dict_int--1.0.sql
file path=usr/postgres/16/share/extension/dict_int.control
file path=usr/postgres/16/share/extension/dict_xsyn--1.0.sql
file path=usr/postgres/16/share/extension/dict_xsyn.control
file path=usr/postgres/16/share/extension/earthdistance--1.0--1.1.sql
file path=usr/postgres/16/share/extension/earthdistance--1.1.sql
file path=usr/postgres/16/share/extension/earthdistance.control
file path=usr/postgres/16/share/extension/file_fdw--1.0.sql
file path=usr/postgres/16/share/extension/file_fdw.control
file path=usr/postgres/16/share/extension/fuzzystrmatch--1.0--1.1.sql
file path=usr/postgres/16/share/extension/fuzzystrmatch--1.1--1.2.sql
file path=usr/postgres/16/share/extension/fuzzystrmatch--1.1.sql
file path=usr/postgres/16/share/extension/fuzzystrmatch.control
file path=usr/postgres/16/share/extension/hstore--1.1--1.2.sql
file path=usr/postgres/16/share/extension/hstore--1.2--1.3.sql
file path=usr/postgres/16/share/extension/hstore--1.3--1.4.sql
file path=usr/postgres/16/share/extension/hstore--1.4--1.5.sql
file path=usr/postgres/16/share/extension/hstore--1.4.sql
file path=usr/postgres/16/share/extension/hstore--1.5--1.6.sql
file path=usr/postgres/16/share/extension/hstore--1.6--1.7.sql
file path=usr/postgres/16/share/extension/hstore--1.7--1.8.sql
file path=usr/postgres/16/share/extension/hstore.control
file path=usr/postgres/16/share/extension/hstore_plperl--1.0.sql
file path=usr/postgres/16/share/extension/hstore_plperl.control
file path=usr/postgres/16/share/extension/hstore_plperlu--1.0.sql
file path=usr/postgres/16/share/extension/hstore_plperlu.control
file path=usr/postgres/16/share/extension/hstore_plpython3u--1.0.sql
file path=usr/postgres/16/share/extension/hstore_plpython3u.control
file path=usr/postgres/16/share/extension/insert_username--1.0.sql
file path=usr/postgres/16/share/extension/insert_username.control
file path=usr/postgres/16/share/extension/intagg--1.0--1.1.sql
file path=usr/postgres/16/share/extension/intagg--1.1.sql
file path=usr/postgres/16/share/extension/intagg.control
file path=usr/postgres/16/share/extension/intarray--1.0--1.1.sql
file path=usr/postgres/16/share/extension/intarray--1.1--1.2.sql
file path=usr/postgres/16/share/extension/intarray--1.2--1.3.sql
file path=usr/postgres/16/share/extension/intarray--1.2.sql
file path=usr/postgres/16/share/extension/intarray--1.3--1.4.sql
file path=usr/postgres/16/share/extension/intarray--1.4--1.5.sql
file path=usr/postgres/16/share/extension/intarray.control
file path=usr/postgres/16/share/extension/isn--1.0--1.1.sql
file path=usr/postgres/16/share/extension/isn--1.1--1.2.sql
file path=usr/postgres/16/share/extension/isn--1.1.sql
file path=usr/postgres/16/share/extension/isn.control
file path=usr/postgres/16/share/extension/jsonb_plperl--1.0.sql
file path=usr/postgres/16/share/extension/jsonb_plperl.control
file path=usr/postgres/16/share/extension/jsonb_plperlu--1.0.sql
file path=usr/postgres/16/share/extension/jsonb_plperlu.control
file path=usr/postgres/16/share/extension/jsonb_plpython3u--1.0.sql
file path=usr/postgres/16/share/extension/jsonb_plpython3u.control
file path=usr/postgres/16/share/extension/lo--1.0--1.1.sql
file path=usr/postgres/16/share/extension/lo--1.1.sql
file path=usr/postgres/16/share/extension/lo.control
file path=usr/postgres/16/share/extension/ltree--1.0--1.1.sql
file path=usr/postgres/16/share/extension/ltree--1.1--1.2.sql
file path=usr/postgres/16/share/extension/ltree--1.1.sql
file path=usr/postgres/16/share/extension/ltree.control
file path=usr/postgres/16/share/extension/ltree_plpython3u--1.0.sql
file path=usr/postgres/16/share/extension/ltree_plpython3u.control
file path=usr/postgres/16/share/extension/moddatetime--1.0.sql
file path=usr/postgres/16/share/extension/moddatetime.control
file path=usr/postgres/16/share/extension/old_snapshot--1.0.sql
file path=usr/postgres/16/share/extension/old_snapshot.control
file path=usr/postgres/16/share/extension/pageinspect--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pageinspect--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pageinspect--1.10--1.11.sql
file path=usr/postgres/16/share/extension/pageinspect--1.11--1.12.sql
file path=usr/postgres/16/share/extension/pageinspect--1.2--1.3.sql
file path=usr/postgres/16/share/extension/pageinspect--1.3--1.4.sql
file path=usr/postgres/16/share/extension/pageinspect--1.4--1.5.sql
file path=usr/postgres/16/share/extension/pageinspect--1.5--1.6.sql
file path=usr/postgres/16/share/extension/pageinspect--1.5.sql
file path=usr/postgres/16/share/extension/pageinspect--1.6--1.7.sql
file path=usr/postgres/16/share/extension/pageinspect--1.7--1.8.sql
file path=usr/postgres/16/share/extension/pageinspect--1.8--1.9.sql
file path=usr/postgres/16/share/extension/pageinspect--1.9--1.10.sql
file path=usr/postgres/16/share/extension/pageinspect.control
file path=usr/postgres/16/share/extension/pg_buffercache--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pg_buffercache--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pg_buffercache--1.2--1.3.sql
file path=usr/postgres/16/share/extension/pg_buffercache--1.2.sql
file path=usr/postgres/16/share/extension/pg_buffercache--1.3--1.4.sql
file path=usr/postgres/16/share/extension/pg_buffercache.control
file path=usr/postgres/16/share/extension/pg_freespacemap--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pg_freespacemap--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pg_freespacemap--1.1.sql
file path=usr/postgres/16/share/extension/pg_freespacemap.control
file path=usr/postgres/16/share/extension/pg_prewarm--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pg_prewarm--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pg_prewarm--1.1.sql
file path=usr/postgres/16/share/extension/pg_prewarm.control
file path=usr/postgres/16/share/extension/pg_stat_statements--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.2--1.3.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.3--1.4.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.4--1.5.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.4.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.5--1.6.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.6--1.7.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.7--1.8.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.8--1.9.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.9--1.10.sql
file path=usr/postgres/16/share/extension/pg_stat_statements.control
file path=usr/postgres/16/share/extension/pg_surgery--1.0.sql
file path=usr/postgres/16/share/extension/pg_surgery.control
file path=usr/postgres/16/share/extension/pg_trgm--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pg_trgm--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pg_trgm--1.2--1.3.sql
file path=usr/postgres/16/share/extension/pg_trgm--1.3--1.4.sql
file path=usr/postgres/16/share/extension/pg_trgm--1.3.sql
file path=usr/postgres/16/share/extension/pg_trgm--1.4--1.5.sql
file path=usr/postgres/16/share/extension/pg_trgm--1.5--1.6.sql
file path=usr/postgres/16/share/extension/pg_trgm.control
file path=usr/postgres/16/share/extension/pg_visibility--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pg_visibility--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pg_visibility--1.1.sql
file path=usr/postgres/16/share/extension/pg_visibility.control
file path=usr/postgres/16/share/extension/pg_walinspect--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pg_walinspect--1.0.sql
file path=usr/postgres/16/share/extension/pg_walinspect.control
file path=usr/postgres/16/share/extension/pgcrypto--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pgcrypto--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pgcrypto--1.2--1.3.sql
file path=usr/postgres/16/share/extension/pgcrypto--1.3.sql
file path=usr/postgres/16/share/extension/pgcrypto.control
file path=usr/postgres/16/share/extension/pgrowlocks--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pgrowlocks--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pgrowlocks--1.2.sql
file path=usr/postgres/16/share/extension/pgrowlocks.control
file path=usr/postgres/16/share/extension/pgstattuple--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pgstattuple--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pgstattuple--1.2--1.3.sql
file path=usr/postgres/16/share/extension/pgstattuple--1.3--1.4.sql
file path=usr/postgres/16/share/extension/pgstattuple--1.4--1.5.sql
file path=usr/postgres/16/share/extension/pgstattuple--1.4.sql
file path=usr/postgres/16/share/extension/pgstattuple.control
file path=usr/postgres/16/share/extension/plperl--1.0.sql
file path=usr/postgres/16/share/extension/plperl.control
file path=usr/postgres/16/share/extension/plperlu--1.0.sql
file path=usr/postgres/16/share/extension/plperlu.control
file path=usr/postgres/16/share/extension/plpgsql--1.0.sql
file path=usr/postgres/16/share/extension/plpgsql.control
file path=usr/postgres/16/share/extension/plpython3u--1.0.sql
file path=usr/postgres/16/share/extension/plpython3u.control
file path=usr/postgres/16/share/extension/pltcl--1.0.sql
file path=usr/postgres/16/share/extension/pltcl.control
file path=usr/postgres/16/share/extension/pltclu--1.0.sql
file path=usr/postgres/16/share/extension/pltclu.control
file path=usr/postgres/16/share/extension/postgres_fdw--1.0--1.1.sql
file path=usr/postgres/16/share/extension/postgres_fdw--1.0.sql
file path=usr/postgres/16/share/extension/postgres_fdw.control
file path=usr/postgres/16/share/extension/refint--1.0.sql
file path=usr/postgres/16/share/extension/refint.control
file path=usr/postgres/16/share/extension/seg--1.0--1.1.sql
file path=usr/postgres/16/share/extension/seg--1.1--1.2.sql
file path=usr/postgres/16/share/extension/seg--1.1.sql
file path=usr/postgres/16/share/extension/seg--1.2--1.3.sql
file path=usr/postgres/16/share/extension/seg--1.3--1.4.sql
file path=usr/postgres/16/share/extension/seg.control
file path=usr/postgres/16/share/extension/sslinfo--1.0--1.1.sql
file path=usr/postgres/16/share/extension/sslinfo--1.1--1.2.sql
file path=usr/postgres/16/share/extension/sslinfo--1.2.sql
file path=usr/postgres/16/share/extension/sslinfo.control
file path=usr/postgres/16/share/extension/tablefunc--1.0.sql
file path=usr/postgres/16/share/extension/tablefunc.control
file path=usr/postgres/16/share/extension/tcn--1.0.sql
file path=usr/postgres/16/share/extension/tcn.control
file path=usr/postgres/16/share/extension/tsm_system_rows--1.0.sql
file path=usr/postgres/16/share/extension/tsm_system_rows.control
file path=usr/postgres/16/share/extension/tsm_system_time--1.0.sql
file path=usr/postgres/16/share/extension/tsm_system_time.control
file path=usr/postgres/16/share/extension/unaccent--1.0--1.1.sql
file path=usr/postgres/16/share/extension/unaccent--1.1.sql
file path=usr/postgres/16/share/extension/unaccent.control
file path=usr/postgres/16/share/extension/uuid-ossp--1.0--1.1.sql
file path=usr/postgres/16/share/extension/uuid-ossp--1.1.sql
file path=usr/postgres/16/share/extension/uuid-ossp.control
file path=usr/postgres/16/share/extension/xml2--1.0--1.1.sql
file path=usr/postgres/16/share/extension/xml2--1.1.sql
file path=usr/postgres/16/share/extension/xml2.control
file path=usr/postgres/16/share/information_schema.sql
file path=usr/postgres/16/share/pg_hba.conf.sample
file path=usr/postgres/16/share/pg_ident.conf.sample
file path=usr/postgres/16/share/pg_service.conf.sample
file path=usr/postgres/16/share/postgres.bki
file path=usr/postgres/16/share/postgresql.conf.sample
file path=usr/postgres/16/share/psqlrc.sample
file path=usr/postgres/16/share/snowball_create.sql
file path=usr/postgres/16/share/sql_features.txt
file path=usr/postgres/16/share/system_constraints.sql
file path=usr/postgres/16/share/system_functions.sql
file path=usr/postgres/16/share/system_views.sql
file path=usr/postgres/16/share/timezonesets/Africa.txt
file path=usr/postgres/16/share/timezonesets/America.txt
file path=usr/postgres/16/share/timezonesets/Antarctica.txt
file path=usr/postgres/16/share/timezonesets/Asia.txt
file path=usr/postgres/16/share/timezonesets/Atlantic.txt
file path=usr/postgres/16/share/timezonesets/Australia
file path=usr/postgres/16/share/timezonesets/Australia.txt
file path=usr/postgres/16/share/timezonesets/Default
file path=usr/postgres/16/share/timezonesets/Etc.txt
file path=usr/postgres/16/share/timezonesets/Europe.txt
file path=usr/postgres/16/share/timezonesets/India
file path=usr/postgres/16/share/timezonesets/Indian.txt
file path=usr/postgres/16/share/timezonesets/Pacific.txt
file path=usr/postgres/16/share/tsearch_data/danish.stop
file path=usr/postgres/16/share/tsearch_data/dutch.stop
file path=usr/postgres/16/share/tsearch_data/english.stop
file path=usr/postgres/16/share/tsearch_data/finnish.stop
file path=usr/postgres/16/share/tsearch_data/french.stop
file path=usr/postgres/16/share/tsearch_data/german.stop
file path=usr/postgres/16/share/tsearch_data/hungarian.stop
file path=usr/postgres/16/share/tsearch_data/hunspell_sample.affix
file path=usr/postgres/16/share/tsearch_data/hunspell_sample_long.affix
file path=usr/postgres/16/share/tsearch_data/hunspell_sample_long.dict
file path=usr/postgres/16/share/tsearch_data/hunspell_sample_num.affix
file path=usr/postgres/16/share/tsearch_data/hunspell_sample_num.dict
file path=usr/postgres/16/share/tsearch_data/ispell_sample.affix
file path=usr/postgres/16/share/tsearch_data/ispell_sample.dict
file path=usr/postgres/16/share/tsearch_data/italian.stop
file path=usr/postgres/16/share/tsearch_data/nepali.stop
file path=usr/postgres/16/share/tsearch_data/norwegian.stop
file path=usr/postgres/16/share/tsearch_data/portuguese.stop
file path=usr/postgres/16/share/tsearch_data/russian.stop
file path=usr/postgres/16/share/tsearch_data/spanish.stop
file path=usr/postgres/16/share/tsearch_data/swedish.stop
file path=usr/postgres/16/share/tsearch_data/synonym_sample.syn
file path=usr/postgres/16/share/tsearch_data/thesaurus_sample.ths
file path=usr/postgres/16/share/tsearch_data/turkish.stop
file path=usr/postgres/16/share/tsearch_data/unaccent.rules
file path=usr/postgres/16/share/tsearch_data/xsyn_sample.rules
file path=usr/share/locale/cs/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/de/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/de/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/de/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/de/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/de/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/de/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/de/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/de/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/de/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/el/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/el/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/el/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/el/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/el/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/el/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/el/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/el/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/es/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/es/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/es/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/es/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/es/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/es/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/es/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/es/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/es/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/he/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/he/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/he/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/he/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/he/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/he/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/he/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/he/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/id/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/it/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/it/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/it/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/it/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/it/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/it/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/it/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/it/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/it/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/nb/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/ro/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/ro/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/ro/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/ro/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/ta/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/psql-16.mo
components/database/postgresql-16/patches/01-dism.patch
New file
@@ -0,0 +1,90 @@
On Solaris/illumos we want to use DISM or ISM e.g. Dynamic Intimate Shared Memory or Intimate Shared Memory
which is available via sysv SHM only. This patch changes the default shared memory system to be sysv
on Solaris/illumos based systems e.g. which have SHM_SHARE_MMU (which translates to ISM) and when SHM_PAGEABLE
is defined in sys/shm.h we set the default PG_SHMAT_FLAGS to SHM_PAGEABLE which will lead to DISM being
used. The patch to the postgresql.conf.sample is to show that sysv is the default for Solaris and the
ordering is changed as by default it used to be mmap and posix for the defaults and you could always
override things using the sysv setting.
--- postgresql-16.2/src/include/portability/mem.h.orig    2024-02-05 22:41:37.000000000 +0100
+++ postgresql-16.2/src/include/portability/mem.h    2024-03-02 16:06:23.000890754 +0100
@@ -14,11 +14,15 @@
 #define IPCProtection    (0600)    /* access/modify by user only */
+#ifdef SHM_PAGEABLE                    /* use dynamic intimate shared memory on Solaris */
+#define PG_SHMAT_FLAGS                 SHM_PAGEABLE
+#else
 #ifdef SHM_SHARE_MMU            /* use intimate shared memory on Solaris */
 #define PG_SHMAT_FLAGS            SHM_SHARE_MMU
 #else
 #define PG_SHMAT_FLAGS            0
 #endif
+#endif
 /* Linux prefers MAP_ANONYMOUS, but the flag is called MAP_ANON on other systems. */
 #ifndef MAP_ANONYMOUS
--- postgresql-16.2/src/include/storage/pg_shmem.h.orig    2024-02-05 22:41:37.000000000 +0100
+++ postgresql-16.2/src/include/storage/pg_shmem.h    2024-03-02 16:06:23.001219767 +0100
@@ -70,7 +70,9 @@
 #endif
 extern PGDLLIMPORT void *UsedShmemSegAddr;
-#if !defined(WIN32) && !defined(EXEC_BACKEND)
+#if defined(SHM_SHARE_MMU)
+#define DEFAULT_SHARED_MEMORY_TYPE SHMEM_TYPE_SYSV
+#elif !defined(WIN32) && !defined(EXEC_BACKEND)
 #define DEFAULT_SHARED_MEMORY_TYPE SHMEM_TYPE_MMAP
 #elif !defined(WIN32)
 #define DEFAULT_SHARED_MEMORY_TYPE SHMEM_TYPE_SYSV
--- postgresql-16.2/src/include/storage/dsm_impl.h.orig    2024-02-05 22:41:37.000000000 +0100
+++ postgresql-16.2/src/include/storage/dsm_impl.h    2024-03-02 16:06:23.001054296 +0100
@@ -19,6 +19,13 @@
 #define DSM_IMPL_WINDOWS        3
 #define DSM_IMPL_MMAP            4
+#ifdef HAVE_SYS_SHM_H
+ /*
+ * For SHM_SHARE_MMU.
+ */
+#include <sys/shm.h>
+#endif
+
 /*
  * Determine which dynamic shared memory implementations will be supported
  * on this platform, and which one will be the default.
@@ -34,6 +41,11 @@
 #define USE_DSM_SYSV
 #ifndef DEFAULT_DYNAMIC_SHARED_MEMORY_TYPE
 #define DEFAULT_DYNAMIC_SHARED_MEMORY_TYPE        DSM_IMPL_SYSV
+#else
+#ifdef SHM_SHARE_MMU
+#undef DEFAULT_DYNAMIC_SHARED_MEMORY_TYPE
+#define DEFAULT_DYNAMIC_SHARED_MEMORY_TYPE      DSM_IMPL_SYSV
+#endif
 #endif
 #define USE_DSM_MMAP
 #endif
--- postgresql-16.2/src/backend/utils/misc/postgresql.conf.sample.orig    2024-02-05 22:41:37.000000000 +0100
+++ postgresql-16.2/src/backend/utils/misc/postgresql.conf.sample    2024-03-02 16:06:23.000657525 +0100
@@ -144,16 +144,16 @@
 #autovacuum_work_mem = -1        # min 1MB, or -1 to use maintenance_work_mem
 #logical_decoding_work_mem = 64MB    # min 64kB
 #max_stack_depth = 2MB            # min 100kB
-#shared_memory_type = mmap        # the default is the first option
+#shared_memory_type = sysv        # the default is the first option
                     # supported by the operating system:
-                    #   mmap
                     #   sysv
+                    #   mmap
                     #   windows
                     # (change requires restart)
-#dynamic_shared_memory_type = posix    # the default is usually the first option
+#dynamic_shared_memory_type = sysv    # the default is usually the first option
                     # supported by the operating system:
-                    #   posix
                     #   sysv
+                    #   posix
                     #   windows
                     #   mmap
                     # (change requires restart)
components/database/postgresql-16/patches/02-plpython_rpath.patch
New file
@@ -0,0 +1,33 @@
--- postgresql-16.2/src/pl/plpython/Makefile.orig    2024-02-05 22:41:37.000000000 +0100
+++ postgresql-16.2/src/pl/plpython/Makefile    2024-03-02 16:18:33.733576065 +0100
@@ -13,7 +13,7 @@
 override CPPFLAGS := -I. -I$(srcdir) $(python_includespec) $(CPPFLAGS)
-rpathdir = $(python_libdir)
+#rpathdir = $(python_libdir)
 PGFILEDESC = "PL/Python - procedural language"
--- postgresql-16.2/contrib/ltree_plpython/Makefile.orig    2024-02-05 22:41:37.000000000 +0100
+++ postgresql-16.2/contrib/ltree_plpython/Makefile    2024-03-02 16:18:33.733371926 +0100
@@ -31,7 +31,7 @@
 # ... see silliness in plpython Makefile ...
 SHLIB_LINK_INTERNAL += $(sort $(wildcard ../../src/pl/plpython/libpython*.a))
 else
-rpathdir = $(python_libdir)
+#rpathdir = $(python_libdir)
 SHLIB_LINK += $(python_libspec) $(python_additional_libs)
 endif
--- postgresql-16.2/contrib/hstore_plpython/Makefile.orig    2024-02-05 22:41:37.000000000 +0100
+++ postgresql-16.2/contrib/hstore_plpython/Makefile    2024-03-02 16:18:33.733750445 +0100
@@ -31,7 +31,7 @@
 # ... see silliness in plpython Makefile ...
 SHLIB_LINK_INTERNAL += $(sort $(wildcard ../../src/pl/plpython/libpython*.a))
 else
-rpathdir = $(python_libdir)
+#rpathdir = $(python_libdir)
 SHLIB_LINK += $(python_libspec) $(python_additional_libs)
 endif
components/database/postgresql-16/patches/03-pam_conv.patch
New file
@@ -0,0 +1,23 @@
see: https://www.illumos.org/issues/15657
struct pam_message in struct pam_conv is not const in illumos
--- postgresql-16.2/src/backend/libpq/auth.c.orig    2024-02-05 22:41:37.000000000 +0100
+++ postgresql-16.2/src/backend/libpq/auth.c    2024-03-02 16:24:39.679182959 +0100
@@ -96,7 +96,7 @@
 #define PGSQL_PAM_SERVICE "postgresql"    /* Service name passed to PAM */
 static int    CheckPAMAuth(Port *port, const char *user, const char *password);
-static int    pam_passwd_conv_proc(int num_msg, const struct pam_message **msg,
+static int    pam_passwd_conv_proc(int num_msg, struct pam_message **msg,
                                  struct pam_response **resp, void *appdata_ptr);
 static struct pam_conv pam_passw_conv = {
@@ -1910,7 +1910,7 @@
  */
 static int
-pam_passwd_conv_proc(int num_msg, const struct pam_message **msg,
+pam_passwd_conv_proc(int num_msg, struct pam_message **msg,
                      struct pam_response **resp, void *appdata_ptr)
 {
     const char *passwd;
components/database/postgresql-16/pkg5
New file
@@ -0,0 +1,30 @@
{
    "dependencies": [
        "SUNWcs",
        "database/postgres-common",
        "library/icu-74",
        "library/libedit",
        "library/libxml2",
        "library/libxslt",
        "library/lz4",
        "library/security/openssl-31",
        "library/zlib",
        "runtime/perl-538",
        "runtime/python-39",
        "runtime/tcl-8",
        "shell/ksh93",
        "system/library",
        "system/library/math"
    ],
    "fmris": [
        "database/postgres-16",
        "database/postgres-16/contrib",
        "database/postgres-16/developer",
        "database/postgres-16/documentation",
        "database/postgres-16/language-bindings",
        "database/postgres-16/library",
        "database/postgres-16/tests",
        "service/database/postgres-16"
    ],
    "name": "postgresql"
}
components/database/postgresql-16/postgresql16-contrib.p5m
New file
@@ -0,0 +1,397 @@
#
# 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 2024 Andreas Wacknitz
#
set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)/contrib@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.human-version value=$(HUMAN_VERSION)
set name=pkg.summary value="PostgreSQL 16 community contributed tools not part of core product"
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)'
link path=usr/bin/oid2name target=../postgres/16/bin/oid2name mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/pg_archivecleanup target=../postgres/16/bin/pg_archivecleanup mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/pg_test_fsync target=../postgres/16/bin/pg_test_fsync mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/pg_test_timing target=../postgres/16/bin/pg_test_timing mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/pg_waldump target=../postgres/16/bin/pg_waldump mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/pgbench target=../postgres/16/bin/pgbench mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/vacuumlo target=../postgres/16/bin/vacuumlo mediator=postgres mediator-implementation=postgresql mediator-version=16
# man pages mediators
link path=usr/share/man/man1/oid2name.1 target=../../../postgres/16/man/man1/oid2name.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/pg_amcheck.1 target=../../../postgres/16/man/man1/pg_amcheck.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/pg_archivecleanup.1 target=../../../postgres/16/man/man1/pg_archivecleanup.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/pg_test_fsync.1 target=../../../postgres/16/man/man1/pg_test_fsync.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/pg_test_timing.1 target=../../../postgres/16/man/man1/pg_test_timing.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/pg_verifybackup.1 target=../../../postgres/16/man/man1/pg_verifybackup.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/pg_waldump.1 target=../../../postgres/16/man/man1/pg_waldump.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/pgbench.1 target=../../../postgres/16/man/man1/pgbench.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/vacuumlo.1 target=../../../postgres/16/man/man1/vacuumlo.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
file path=usr/postgres/16/bin/oid2name
file path=usr/postgres/16/bin/pg_amcheck
file path=usr/postgres/16/bin/pg_archivecleanup
file path=usr/postgres/16/bin/pg_test_fsync
file path=usr/postgres/16/bin/pg_test_timing
file path=usr/postgres/16/bin/pg_verifybackup
file path=usr/postgres/16/bin/pg_waldump
file path=usr/postgres/16/bin/pgbench
file path=usr/postgres/16/bin/vacuumlo
file path=usr/postgres/16/lib/$(MACH64)/_int.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/adminpack.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/amcheck.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/auth_delay.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/auto_explain.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/autoinc.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/bloom.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/bool_plperl.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/btree_gin.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/btree_gist.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/citext.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/cube.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/dblink.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/dict_int.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/dict_xsyn.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/earthdistance.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/file_fdw.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/fuzzystrmatch.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/hstore.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/hstore_plperl.so
file path=usr/postgres/16/lib/$(MACH64)/hstore_plpython3.so
file path=usr/postgres/16/lib/$(MACH64)/insert_username.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/isn.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/lo.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/ltree.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/ltree_plpython3.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/moddatetime.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/old_snapshot.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/pageinspect.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/passwordcheck.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/pg_buffercache.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/pg_freespacemap.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/pg_prewarm.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/pg_stat_statements.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/pg_surgery.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/pg_trgm.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/pg_visibility.so
file path=usr/postgres/16/lib/$(MACH64)/pgcrypto.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/pgrowlocks.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/pgstattuple.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/pgxml.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/postgres_fdw.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/refint.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/seg.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/sslinfo.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/tablefunc.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/tcn.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/test_decoding.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/tsm_system_rows.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/tsm_system_time.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/unaccent.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/uuid-ossp.so mode=0555
file path=usr/postgres/16/lib/uuid-ossp.so mode=0555
file path=usr/postgres/16/share/extension/adminpack--1.0--1.1.sql
file path=usr/postgres/16/share/extension/adminpack--1.0.sql
file path=usr/postgres/16/share/extension/adminpack--1.1--2.0.sql
file path=usr/postgres/16/share/extension/adminpack--2.0--2.1.sql
file path=usr/postgres/16/share/extension/adminpack.control
file path=usr/postgres/16/share/extension/amcheck--1.0--1.1.sql
file path=usr/postgres/16/share/extension/amcheck--1.0.sql
file path=usr/postgres/16/share/extension/amcheck--1.1--1.2.sql
file path=usr/postgres/16/share/extension/amcheck--1.2--1.3.sql
file path=usr/postgres/16/share/extension/amcheck.control
file path=usr/postgres/16/share/extension/autoinc--1.0.sql
file path=usr/postgres/16/share/extension/autoinc.control
file path=usr/postgres/16/share/extension/bloom--1.0.sql
file path=usr/postgres/16/share/extension/bloom.control
file path=usr/postgres/16/share/extension/bool_plperl--1.0.sql
file path=usr/postgres/16/share/extension/bool_plperl.control
file path=usr/postgres/16/share/extension/bool_plperlu--1.0.sql
file path=usr/postgres/16/share/extension/bool_plperlu.control
file path=usr/postgres/16/share/extension/btree_gin--1.0--1.1.sql
file path=usr/postgres/16/share/extension/btree_gin--1.0.sql
file path=usr/postgres/16/share/extension/btree_gin--1.1--1.2.sql
file path=usr/postgres/16/share/extension/btree_gin--1.2--1.3.sql
file path=usr/postgres/16/share/extension/btree_gin.control
file path=usr/postgres/16/share/extension/btree_gist--1.0--1.1.sql
file path=usr/postgres/16/share/extension/btree_gist--1.1--1.2.sql
file path=usr/postgres/16/share/extension/btree_gist--1.2--1.3.sql
file path=usr/postgres/16/share/extension/btree_gist--1.2.sql
file path=usr/postgres/16/share/extension/btree_gist--1.3--1.4.sql
file path=usr/postgres/16/share/extension/btree_gist--1.4--1.5.sql
file path=usr/postgres/16/share/extension/btree_gist--1.5--1.6.sql
file path=usr/postgres/16/share/extension/btree_gist.control
file path=usr/postgres/16/share/extension/citext--1.0--1.1.sql
file path=usr/postgres/16/share/extension/citext--1.1--1.2.sql
file path=usr/postgres/16/share/extension/citext--1.2--1.3.sql
file path=usr/postgres/16/share/extension/citext--1.3--1.4.sql
file path=usr/postgres/16/share/extension/citext--1.4--1.5.sql
file path=usr/postgres/16/share/extension/citext--1.4.sql
file path=usr/postgres/16/share/extension/citext--1.5--1.6.sql
file path=usr/postgres/16/share/extension/citext.control
file path=usr/postgres/16/share/extension/cube--1.0--1.1.sql
file path=usr/postgres/16/share/extension/cube--1.1--1.2.sql
file path=usr/postgres/16/share/extension/cube--1.2--1.3.sql
file path=usr/postgres/16/share/extension/cube--1.2.sql
file path=usr/postgres/16/share/extension/cube--1.3--1.4.sql
file path=usr/postgres/16/share/extension/cube--1.4--1.5.sql
file path=usr/postgres/16/share/extension/cube.control
file path=usr/postgres/16/share/extension/dblink--1.0--1.1.sql
file path=usr/postgres/16/share/extension/dblink--1.1--1.2.sql
file path=usr/postgres/16/share/extension/dblink--1.2.sql
file path=usr/postgres/16/share/extension/dblink.control
file path=usr/postgres/16/share/extension/dict_int--1.0.sql
file path=usr/postgres/16/share/extension/dict_int.control
file path=usr/postgres/16/share/extension/dict_xsyn--1.0.sql
file path=usr/postgres/16/share/extension/dict_xsyn.control
file path=usr/postgres/16/share/extension/earthdistance--1.0--1.1.sql
file path=usr/postgres/16/share/extension/earthdistance--1.1.sql
file path=usr/postgres/16/share/extension/earthdistance.control
file path=usr/postgres/16/share/extension/file_fdw--1.0.sql
file path=usr/postgres/16/share/extension/file_fdw.control
file path=usr/postgres/16/share/extension/fuzzystrmatch--1.0--1.1.sql
file path=usr/postgres/16/share/extension/fuzzystrmatch--1.1.sql
file path=usr/postgres/16/share/extension/fuzzystrmatch.control
file path=usr/postgres/16/share/extension/hstore--1.1--1.2.sql
file path=usr/postgres/16/share/extension/hstore--1.2--1.3.sql
file path=usr/postgres/16/share/extension/hstore--1.3--1.4.sql
file path=usr/postgres/16/share/extension/hstore--1.4--1.5.sql
file path=usr/postgres/16/share/extension/hstore--1.4.sql
file path=usr/postgres/16/share/extension/hstore--1.5--1.6.sql
file path=usr/postgres/16/share/extension/hstore--1.6--1.7.sql
file path=usr/postgres/16/share/extension/hstore--1.7--1.8.sql
file path=usr/postgres/16/share/extension/hstore.control
file path=usr/postgres/16/share/extension/hstore_plperl--1.0.sql
file path=usr/postgres/16/share/extension/hstore_plperl.control
file path=usr/postgres/16/share/extension/hstore_plperlu--1.0.sql
file path=usr/postgres/16/share/extension/hstore_plperlu.control
file path=usr/postgres/16/share/extension/hstore_plpython3u--1.0.sql
file path=usr/postgres/16/share/extension/hstore_plpython3u.control
file path=usr/postgres/16/share/extension/insert_username--1.0.sql
file path=usr/postgres/16/share/extension/insert_username.control
file path=usr/postgres/16/share/extension/intagg--1.0--1.1.sql
file path=usr/postgres/16/share/extension/intagg--1.1.sql
file path=usr/postgres/16/share/extension/intagg.control
file path=usr/postgres/16/share/extension/intarray--1.0--1.1.sql
file path=usr/postgres/16/share/extension/intarray--1.1--1.2.sql
file path=usr/postgres/16/share/extension/intarray--1.2--1.3.sql
file path=usr/postgres/16/share/extension/intarray--1.2.sql
file path=usr/postgres/16/share/extension/intarray--1.3--1.4.sql
file path=usr/postgres/16/share/extension/intarray--1.4--1.5.sql
file path=usr/postgres/16/share/extension/intarray.control
file path=usr/postgres/16/share/extension/isn--1.0--1.1.sql
file path=usr/postgres/16/share/extension/isn--1.1--1.2.sql
file path=usr/postgres/16/share/extension/isn--1.1.sql
file path=usr/postgres/16/share/extension/isn.control
file path=usr/postgres/16/share/extension/jsonb_plperl--1.0.sql
file path=usr/postgres/16/share/extension/jsonb_plperl.control
file path=usr/postgres/16/share/extension/jsonb_plperlu--1.0.sql
file path=usr/postgres/16/share/extension/jsonb_plperlu.control
file path=usr/postgres/16/share/extension/jsonb_plpython3u--1.0.sql
file path=usr/postgres/16/share/extension/jsonb_plpython3u.control
file path=usr/postgres/16/share/extension/lo--1.0--1.1.sql
file path=usr/postgres/16/share/extension/lo--1.1.sql
file path=usr/postgres/16/share/extension/lo.control
file path=usr/postgres/16/share/extension/ltree--1.0--1.1.sql
file path=usr/postgres/16/share/extension/ltree--1.1--1.2.sql
file path=usr/postgres/16/share/extension/ltree--1.1.sql
file path=usr/postgres/16/share/extension/ltree.control
file path=usr/postgres/16/share/extension/ltree_plpython3u--1.0.sql
file path=usr/postgres/16/share/extension/ltree_plpython3u.control
file path=usr/postgres/16/share/extension/moddatetime--1.0.sql
file path=usr/postgres/16/share/extension/moddatetime.control
file path=usr/postgres/16/share/extension/old_snapshot--1.0.sql
file path=usr/postgres/16/share/extension/old_snapshot.control
file path=usr/postgres/16/share/extension/pageinspect--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pageinspect--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pageinspect--1.2--1.3.sql
file path=usr/postgres/16/share/extension/pageinspect--1.3--1.4.sql
file path=usr/postgres/16/share/extension/pageinspect--1.4--1.5.sql
file path=usr/postgres/16/share/extension/pageinspect--1.5--1.6.sql
file path=usr/postgres/16/share/extension/pageinspect--1.5.sql
file path=usr/postgres/16/share/extension/pageinspect--1.6--1.7.sql
file path=usr/postgres/16/share/extension/pageinspect--1.7--1.8.sql
file path=usr/postgres/16/share/extension/pageinspect--1.8--1.9.sql
file path=usr/postgres/16/share/extension/pageinspect.control
file path=usr/postgres/16/share/extension/pg_buffercache--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pg_buffercache--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pg_buffercache--1.2--1.3.sql
file path=usr/postgres/16/share/extension/pg_buffercache--1.2.sql
file path=usr/postgres/16/share/extension/pg_buffercache.control
file path=usr/postgres/16/share/extension/pg_freespacemap--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pg_freespacemap--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pg_freespacemap--1.1.sql
file path=usr/postgres/16/share/extension/pg_freespacemap.control
file path=usr/postgres/16/share/extension/pg_prewarm--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pg_prewarm--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pg_prewarm--1.1.sql
file path=usr/postgres/16/share/extension/pg_prewarm.control
file path=usr/postgres/16/share/extension/pg_stat_statements--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.2--1.3.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.3--1.4.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.4--1.5.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.4.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.5--1.6.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.6--1.7.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.7--1.8.sql
file path=usr/postgres/16/share/extension/pg_stat_statements--1.8--1.9.sql
file path=usr/postgres/16/share/extension/pg_stat_statements.control
file path=usr/postgres/16/share/extension/pg_surgery--1.0.sql
file path=usr/postgres/16/share/extension/pg_surgery.control
file path=usr/postgres/16/share/extension/pg_trgm--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pg_trgm--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pg_trgm--1.2--1.3.sql
file path=usr/postgres/16/share/extension/pg_trgm--1.3--1.4.sql
file path=usr/postgres/16/share/extension/pg_trgm--1.3.sql
file path=usr/postgres/16/share/extension/pg_trgm--1.4--1.5.sql
file path=usr/postgres/16/share/extension/pg_trgm--1.5--1.6.sql
file path=usr/postgres/16/share/extension/pg_trgm.control
file path=usr/postgres/16/share/extension/pg_visibility--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pg_visibility--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pg_visibility--1.1.sql
file path=usr/postgres/16/share/extension/pg_visibility.control
file path=usr/postgres/16/share/extension/pgcrypto--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pgcrypto--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pgcrypto--1.2--1.3.sql
file path=usr/postgres/16/share/extension/pgcrypto--1.3.sql
file path=usr/postgres/16/share/extension/pgcrypto.control
file path=usr/postgres/16/share/extension/pgrowlocks--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pgrowlocks--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pgrowlocks--1.2.sql
file path=usr/postgres/16/share/extension/pgrowlocks.control
file path=usr/postgres/16/share/extension/pgstattuple--1.0--1.1.sql
file path=usr/postgres/16/share/extension/pgstattuple--1.1--1.2.sql
file path=usr/postgres/16/share/extension/pgstattuple--1.2--1.3.sql
file path=usr/postgres/16/share/extension/pgstattuple--1.3--1.4.sql
file path=usr/postgres/16/share/extension/pgstattuple--1.4--1.5.sql
file path=usr/postgres/16/share/extension/pgstattuple--1.4.sql
file path=usr/postgres/16/share/extension/pgstattuple.control
file path=usr/postgres/16/share/extension/postgres_fdw--1.0--1.1.sql
file path=usr/postgres/16/share/extension/postgres_fdw--1.0.sql
file path=usr/postgres/16/share/extension/postgres_fdw.control
file path=usr/postgres/16/share/extension/refint--1.0.sql
file path=usr/postgres/16/share/extension/refint.control
file path=usr/postgres/16/share/extension/seg--1.0--1.1.sql
file path=usr/postgres/16/share/extension/seg--1.1--1.2.sql
file path=usr/postgres/16/share/extension/seg--1.1.sql
file path=usr/postgres/16/share/extension/seg--1.2--1.3.sql
file path=usr/postgres/16/share/extension/seg--1.3--1.4.sql
file path=usr/postgres/16/share/extension/seg.control
file path=usr/postgres/16/share/extension/sslinfo--1.0--1.1.sql
file path=usr/postgres/16/share/extension/sslinfo--1.1--1.2.sql
file path=usr/postgres/16/share/extension/sslinfo--1.2.sql
file path=usr/postgres/16/share/extension/sslinfo.control
file path=usr/postgres/16/share/extension/tablefunc--1.0.sql
file path=usr/postgres/16/share/extension/tablefunc.control
file path=usr/postgres/16/share/extension/tcn--1.0.sql
file path=usr/postgres/16/share/extension/tcn.control
file path=usr/postgres/16/share/extension/tsm_system_rows--1.0.sql
file path=usr/postgres/16/share/extension/tsm_system_rows.control
file path=usr/postgres/16/share/extension/tsm_system_time--1.0.sql
file path=usr/postgres/16/share/extension/tsm_system_time.control
file path=usr/postgres/16/share/extension/unaccent--1.0--1.1.sql
file path=usr/postgres/16/share/extension/unaccent--1.1.sql
file path=usr/postgres/16/share/extension/unaccent.control
file path=usr/postgres/16/share/extension/uuid-ossp--1.0--1.1.sql
file path=usr/postgres/16/share/extension/uuid-ossp--1.1.sql
file path=usr/postgres/16/share/extension/uuid-ossp.control
file path=usr/postgres/16/share/extension/xml2--1.0--1.1.sql
file path=usr/postgres/16/share/extension/xml2--1.1.sql
file path=usr/postgres/16/share/extension/xml2.control
file path=usr/postgres/16/man/man1/oid2name.1
file path=usr/postgres/16/man/man1/pg_amcheck.1
file path=usr/postgres/16/man/man1/pg_archivecleanup.1
file path=usr/postgres/16/man/man1/pg_verifybackup.1
file path=usr/postgres/16/man/man1/pg_waldump.1
file path=usr/postgres/16/man/man1/pg_test_fsync.1
file path=usr/postgres/16/man/man1/pg_test_timing.1
file path=usr/postgres/16/man/man1/pgbench.1
file path=usr/postgres/16/man/man1/vacuumlo.1
file path=usr/share/locale/cs/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_waldump-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_amcheck-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_archivecleanup-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_test_fsync-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_test_timing-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_verifybackup-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_waldump-16.mo
components/database/postgresql-16/postgresql16-developer.p5m
New file
@@ -0,0 +1,1001 @@
#
# 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 2023 Andreas Wacknitz
#
set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)/developer@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.human-version value=$(HUMAN_VERSION)
set name=pkg.summary value="PostgreSQL 16 development tools and header files"
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/16/bin/$(MACH32)/pg_config mode=0555
file path=usr/postgres/16/bin/pg_config mode=0555
file path=usr/postgres/16/bin/$(MACH32)/ecpg mode=0555
file path=usr/postgres/16/bin/ecpg mode=0555
file files/pg_config.h path=usr/postgres/16/include/pg_config.h
hardlink path=usr/postgres/16/include/server/pg_config.h target=../pg_config.h
link path=usr/bin/pg_config target=../postgres/16/bin/pg_config mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/ecpg target=../postgres/16/bin/ecpg mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/$(MACH32)/pg_config target=../../postgres/16/bin/$(MACH32)/pg_config mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/$(MACH32)/ecpg target=../../postgres/16/bin/$(MACH32)/ecpg mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/ecpg.1 target=../../../postgres/16/man/man1/ecpg.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/pg_config.1 target=../../../postgres/16/man/man1/pg_config.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
file path=usr/postgres/16/include/ecpg_config.h
file path=usr/postgres/16/include/ecpg_informix.h
file path=usr/postgres/16/include/ecpgerrno.h
file path=usr/postgres/16/include/ecpglib.h
file path=usr/postgres/16/include/ecpgtype.h
file path=usr/postgres/16/include/informix/esql/datetime.h
file path=usr/postgres/16/include/informix/esql/decimal.h
file path=usr/postgres/16/include/informix/esql/sqltypes.h
file path=usr/postgres/16/include/internal/c.h
file path=usr/postgres/16/include/internal/fe-auth-sasl.h
file path=usr/postgres/16/include/internal/libpq-int.h
file path=usr/postgres/16/include/internal/libpq/pqcomm.h
file path=usr/postgres/16/include/internal/port.h
file path=usr/postgres/16/include/internal/postgres_fe.h
file path=usr/postgres/16/include/internal/pqexpbuffer.h
file path=usr/postgres/16/include/libpq-events.h
file path=usr/postgres/16/include/libpq-fe.h
file path=usr/postgres/16/include/libpq/libpq-fs.h
file path=usr/postgres/16/include/pg_config-32.h
file path=usr/postgres/16/include/pg_config-64.h
file path=usr/postgres/16/include/pg_config_ext.h
file path=usr/postgres/16/include/pg_config_manual.h
file path=usr/postgres/16/include/pg_config_os.h
file path=usr/postgres/16/include/pgtypes.h
file path=usr/postgres/16/include/pgtypes_date.h
file path=usr/postgres/16/include/pgtypes_error.h
file path=usr/postgres/16/include/pgtypes_interval.h
file path=usr/postgres/16/include/pgtypes_numeric.h
file path=usr/postgres/16/include/pgtypes_timestamp.h
file path=usr/postgres/16/include/postgres_ext.h
file path=usr/postgres/16/include/server/access/amapi.h
file path=usr/postgres/16/include/server/access/amvalidate.h
file path=usr/postgres/16/include/server/access/attmap.h
file path=usr/postgres/16/include/server/access/attnum.h
file path=usr/postgres/16/include/server/access/brin.h
file path=usr/postgres/16/include/server/access/brin_internal.h
file path=usr/postgres/16/include/server/access/brin_page.h
file path=usr/postgres/16/include/server/access/brin_pageops.h
file path=usr/postgres/16/include/server/access/brin_revmap.h
file path=usr/postgres/16/include/server/access/brin_tuple.h
file path=usr/postgres/16/include/server/access/brin_xlog.h
file path=usr/postgres/16/include/server/access/bufmask.h
file path=usr/postgres/16/include/server/access/clog.h
file path=usr/postgres/16/include/server/access/commit_ts.h
file path=usr/postgres/16/include/server/access/detoast.h
file path=usr/postgres/16/include/server/access/genam.h
file path=usr/postgres/16/include/server/access/generic_xlog.h
file path=usr/postgres/16/include/server/access/gin.h
file path=usr/postgres/16/include/server/access/gin_private.h
file path=usr/postgres/16/include/server/access/ginblock.h
file path=usr/postgres/16/include/server/access/ginxlog.h
file path=usr/postgres/16/include/server/access/gist.h
file path=usr/postgres/16/include/server/access/gist_private.h
file path=usr/postgres/16/include/server/access/gistscan.h
file path=usr/postgres/16/include/server/access/gistxlog.h
file path=usr/postgres/16/include/server/access/hash.h
file path=usr/postgres/16/include/server/access/hash_xlog.h
file path=usr/postgres/16/include/server/access/heapam.h
file path=usr/postgres/16/include/server/access/heapam_xlog.h
file path=usr/postgres/16/include/server/access/heaptoast.h
file path=usr/postgres/16/include/server/access/hio.h
file path=usr/postgres/16/include/server/access/htup.h
file path=usr/postgres/16/include/server/access/htup_details.h
file path=usr/postgres/16/include/server/access/itup.h
file path=usr/postgres/16/include/server/access/multixact.h
file path=usr/postgres/16/include/server/access/nbtree.h
file path=usr/postgres/16/include/server/access/nbtxlog.h
file path=usr/postgres/16/include/server/access/parallel.h
file path=usr/postgres/16/include/server/access/printsimple.h
file path=usr/postgres/16/include/server/access/printtup.h
file path=usr/postgres/16/include/server/access/relation.h
file path=usr/postgres/16/include/server/access/reloptions.h
file path=usr/postgres/16/include/server/access/relscan.h
file path=usr/postgres/16/include/server/access/rewriteheap.h
file path=usr/postgres/16/include/server/access/rmgr.h
file path=usr/postgres/16/include/server/access/rmgrdesc_utils.h
file path=usr/postgres/16/include/server/access/rmgrlist.h
file path=usr/postgres/16/include/server/access/sdir.h
file path=usr/postgres/16/include/server/access/session.h
file path=usr/postgres/16/include/server/access/skey.h
file path=usr/postgres/16/include/server/access/slru.h
file path=usr/postgres/16/include/server/access/spgist.h
file path=usr/postgres/16/include/server/access/spgist_private.h
file path=usr/postgres/16/include/server/access/spgxlog.h
file path=usr/postgres/16/include/server/access/stratnum.h
file path=usr/postgres/16/include/server/access/subtrans.h
file path=usr/postgres/16/include/server/access/syncscan.h
file path=usr/postgres/16/include/server/access/sysattr.h
file path=usr/postgres/16/include/server/access/table.h
file path=usr/postgres/16/include/server/access/tableam.h
file path=usr/postgres/16/include/server/access/timeline.h
file path=usr/postgres/16/include/server/access/toast_compression.h
file path=usr/postgres/16/include/server/access/toast_helper.h
file path=usr/postgres/16/include/server/access/toast_internals.h
file path=usr/postgres/16/include/server/access/transam.h
file path=usr/postgres/16/include/server/access/tsmapi.h
file path=usr/postgres/16/include/server/access/tupconvert.h
file path=usr/postgres/16/include/server/access/tupdesc.h
file path=usr/postgres/16/include/server/access/tupdesc_details.h
file path=usr/postgres/16/include/server/access/tupmacs.h
file path=usr/postgres/16/include/server/access/twophase.h
file path=usr/postgres/16/include/server/access/twophase_rmgr.h
file path=usr/postgres/16/include/server/access/valid.h
file path=usr/postgres/16/include/server/access/visibilitymap.h
file path=usr/postgres/16/include/server/access/visibilitymapdefs.h
file path=usr/postgres/16/include/server/access/xact.h
file path=usr/postgres/16/include/server/access/xlog.h
file path=usr/postgres/16/include/server/access/xlog_internal.h
file path=usr/postgres/16/include/server/access/xlogarchive.h
file path=usr/postgres/16/include/server/access/xlogbackup.h
file path=usr/postgres/16/include/server/access/xlogdefs.h
file path=usr/postgres/16/include/server/access/xloginsert.h
file path=usr/postgres/16/include/server/access/xlogprefetcher.h
file path=usr/postgres/16/include/server/access/xlogreader.h
file path=usr/postgres/16/include/server/access/xlogrecord.h
file path=usr/postgres/16/include/server/access/xlogrecovery.h
file path=usr/postgres/16/include/server/access/xlogstats.h
file path=usr/postgres/16/include/server/access/xlogutils.h
file path=usr/postgres/16/include/server/archive/archive_module.h
file path=usr/postgres/16/include/server/archive/shell_archive.h
file path=usr/postgres/16/include/server/bootstrap/bootstrap.h
file path=usr/postgres/16/include/server/c.h
file path=usr/postgres/16/include/server/catalog/binary_upgrade.h
file path=usr/postgres/16/include/server/catalog/catalog.h
file path=usr/postgres/16/include/server/catalog/catversion.h
file path=usr/postgres/16/include/server/catalog/dependency.h
file path=usr/postgres/16/include/server/catalog/genbki.h
file path=usr/postgres/16/include/server/catalog/heap.h
file path=usr/postgres/16/include/server/catalog/index.h
file path=usr/postgres/16/include/server/catalog/indexing.h
file path=usr/postgres/16/include/server/catalog/namespace.h
file path=usr/postgres/16/include/server/catalog/objectaccess.h
file path=usr/postgres/16/include/server/catalog/objectaddress.h
file path=usr/postgres/16/include/server/catalog/partition.h
file path=usr/postgres/16/include/server/catalog/pg_aggregate.h
file path=usr/postgres/16/include/server/catalog/pg_aggregate_d.h
file path=usr/postgres/16/include/server/catalog/pg_am.h
file path=usr/postgres/16/include/server/catalog/pg_am_d.h
file path=usr/postgres/16/include/server/catalog/pg_amop.h
file path=usr/postgres/16/include/server/catalog/pg_amop_d.h
file path=usr/postgres/16/include/server/catalog/pg_amproc.h
file path=usr/postgres/16/include/server/catalog/pg_amproc_d.h
file path=usr/postgres/16/include/server/catalog/pg_attrdef.h
file path=usr/postgres/16/include/server/catalog/pg_attrdef_d.h
file path=usr/postgres/16/include/server/catalog/pg_attribute.h
file path=usr/postgres/16/include/server/catalog/pg_attribute_d.h
file path=usr/postgres/16/include/server/catalog/pg_auth_members.h
file path=usr/postgres/16/include/server/catalog/pg_auth_members_d.h
file path=usr/postgres/16/include/server/catalog/pg_authid.h
file path=usr/postgres/16/include/server/catalog/pg_authid_d.h
file path=usr/postgres/16/include/server/catalog/pg_cast.h
file path=usr/postgres/16/include/server/catalog/pg_cast_d.h
file path=usr/postgres/16/include/server/catalog/pg_class.h
file path=usr/postgres/16/include/server/catalog/pg_class_d.h
file path=usr/postgres/16/include/server/catalog/pg_collation.h
file path=usr/postgres/16/include/server/catalog/pg_collation_d.h
file path=usr/postgres/16/include/server/catalog/pg_constraint.h
file path=usr/postgres/16/include/server/catalog/pg_constraint_d.h
file path=usr/postgres/16/include/server/catalog/pg_control.h
file path=usr/postgres/16/include/server/catalog/pg_conversion.h
file path=usr/postgres/16/include/server/catalog/pg_conversion_d.h
file path=usr/postgres/16/include/server/catalog/pg_database.h
file path=usr/postgres/16/include/server/catalog/pg_database_d.h
file path=usr/postgres/16/include/server/catalog/pg_db_role_setting.h
file path=usr/postgres/16/include/server/catalog/pg_db_role_setting_d.h
file path=usr/postgres/16/include/server/catalog/pg_default_acl.h
file path=usr/postgres/16/include/server/catalog/pg_default_acl_d.h
file path=usr/postgres/16/include/server/catalog/pg_depend.h
file path=usr/postgres/16/include/server/catalog/pg_depend_d.h
file path=usr/postgres/16/include/server/catalog/pg_description.h
file path=usr/postgres/16/include/server/catalog/pg_description_d.h
file path=usr/postgres/16/include/server/catalog/pg_enum.h
file path=usr/postgres/16/include/server/catalog/pg_enum_d.h
file path=usr/postgres/16/include/server/catalog/pg_event_trigger.h
file path=usr/postgres/16/include/server/catalog/pg_event_trigger_d.h
file path=usr/postgres/16/include/server/catalog/pg_extension.h
file path=usr/postgres/16/include/server/catalog/pg_extension_d.h
file path=usr/postgres/16/include/server/catalog/pg_foreign_data_wrapper.h
file path=usr/postgres/16/include/server/catalog/pg_foreign_data_wrapper_d.h
file path=usr/postgres/16/include/server/catalog/pg_foreign_server.h
file path=usr/postgres/16/include/server/catalog/pg_foreign_server_d.h
file path=usr/postgres/16/include/server/catalog/pg_foreign_table.h
file path=usr/postgres/16/include/server/catalog/pg_foreign_table_d.h
file path=usr/postgres/16/include/server/catalog/pg_index.h
file path=usr/postgres/16/include/server/catalog/pg_index_d.h
file path=usr/postgres/16/include/server/catalog/pg_inherits.h
file path=usr/postgres/16/include/server/catalog/pg_inherits_d.h
file path=usr/postgres/16/include/server/catalog/pg_init_privs.h
file path=usr/postgres/16/include/server/catalog/pg_init_privs_d.h
file path=usr/postgres/16/include/server/catalog/pg_language.h
file path=usr/postgres/16/include/server/catalog/pg_language_d.h
file path=usr/postgres/16/include/server/catalog/pg_largeobject.h
file path=usr/postgres/16/include/server/catalog/pg_largeobject_d.h
file path=usr/postgres/16/include/server/catalog/pg_largeobject_metadata.h
file path=usr/postgres/16/include/server/catalog/pg_largeobject_metadata_d.h
file path=usr/postgres/16/include/server/catalog/pg_namespace.h
file path=usr/postgres/16/include/server/catalog/pg_namespace_d.h
file path=usr/postgres/16/include/server/catalog/pg_opclass.h
file path=usr/postgres/16/include/server/catalog/pg_opclass_d.h
file path=usr/postgres/16/include/server/catalog/pg_operator.h
file path=usr/postgres/16/include/server/catalog/pg_operator_d.h
file path=usr/postgres/16/include/server/catalog/pg_opfamily.h
file path=usr/postgres/16/include/server/catalog/pg_opfamily_d.h
file path=usr/postgres/16/include/server/catalog/pg_parameter_acl.h
file path=usr/postgres/16/include/server/catalog/pg_parameter_acl_d.h
file path=usr/postgres/16/include/server/catalog/pg_partitioned_table.h
file path=usr/postgres/16/include/server/catalog/pg_partitioned_table_d.h
file path=usr/postgres/16/include/server/catalog/pg_policy.h
file path=usr/postgres/16/include/server/catalog/pg_policy_d.h
file path=usr/postgres/16/include/server/catalog/pg_proc.h
file path=usr/postgres/16/include/server/catalog/pg_proc_d.h
file path=usr/postgres/16/include/server/catalog/pg_publication.h
file path=usr/postgres/16/include/server/catalog/pg_publication_d.h
file path=usr/postgres/16/include/server/catalog/pg_publication_namespace.h
file path=usr/postgres/16/include/server/catalog/pg_publication_namespace_d.h
file path=usr/postgres/16/include/server/catalog/pg_publication_rel.h
file path=usr/postgres/16/include/server/catalog/pg_publication_rel_d.h
file path=usr/postgres/16/include/server/catalog/pg_range.h
file path=usr/postgres/16/include/server/catalog/pg_range_d.h
file path=usr/postgres/16/include/server/catalog/pg_replication_origin.h
file path=usr/postgres/16/include/server/catalog/pg_replication_origin_d.h
file path=usr/postgres/16/include/server/catalog/pg_rewrite.h
file path=usr/postgres/16/include/server/catalog/pg_rewrite_d.h
file path=usr/postgres/16/include/server/catalog/pg_seclabel.h
file path=usr/postgres/16/include/server/catalog/pg_seclabel_d.h
file path=usr/postgres/16/include/server/catalog/pg_sequence.h
file path=usr/postgres/16/include/server/catalog/pg_sequence_d.h
file path=usr/postgres/16/include/server/catalog/pg_shdepend.h
file path=usr/postgres/16/include/server/catalog/pg_shdepend_d.h
file path=usr/postgres/16/include/server/catalog/pg_shdescription.h
file path=usr/postgres/16/include/server/catalog/pg_shdescription_d.h
file path=usr/postgres/16/include/server/catalog/pg_shseclabel.h
file path=usr/postgres/16/include/server/catalog/pg_shseclabel_d.h
file path=usr/postgres/16/include/server/catalog/pg_statistic.h
file path=usr/postgres/16/include/server/catalog/pg_statistic_d.h
file path=usr/postgres/16/include/server/catalog/pg_statistic_ext.h
file path=usr/postgres/16/include/server/catalog/pg_statistic_ext_d.h
file path=usr/postgres/16/include/server/catalog/pg_statistic_ext_data.h
file path=usr/postgres/16/include/server/catalog/pg_statistic_ext_data_d.h
file path=usr/postgres/16/include/server/catalog/pg_subscription.h
file path=usr/postgres/16/include/server/catalog/pg_subscription_d.h
file path=usr/postgres/16/include/server/catalog/pg_subscription_rel.h
file path=usr/postgres/16/include/server/catalog/pg_subscription_rel_d.h
file path=usr/postgres/16/include/server/catalog/pg_tablespace.h
file path=usr/postgres/16/include/server/catalog/pg_tablespace_d.h
file path=usr/postgres/16/include/server/catalog/pg_transform.h
file path=usr/postgres/16/include/server/catalog/pg_transform_d.h
file path=usr/postgres/16/include/server/catalog/pg_trigger.h
file path=usr/postgres/16/include/server/catalog/pg_trigger_d.h
file path=usr/postgres/16/include/server/catalog/pg_ts_config.h
file path=usr/postgres/16/include/server/catalog/pg_ts_config_d.h
file path=usr/postgres/16/include/server/catalog/pg_ts_config_map.h
file path=usr/postgres/16/include/server/catalog/pg_ts_config_map_d.h
file path=usr/postgres/16/include/server/catalog/pg_ts_dict.h
file path=usr/postgres/16/include/server/catalog/pg_ts_dict_d.h
file path=usr/postgres/16/include/server/catalog/pg_ts_parser.h
file path=usr/postgres/16/include/server/catalog/pg_ts_parser_d.h
file path=usr/postgres/16/include/server/catalog/pg_ts_template.h
file path=usr/postgres/16/include/server/catalog/pg_ts_template_d.h
file path=usr/postgres/16/include/server/catalog/pg_type.h
file path=usr/postgres/16/include/server/catalog/pg_type_d.h
file path=usr/postgres/16/include/server/catalog/pg_user_mapping.h
file path=usr/postgres/16/include/server/catalog/pg_user_mapping_d.h
file path=usr/postgres/16/include/server/catalog/schemapg.h
file path=usr/postgres/16/include/server/catalog/storage.h
file path=usr/postgres/16/include/server/catalog/storage_xlog.h
file path=usr/postgres/16/include/server/catalog/system_fk_info.h
file path=usr/postgres/16/include/server/catalog/toasting.h
file path=usr/postgres/16/include/server/commands/alter.h
file path=usr/postgres/16/include/server/commands/async.h
file path=usr/postgres/16/include/server/commands/cluster.h
file path=usr/postgres/16/include/server/commands/collationcmds.h
file path=usr/postgres/16/include/server/commands/comment.h
file path=usr/postgres/16/include/server/commands/conversioncmds.h
file path=usr/postgres/16/include/server/commands/copy.h
file path=usr/postgres/16/include/server/commands/copyfrom_internal.h
file path=usr/postgres/16/include/server/commands/createas.h
file path=usr/postgres/16/include/server/commands/dbcommands.h
file path=usr/postgres/16/include/server/commands/dbcommands_xlog.h
file path=usr/postgres/16/include/server/commands/defrem.h
file path=usr/postgres/16/include/server/commands/discard.h
file path=usr/postgres/16/include/server/commands/event_trigger.h
file path=usr/postgres/16/include/server/commands/explain.h
file path=usr/postgres/16/include/server/commands/extension.h
file path=usr/postgres/16/include/server/commands/lockcmds.h
file path=usr/postgres/16/include/server/commands/matview.h
file path=usr/postgres/16/include/server/commands/policy.h
file path=usr/postgres/16/include/server/commands/portalcmds.h
file path=usr/postgres/16/include/server/commands/prepare.h
file path=usr/postgres/16/include/server/commands/proclang.h
file path=usr/postgres/16/include/server/commands/progress.h
file path=usr/postgres/16/include/server/commands/publicationcmds.h
file path=usr/postgres/16/include/server/commands/schemacmds.h
file path=usr/postgres/16/include/server/commands/seclabel.h
file path=usr/postgres/16/include/server/commands/sequence.h
file path=usr/postgres/16/include/server/commands/subscriptioncmds.h
file path=usr/postgres/16/include/server/commands/tablecmds.h
file path=usr/postgres/16/include/server/commands/tablespace.h
file path=usr/postgres/16/include/server/commands/trigger.h
file path=usr/postgres/16/include/server/commands/typecmds.h
file path=usr/postgres/16/include/server/commands/user.h
file path=usr/postgres/16/include/server/commands/vacuum.h
file path=usr/postgres/16/include/server/commands/view.h
file path=usr/postgres/16/include/server/common/archive.h
file path=usr/postgres/16/include/server/common/base64.h
file path=usr/postgres/16/include/server/common/checksum_helper.h
file path=usr/postgres/16/include/server/common/compression.h
file path=usr/postgres/16/include/server/common/config_info.h
file path=usr/postgres/16/include/server/common/connect.h
file path=usr/postgres/16/include/server/common/controldata_utils.h
file path=usr/postgres/16/include/server/common/cryptohash.h
file path=usr/postgres/16/include/server/common/fe_memutils.h
file path=usr/postgres/16/include/server/common/file_perm.h
file path=usr/postgres/16/include/server/common/file_utils.h
file path=usr/postgres/16/include/server/common/hashfn.h
file path=usr/postgres/16/include/server/common/hmac.h
file path=usr/postgres/16/include/server/common/int.h
file path=usr/postgres/16/include/server/common/int128.h
file path=usr/postgres/16/include/server/common/ip.h
file path=usr/postgres/16/include/server/common/jsonapi.h
file path=usr/postgres/16/include/server/common/keywords.h
file path=usr/postgres/16/include/server/common/kwlookup.h
file path=usr/postgres/16/include/server/common/link-canary.h
file path=usr/postgres/16/include/server/common/logging.h
file path=usr/postgres/16/include/server/common/md5.h
file path=usr/postgres/16/include/server/common/openssl.h
file path=usr/postgres/16/include/server/common/percentrepl.h
file path=usr/postgres/16/include/server/common/pg_lzcompress.h
file path=usr/postgres/16/include/server/common/pg_prng.h
file path=usr/postgres/16/include/server/common/relpath.h
file path=usr/postgres/16/include/server/common/restricted_token.h
file path=usr/postgres/16/include/server/common/saslprep.h
file path=usr/postgres/16/include/server/common/scram-common.h
file path=usr/postgres/16/include/server/common/sha1.h
file path=usr/postgres/16/include/server/common/sha2.h
file path=usr/postgres/16/include/server/common/shortest_dec.h
file path=usr/postgres/16/include/server/common/string.h
file path=usr/postgres/16/include/server/common/unicode_east_asian_fw_table.h
file path=usr/postgres/16/include/server/common/unicode_nonspacing_table.h
file path=usr/postgres/16/include/server/common/unicode_norm.h
file path=usr/postgres/16/include/server/common/unicode_norm_hashfunc.h
file path=usr/postgres/16/include/server/common/unicode_norm_table.h
file path=usr/postgres/16/include/server/common/unicode_normprops_table.h
file path=usr/postgres/16/include/server/common/username.h
file path=usr/postgres/16/include/server/datatype/timestamp.h
file path=usr/postgres/16/include/server/executor/execAsync.h
file path=usr/postgres/16/include/server/executor/execExpr.h
file path=usr/postgres/16/include/server/executor/execParallel.h
file path=usr/postgres/16/include/server/executor/execPartition.h
file path=usr/postgres/16/include/server/executor/execdebug.h
file path=usr/postgres/16/include/server/executor/execdesc.h
file path=usr/postgres/16/include/server/executor/executor.h
file path=usr/postgres/16/include/server/executor/functions.h
file path=usr/postgres/16/include/server/executor/hashjoin.h
file path=usr/postgres/16/include/server/executor/instrument.h
file path=usr/postgres/16/include/server/executor/nodeAgg.h
file path=usr/postgres/16/include/server/executor/nodeAppend.h
file path=usr/postgres/16/include/server/executor/nodeBitmapAnd.h
file path=usr/postgres/16/include/server/executor/nodeBitmapHeapscan.h
file path=usr/postgres/16/include/server/executor/nodeBitmapIndexscan.h
file path=usr/postgres/16/include/server/executor/nodeBitmapOr.h
file path=usr/postgres/16/include/server/executor/nodeCtescan.h
file path=usr/postgres/16/include/server/executor/nodeCustom.h
file path=usr/postgres/16/include/server/executor/nodeForeignscan.h
file path=usr/postgres/16/include/server/executor/nodeFunctionscan.h
file path=usr/postgres/16/include/server/executor/nodeGather.h
file path=usr/postgres/16/include/server/executor/nodeGatherMerge.h
file path=usr/postgres/16/include/server/executor/nodeGroup.h
file path=usr/postgres/16/include/server/executor/nodeHash.h
file path=usr/postgres/16/include/server/executor/nodeHashjoin.h
file path=usr/postgres/16/include/server/executor/nodeIncrementalSort.h
file path=usr/postgres/16/include/server/executor/nodeIndexonlyscan.h
file path=usr/postgres/16/include/server/executor/nodeIndexscan.h
file path=usr/postgres/16/include/server/executor/nodeLimit.h
file path=usr/postgres/16/include/server/executor/nodeLockRows.h
file path=usr/postgres/16/include/server/executor/nodeMaterial.h
file path=usr/postgres/16/include/server/executor/nodeMemoize.h
file path=usr/postgres/16/include/server/executor/nodeMergeAppend.h
file path=usr/postgres/16/include/server/executor/nodeMergejoin.h
file path=usr/postgres/16/include/server/executor/nodeModifyTable.h
file path=usr/postgres/16/include/server/executor/nodeNamedtuplestorescan.h
file path=usr/postgres/16/include/server/executor/nodeNestloop.h
file path=usr/postgres/16/include/server/executor/nodeProjectSet.h
file path=usr/postgres/16/include/server/executor/nodeRecursiveunion.h
file path=usr/postgres/16/include/server/executor/nodeResult.h
file path=usr/postgres/16/include/server/executor/nodeSamplescan.h
file path=usr/postgres/16/include/server/executor/nodeSeqscan.h
file path=usr/postgres/16/include/server/executor/nodeSetOp.h
file path=usr/postgres/16/include/server/executor/nodeSort.h
file path=usr/postgres/16/include/server/executor/nodeSubplan.h
file path=usr/postgres/16/include/server/executor/nodeSubqueryscan.h
file path=usr/postgres/16/include/server/executor/nodeTableFuncscan.h
file path=usr/postgres/16/include/server/executor/nodeTidrangescan.h
file path=usr/postgres/16/include/server/executor/nodeTidscan.h
file path=usr/postgres/16/include/server/executor/nodeUnique.h
file path=usr/postgres/16/include/server/executor/nodeValuesscan.h
file path=usr/postgres/16/include/server/executor/nodeWindowAgg.h
file path=usr/postgres/16/include/server/executor/nodeWorktablescan.h
file path=usr/postgres/16/include/server/executor/spi.h
file path=usr/postgres/16/include/server/executor/spi_priv.h
file path=usr/postgres/16/include/server/executor/tablefunc.h
file path=usr/postgres/16/include/server/executor/tqueue.h
file path=usr/postgres/16/include/server/executor/tstoreReceiver.h
file path=usr/postgres/16/include/server/executor/tuptable.h
file path=usr/postgres/16/include/server/extension/cube/cubedata.h
file path=usr/postgres/16/include/server/extension/hstore/hstore.h
file path=usr/postgres/16/include/server/extension/isn/isn.h
file path=usr/postgres/16/include/server/extension/ltree/ltree.h
file path=usr/postgres/16/include/server/extension/seg/segdata.h
file path=usr/postgres/16/include/server/fe_utils/archive.h
file path=usr/postgres/16/include/server/fe_utils/cancel.h
file path=usr/postgres/16/include/server/fe_utils/conditional.h
file path=usr/postgres/16/include/server/fe_utils/connect_utils.h
file path=usr/postgres/16/include/server/fe_utils/mbprint.h
file path=usr/postgres/16/include/server/fe_utils/option_utils.h
file path=usr/postgres/16/include/server/fe_utils/parallel_slot.h
file path=usr/postgres/16/include/server/fe_utils/print.h
file path=usr/postgres/16/include/server/fe_utils/psqlscan.h
file path=usr/postgres/16/include/server/fe_utils/psqlscan_int.h
file path=usr/postgres/16/include/server/fe_utils/query_utils.h
file path=usr/postgres/16/include/server/fe_utils/recovery_gen.h
file path=usr/postgres/16/include/server/fe_utils/simple_list.h
file path=usr/postgres/16/include/server/fe_utils/string_utils.h
file path=usr/postgres/16/include/server/fmgr.h
file path=usr/postgres/16/include/server/foreign/fdwapi.h
file path=usr/postgres/16/include/server/foreign/foreign.h
file path=usr/postgres/16/include/server/funcapi.h
file path=usr/postgres/16/include/server/getopt_long.h
file path=usr/postgres/16/include/server/jit/jit.h
file path=usr/postgres/16/include/server/jit/llvmjit.h
file path=usr/postgres/16/include/server/jit/llvmjit_emit.h
file path=usr/postgres/16/include/server/lib/binaryheap.h
file path=usr/postgres/16/include/server/lib/bipartite_match.h
file path=usr/postgres/16/include/server/lib/bloomfilter.h
file path=usr/postgres/16/include/server/lib/dshash.h
file path=usr/postgres/16/include/server/lib/hyperloglog.h
file path=usr/postgres/16/include/server/lib/ilist.h
file path=usr/postgres/16/include/server/lib/integerset.h
file path=usr/postgres/16/include/server/lib/knapsack.h
file path=usr/postgres/16/include/server/lib/pairingheap.h
file path=usr/postgres/16/include/server/lib/qunique.h
file path=usr/postgres/16/include/server/lib/rbtree.h
file path=usr/postgres/16/include/server/lib/simplehash.h
file path=usr/postgres/16/include/server/lib/sort_template.h
file path=usr/postgres/16/include/server/lib/stringinfo.h
file path=usr/postgres/16/include/server/libpq/auth.h
file path=usr/postgres/16/include/server/libpq/be-fsstubs.h
file path=usr/postgres/16/include/server/libpq/be-gssapi-common.h
file path=usr/postgres/16/include/server/libpq/crypt.h
file path=usr/postgres/16/include/server/libpq/hba.h
file path=usr/postgres/16/include/server/libpq/ifaddr.h
file path=usr/postgres/16/include/server/libpq/libpq-be-fe-helpers.h
file path=usr/postgres/16/include/server/libpq/libpq-be.h
file path=usr/postgres/16/include/server/libpq/libpq-fs.h
file path=usr/postgres/16/include/server/libpq/libpq.h
file path=usr/postgres/16/include/server/libpq/pqcomm.h
file path=usr/postgres/16/include/server/libpq/pqformat.h
file path=usr/postgres/16/include/server/libpq/pqmq.h
file path=usr/postgres/16/include/server/libpq/pqsignal.h
file path=usr/postgres/16/include/server/libpq/sasl.h
file path=usr/postgres/16/include/server/libpq/scram.h
file path=usr/postgres/16/include/server/mb/pg_wchar.h
file path=usr/postgres/16/include/server/mb/stringinfo_mb.h
file path=usr/postgres/16/include/server/miscadmin.h
file path=usr/postgres/16/include/server/nodes/bitmapset.h
file path=usr/postgres/16/include/server/nodes/execnodes.h
file path=usr/postgres/16/include/server/nodes/extensible.h
file path=usr/postgres/16/include/server/nodes/lockoptions.h
file path=usr/postgres/16/include/server/nodes/makefuncs.h
file path=usr/postgres/16/include/server/nodes/memnodes.h
file path=usr/postgres/16/include/server/nodes/miscnodes.h
file path=usr/postgres/16/include/server/nodes/multibitmapset.h
file path=usr/postgres/16/include/server/nodes/nodeFuncs.h
file path=usr/postgres/16/include/server/nodes/nodes.h
file path=usr/postgres/16/include/server/nodes/nodetags.h
file path=usr/postgres/16/include/server/nodes/params.h
file path=usr/postgres/16/include/server/nodes/parsenodes.h
file path=usr/postgres/16/include/server/nodes/pathnodes.h
file path=usr/postgres/16/include/server/nodes/pg_list.h
file path=usr/postgres/16/include/server/nodes/plannodes.h
file path=usr/postgres/16/include/server/nodes/primnodes.h
file path=usr/postgres/16/include/server/nodes/print.h
file path=usr/postgres/16/include/server/nodes/queryjumble.h
file path=usr/postgres/16/include/server/nodes/readfuncs.h
file path=usr/postgres/16/include/server/nodes/replnodes.h
file path=usr/postgres/16/include/server/nodes/subscripting.h
file path=usr/postgres/16/include/server/nodes/supportnodes.h
file path=usr/postgres/16/include/server/nodes/tidbitmap.h
file path=usr/postgres/16/include/server/nodes/value.h
file path=usr/postgres/16/include/server/optimizer/appendinfo.h
file path=usr/postgres/16/include/server/optimizer/clauses.h
file path=usr/postgres/16/include/server/optimizer/cost.h
file path=usr/postgres/16/include/server/optimizer/geqo.h
file path=usr/postgres/16/include/server/optimizer/geqo_copy.h
file path=usr/postgres/16/include/server/optimizer/geqo_gene.h
file path=usr/postgres/16/include/server/optimizer/geqo_misc.h
file path=usr/postgres/16/include/server/optimizer/geqo_mutation.h
file path=usr/postgres/16/include/server/optimizer/geqo_pool.h
file path=usr/postgres/16/include/server/optimizer/geqo_random.h
file path=usr/postgres/16/include/server/optimizer/geqo_recombination.h
file path=usr/postgres/16/include/server/optimizer/geqo_selection.h
file path=usr/postgres/16/include/server/optimizer/inherit.h
file path=usr/postgres/16/include/server/optimizer/joininfo.h
file path=usr/postgres/16/include/server/optimizer/optimizer.h
file path=usr/postgres/16/include/server/optimizer/orclauses.h
file path=usr/postgres/16/include/server/optimizer/paramassign.h
file path=usr/postgres/16/include/server/optimizer/pathnode.h
file path=usr/postgres/16/include/server/optimizer/paths.h
file path=usr/postgres/16/include/server/optimizer/placeholder.h
file path=usr/postgres/16/include/server/optimizer/plancat.h
file path=usr/postgres/16/include/server/optimizer/planmain.h
file path=usr/postgres/16/include/server/optimizer/planner.h
file path=usr/postgres/16/include/server/optimizer/prep.h
file path=usr/postgres/16/include/server/optimizer/restrictinfo.h
file path=usr/postgres/16/include/server/optimizer/subselect.h
file path=usr/postgres/16/include/server/optimizer/tlist.h
file path=usr/postgres/16/include/server/parser/analyze.h
file path=usr/postgres/16/include/server/parser/kwlist.h
file path=usr/postgres/16/include/server/parser/parse_agg.h
file path=usr/postgres/16/include/server/parser/parse_clause.h
file path=usr/postgres/16/include/server/parser/parse_coerce.h
file path=usr/postgres/16/include/server/parser/parse_collate.h
file path=usr/postgres/16/include/server/parser/parse_cte.h
file path=usr/postgres/16/include/server/parser/parse_enr.h
file path=usr/postgres/16/include/server/parser/parse_expr.h
file path=usr/postgres/16/include/server/parser/parse_func.h
file path=usr/postgres/16/include/server/parser/parse_merge.h
file path=usr/postgres/16/include/server/parser/parse_node.h
file path=usr/postgres/16/include/server/parser/parse_oper.h
file path=usr/postgres/16/include/server/parser/parse_param.h
file path=usr/postgres/16/include/server/parser/parse_relation.h
file path=usr/postgres/16/include/server/parser/parse_target.h
file path=usr/postgres/16/include/server/parser/parse_type.h
file path=usr/postgres/16/include/server/parser/parse_utilcmd.h
file path=usr/postgres/16/include/server/parser/parser.h
file path=usr/postgres/16/include/server/parser/parsetree.h
file path=usr/postgres/16/include/server/parser/scanner.h
file path=usr/postgres/16/include/server/parser/scansup.h
file path=usr/postgres/16/include/server/partitioning/partbounds.h
file path=usr/postgres/16/include/server/partitioning/partdefs.h
file path=usr/postgres/16/include/server/partitioning/partdesc.h
file path=usr/postgres/16/include/server/partitioning/partprune.h
file path=usr/postgres/16/include/server/pg_config-32.h
file path=usr/postgres/16/include/server/pg_config-64.h
file path=usr/postgres/16/include/server/pg_config_ext.h
file path=usr/postgres/16/include/server/pg_config_manual.h
file path=usr/postgres/16/include/server/pg_config_os.h
file path=usr/postgres/16/include/server/pg_getopt.h
file path=usr/postgres/16/include/server/pg_trace.h
file path=usr/postgres/16/include/server/pgstat.h
file path=usr/postgres/16/include/server/pgtar.h
file path=usr/postgres/16/include/server/pgtime.h
file path=usr/postgres/16/include/server/plperl.h
file path=usr/postgres/16/include/server/plperl_system.h
file path=usr/postgres/16/include/server/plpgsql.h
file path=usr/postgres/16/include/server/plpy_cursorobject.h
file path=usr/postgres/16/include/server/plpy_elog.h
file path=usr/postgres/16/include/server/plpy_exec.h
file path=usr/postgres/16/include/server/plpy_main.h
file path=usr/postgres/16/include/server/plpy_planobject.h
file path=usr/postgres/16/include/server/plpy_plpymodule.h
file path=usr/postgres/16/include/server/plpy_procedure.h
file path=usr/postgres/16/include/server/plpy_resultobject.h
file path=usr/postgres/16/include/server/plpy_spi.h
file path=usr/postgres/16/include/server/plpy_subxactobject.h
file path=usr/postgres/16/include/server/plpy_typeio.h
file path=usr/postgres/16/include/server/plpy_util.h
file path=usr/postgres/16/include/server/plpython.h
file path=usr/postgres/16/include/server/plpython_system.h
file path=usr/postgres/16/include/server/port.h
file path=usr/postgres/16/include/server/port/aix.h
file path=usr/postgres/16/include/server/port/atomics.h
file path=usr/postgres/16/include/server/port/atomics/arch-arm.h
file path=usr/postgres/16/include/server/port/atomics/arch-hppa.h
file path=usr/postgres/16/include/server/port/atomics/arch-ppc.h
file path=usr/postgres/16/include/server/port/atomics/arch-x86.h
file path=usr/postgres/16/include/server/port/atomics/fallback.h
file path=usr/postgres/16/include/server/port/atomics/generic-gcc.h
file path=usr/postgres/16/include/server/port/atomics/generic-msvc.h
file path=usr/postgres/16/include/server/port/atomics/generic-sunpro.h
file path=usr/postgres/16/include/server/port/atomics/generic.h
file path=usr/postgres/16/include/server/port/cygwin.h
file path=usr/postgres/16/include/server/port/darwin.h
file path=usr/postgres/16/include/server/port/freebsd.h
file path=usr/postgres/16/include/server/port/linux.h
file path=usr/postgres/16/include/server/port/netbsd.h
file path=usr/postgres/16/include/server/port/openbsd.h
file path=usr/postgres/16/include/server/port/pg_bitutils.h
file path=usr/postgres/16/include/server/port/pg_bswap.h
file path=usr/postgres/16/include/server/port/pg_crc32c.h
file path=usr/postgres/16/include/server/port/pg_iovec.h
file path=usr/postgres/16/include/server/port/pg_lfind.h
file path=usr/postgres/16/include/server/port/pg_pthread.h
file path=usr/postgres/16/include/server/port/simd.h
file path=usr/postgres/16/include/server/port/solaris.h
file path=usr/postgres/16/include/server/port/win32.h
file path=usr/postgres/16/include/server/port/win32/arpa/inet.h
file path=usr/postgres/16/include/server/port/win32/dlfcn.h
file path=usr/postgres/16/include/server/port/win32/grp.h
file path=usr/postgres/16/include/server/port/win32/netdb.h
file path=usr/postgres/16/include/server/port/win32/netinet/in.h
file path=usr/postgres/16/include/server/port/win32/netinet/tcp.h
file path=usr/postgres/16/include/server/port/win32/pwd.h
file path=usr/postgres/16/include/server/port/win32/sys/resource.h
file path=usr/postgres/16/include/server/port/win32/sys/select.h
file path=usr/postgres/16/include/server/port/win32/sys/socket.h
file path=usr/postgres/16/include/server/port/win32/sys/un.h
file path=usr/postgres/16/include/server/port/win32/sys/wait.h
file path=usr/postgres/16/include/server/port/win32_msvc/dirent.h
file path=usr/postgres/16/include/server/port/win32_msvc/sys/file.h
file path=usr/postgres/16/include/server/port/win32_msvc/sys/param.h
file path=usr/postgres/16/include/server/port/win32_msvc/sys/time.h
file path=usr/postgres/16/include/server/port/win32_msvc/unistd.h
file path=usr/postgres/16/include/server/port/win32_msvc/utime.h
file path=usr/postgres/16/include/server/port/win32_port.h
file path=usr/postgres/16/include/server/port/win32ntdll.h
file path=usr/postgres/16/include/server/portability/instr_time.h
file path=usr/postgres/16/include/server/portability/mem.h
file path=usr/postgres/16/include/server/postgres.h
file path=usr/postgres/16/include/server/postgres_ext.h
file path=usr/postgres/16/include/server/postgres_fe.h
file path=usr/postgres/16/include/server/postmaster/autovacuum.h
file path=usr/postgres/16/include/server/postmaster/auxprocess.h
file path=usr/postgres/16/include/server/postmaster/bgworker.h
file path=usr/postgres/16/include/server/postmaster/bgworker_internals.h
file path=usr/postgres/16/include/server/postmaster/bgwriter.h
file path=usr/postgres/16/include/server/postmaster/fork_process.h
file path=usr/postgres/16/include/server/postmaster/interrupt.h
file path=usr/postgres/16/include/server/postmaster/pgarch.h
file path=usr/postgres/16/include/server/postmaster/postmaster.h
file path=usr/postgres/16/include/server/postmaster/startup.h
file path=usr/postgres/16/include/server/postmaster/syslogger.h
file path=usr/postgres/16/include/server/postmaster/walwriter.h
file path=usr/postgres/16/include/server/ppport.h
file path=usr/postgres/16/include/server/regex/regcustom.h
file path=usr/postgres/16/include/server/regex/regerrs.h
file path=usr/postgres/16/include/server/regex/regex.h
file path=usr/postgres/16/include/server/regex/regexport.h
file path=usr/postgres/16/include/server/regex/regguts.h
file path=usr/postgres/16/include/server/replication/decode.h
file path=usr/postgres/16/include/server/replication/logical.h
file path=usr/postgres/16/include/server/replication/logicallauncher.h
file path=usr/postgres/16/include/server/replication/logicalproto.h
file path=usr/postgres/16/include/server/replication/logicalrelation.h
file path=usr/postgres/16/include/server/replication/logicalworker.h
file path=usr/postgres/16/include/server/replication/message.h
file path=usr/postgres/16/include/server/replication/origin.h
file path=usr/postgres/16/include/server/replication/output_plugin.h
file path=usr/postgres/16/include/server/replication/pgoutput.h
file path=usr/postgres/16/include/server/replication/reorderbuffer.h
file path=usr/postgres/16/include/server/replication/slot.h
file path=usr/postgres/16/include/server/replication/snapbuild.h
file path=usr/postgres/16/include/server/replication/syncrep.h
file path=usr/postgres/16/include/server/replication/walreceiver.h
file path=usr/postgres/16/include/server/replication/walsender.h
file path=usr/postgres/16/include/server/replication/walsender_private.h
file path=usr/postgres/16/include/server/replication/worker_internal.h
file path=usr/postgres/16/include/server/rewrite/prs2lock.h
file path=usr/postgres/16/include/server/rewrite/rewriteDefine.h
file path=usr/postgres/16/include/server/rewrite/rewriteHandler.h
file path=usr/postgres/16/include/server/rewrite/rewriteManip.h
file path=usr/postgres/16/include/server/rewrite/rewriteRemove.h
file path=usr/postgres/16/include/server/rewrite/rewriteSearchCycle.h
file path=usr/postgres/16/include/server/rewrite/rewriteSupport.h
file path=usr/postgres/16/include/server/rewrite/rowsecurity.h
file path=usr/postgres/16/include/server/snowball/header.h
file path=usr/postgres/16/include/server/snowball/libstemmer/api.h
file path=usr/postgres/16/include/server/snowball/libstemmer/header.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_basque.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_catalan.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_danish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_dutch.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_english.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_finnish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_french.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_german.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_indonesian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_irish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_italian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_norwegian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_porter.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_portuguese.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_spanish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_1_swedish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_2_hungarian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_ISO_8859_2_romanian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_KOI8_R_russian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_arabic.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_armenian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_basque.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_catalan.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_danish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_dutch.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_english.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_finnish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_french.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_german.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_greek.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_hindi.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_hungarian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_indonesian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_irish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_italian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_lithuanian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_nepali.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_norwegian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_porter.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_portuguese.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_romanian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_russian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_serbian.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_spanish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_swedish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_tamil.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_turkish.h
file path=usr/postgres/16/include/server/snowball/libstemmer/stem_UTF_8_yiddish.h
file path=usr/postgres/16/include/server/statistics/extended_stats_internal.h
file path=usr/postgres/16/include/server/statistics/statistics.h
file path=usr/postgres/16/include/server/storage/backendid.h
file path=usr/postgres/16/include/server/storage/barrier.h
file path=usr/postgres/16/include/server/storage/block.h
file path=usr/postgres/16/include/server/storage/buf.h
file path=usr/postgres/16/include/server/storage/buf_internals.h
file path=usr/postgres/16/include/server/storage/buffile.h
file path=usr/postgres/16/include/server/storage/bufmgr.h
file path=usr/postgres/16/include/server/storage/bufpage.h
file path=usr/postgres/16/include/server/storage/checksum.h
file path=usr/postgres/16/include/server/storage/checksum_impl.h
file path=usr/postgres/16/include/server/storage/condition_variable.h
file path=usr/postgres/16/include/server/storage/copydir.h
file path=usr/postgres/16/include/server/storage/dsm.h
file path=usr/postgres/16/include/server/storage/dsm_impl.h
file path=usr/postgres/16/include/server/storage/fd.h
file path=usr/postgres/16/include/server/storage/fileset.h
file path=usr/postgres/16/include/server/storage/freespace.h
file path=usr/postgres/16/include/server/storage/fsm_internals.h
file path=usr/postgres/16/include/server/storage/indexfsm.h
file path=usr/postgres/16/include/server/storage/ipc.h
file path=usr/postgres/16/include/server/storage/item.h
file path=usr/postgres/16/include/server/storage/itemid.h
file path=usr/postgres/16/include/server/storage/itemptr.h
file path=usr/postgres/16/include/server/storage/large_object.h
file path=usr/postgres/16/include/server/storage/latch.h
file path=usr/postgres/16/include/server/storage/lmgr.h
file path=usr/postgres/16/include/server/storage/lock.h
file path=usr/postgres/16/include/server/storage/lockdefs.h
file path=usr/postgres/16/include/server/storage/lwlock.h
file path=usr/postgres/16/include/server/storage/lwlocknames.h
file path=usr/postgres/16/include/server/storage/md.h
file path=usr/postgres/16/include/server/storage/off.h
file path=usr/postgres/16/include/server/storage/pg_sema.h
file path=usr/postgres/16/include/server/storage/pg_shmem.h
file path=usr/postgres/16/include/server/storage/pmsignal.h
file path=usr/postgres/16/include/server/storage/predicate.h
file path=usr/postgres/16/include/server/storage/predicate_internals.h
file path=usr/postgres/16/include/server/storage/proc.h
file path=usr/postgres/16/include/server/storage/procarray.h
file path=usr/postgres/16/include/server/storage/proclist.h
file path=usr/postgres/16/include/server/storage/proclist_types.h
file path=usr/postgres/16/include/server/storage/procsignal.h
file path=usr/postgres/16/include/server/storage/reinit.h
file path=usr/postgres/16/include/server/storage/relfilelocator.h
file path=usr/postgres/16/include/server/storage/s_lock.h
file path=usr/postgres/16/include/server/storage/sharedfileset.h
file path=usr/postgres/16/include/server/storage/shm_mq.h
file path=usr/postgres/16/include/server/storage/shm_toc.h
file path=usr/postgres/16/include/server/storage/shmem.h
file path=usr/postgres/16/include/server/storage/sinval.h
file path=usr/postgres/16/include/server/storage/sinvaladt.h
file path=usr/postgres/16/include/server/storage/smgr.h
file path=usr/postgres/16/include/server/storage/spin.h
file path=usr/postgres/16/include/server/storage/standby.h
file path=usr/postgres/16/include/server/storage/standbydefs.h
file path=usr/postgres/16/include/server/storage/sync.h
file path=usr/postgres/16/include/server/tcop/cmdtag.h
file path=usr/postgres/16/include/server/tcop/cmdtaglist.h
file path=usr/postgres/16/include/server/tcop/deparse_utility.h
file path=usr/postgres/16/include/server/tcop/dest.h
file path=usr/postgres/16/include/server/tcop/fastpath.h
file path=usr/postgres/16/include/server/tcop/pquery.h
file path=usr/postgres/16/include/server/tcop/tcopprot.h
file path=usr/postgres/16/include/server/tcop/utility.h
file path=usr/postgres/16/include/server/tsearch/dicts/regis.h
file path=usr/postgres/16/include/server/tsearch/dicts/spell.h
file path=usr/postgres/16/include/server/tsearch/ts_cache.h
file path=usr/postgres/16/include/server/tsearch/ts_locale.h
file path=usr/postgres/16/include/server/tsearch/ts_public.h
file path=usr/postgres/16/include/server/tsearch/ts_type.h
file path=usr/postgres/16/include/server/tsearch/ts_utils.h
file path=usr/postgres/16/include/server/utils/acl.h
file path=usr/postgres/16/include/server/utils/aclchk_internal.h
file path=usr/postgres/16/include/server/utils/array.h
file path=usr/postgres/16/include/server/utils/arrayaccess.h
file path=usr/postgres/16/include/server/utils/ascii.h
file path=usr/postgres/16/include/server/utils/attoptcache.h
file path=usr/postgres/16/include/server/utils/backend_progress.h
file path=usr/postgres/16/include/server/utils/backend_status.h
file path=usr/postgres/16/include/server/utils/builtins.h
file path=usr/postgres/16/include/server/utils/bytea.h
file path=usr/postgres/16/include/server/utils/cash.h
file path=usr/postgres/16/include/server/utils/catcache.h
file path=usr/postgres/16/include/server/utils/combocid.h
file path=usr/postgres/16/include/server/utils/conffiles.h
file path=usr/postgres/16/include/server/utils/date.h
file path=usr/postgres/16/include/server/utils/datetime.h
file path=usr/postgres/16/include/server/utils/datum.h
file path=usr/postgres/16/include/server/utils/dsa.h
file path=usr/postgres/16/include/server/utils/dynahash.h
file path=usr/postgres/16/include/server/utils/elog.h
file path=usr/postgres/16/include/server/utils/errcodes.h
file path=usr/postgres/16/include/server/utils/evtcache.h
file path=usr/postgres/16/include/server/utils/expandeddatum.h
file path=usr/postgres/16/include/server/utils/expandedrecord.h
file path=usr/postgres/16/include/server/utils/float.h
file path=usr/postgres/16/include/server/utils/fmgroids.h
file path=usr/postgres/16/include/server/utils/fmgrprotos.h
file path=usr/postgres/16/include/server/utils/fmgrtab.h
file path=usr/postgres/16/include/server/utils/formatting.h
file path=usr/postgres/16/include/server/utils/freepage.h
file path=usr/postgres/16/include/server/utils/geo_decls.h
file path=usr/postgres/16/include/server/utils/guc.h
file path=usr/postgres/16/include/server/utils/guc_hooks.h
file path=usr/postgres/16/include/server/utils/guc_tables.h
file path=usr/postgres/16/include/server/utils/help_config.h
file path=usr/postgres/16/include/server/utils/hsearch.h
file path=usr/postgres/16/include/server/utils/index_selfuncs.h
file path=usr/postgres/16/include/server/utils/inet.h
file path=usr/postgres/16/include/server/utils/inval.h
file path=usr/postgres/16/include/server/utils/json.h
file path=usr/postgres/16/include/server/utils/jsonb.h
file path=usr/postgres/16/include/server/utils/jsonfuncs.h
file path=usr/postgres/16/include/server/utils/jsonpath.h
file path=usr/postgres/16/include/server/utils/logtape.h
file path=usr/postgres/16/include/server/utils/lsyscache.h
file path=usr/postgres/16/include/server/utils/memdebug.h
file path=usr/postgres/16/include/server/utils/memutils.h
file path=usr/postgres/16/include/server/utils/memutils_internal.h
file path=usr/postgres/16/include/server/utils/memutils_memorychunk.h
file path=usr/postgres/16/include/server/utils/multirangetypes.h
file path=usr/postgres/16/include/server/utils/numeric.h
file path=usr/postgres/16/include/server/utils/old_snapshot.h
file path=usr/postgres/16/include/server/utils/palloc.h
file path=usr/postgres/16/include/server/utils/partcache.h
file path=usr/postgres/16/include/server/utils/pg_crc.h
file path=usr/postgres/16/include/server/utils/pg_locale.h
file path=usr/postgres/16/include/server/utils/pg_lsn.h
file path=usr/postgres/16/include/server/utils/pg_rusage.h
file path=usr/postgres/16/include/server/utils/pgstat_internal.h
file path=usr/postgres/16/include/server/utils/pidfile.h
file path=usr/postgres/16/include/server/utils/plancache.h
file path=usr/postgres/16/include/server/utils/portal.h
file path=usr/postgres/16/include/server/utils/probes.h
file path=usr/postgres/16/include/server/utils/ps_status.h
file path=usr/postgres/16/include/server/utils/queryenvironment.h
file path=usr/postgres/16/include/server/utils/rangetypes.h
file path=usr/postgres/16/include/server/utils/regproc.h
file path=usr/postgres/16/include/server/utils/rel.h
file path=usr/postgres/16/include/server/utils/relcache.h
file path=usr/postgres/16/include/server/utils/relfilenumbermap.h
file path=usr/postgres/16/include/server/utils/relmapper.h
file path=usr/postgres/16/include/server/utils/relptr.h
file path=usr/postgres/16/include/server/utils/reltrigger.h
file path=usr/postgres/16/include/server/utils/resowner.h
file path=usr/postgres/16/include/server/utils/resowner_private.h
file path=usr/postgres/16/include/server/utils/rls.h
file path=usr/postgres/16/include/server/utils/ruleutils.h
file path=usr/postgres/16/include/server/utils/sampling.h
file path=usr/postgres/16/include/server/utils/selfuncs.h
file path=usr/postgres/16/include/server/utils/sharedtuplestore.h
file path=usr/postgres/16/include/server/utils/snapmgr.h
file path=usr/postgres/16/include/server/utils/snapshot.h
file path=usr/postgres/16/include/server/utils/sortsupport.h
file path=usr/postgres/16/include/server/utils/spccache.h
file path=usr/postgres/16/include/server/utils/syscache.h
file path=usr/postgres/16/include/server/utils/timeout.h
file path=usr/postgres/16/include/server/utils/timestamp.h
file path=usr/postgres/16/include/server/utils/tuplesort.h
file path=usr/postgres/16/include/server/utils/tuplestore.h
file path=usr/postgres/16/include/server/utils/typcache.h
file path=usr/postgres/16/include/server/utils/tzparser.h
file path=usr/postgres/16/include/server/utils/usercontext.h
file path=usr/postgres/16/include/server/utils/uuid.h
file path=usr/postgres/16/include/server/utils/varbit.h
file path=usr/postgres/16/include/server/utils/varlena.h
file path=usr/postgres/16/include/server/utils/wait_event.h
file path=usr/postgres/16/include/server/utils/xid8.h
file path=usr/postgres/16/include/server/utils/xml.h
file path=usr/postgres/16/include/server/varatt.h
file path=usr/postgres/16/include/server/windowapi.h
file path=usr/postgres/16/include/sql3types.h
file path=usr/postgres/16/include/sqlca.h
file path=usr/postgres/16/include/sqlda-compat.h
file path=usr/postgres/16/include/sqlda-native.h
file path=usr/postgres/16/include/sqlda.h
file path=usr/postgres/16/lib/$(MACH64)/pgxs/config/install-sh mode=0555
file path=usr/postgres/16/lib/$(MACH64)/pgxs/config/missing
file path=usr/postgres/16/lib/$(MACH64)/pgxs/src/Makefile.global
file path=usr/postgres/16/lib/$(MACH64)/pgxs/src/Makefile.port
file path=usr/postgres/16/lib/$(MACH64)/pgxs/src/Makefile.shlib
file path=usr/postgres/16/lib/$(MACH64)/pgxs/src/makefiles/pgxs.mk
file path=usr/postgres/16/lib/$(MACH64)/pgxs/src/nls-global.mk
file path=usr/postgres/16/lib/$(MACH64)/pgxs/src/test/isolation/isolationtester
file path=usr/postgres/16/lib/$(MACH64)/pgxs/src/test/isolation/pg_isolation_regress
file path=usr/postgres/16/lib/$(MACH64)/pgxs/src/test/regress/pg_regress \
    mode=0555
file path=usr/postgres/16/lib/$(MACH64)/libpgcommon.a
file path=usr/postgres/16/lib/$(MACH64)/libpgcommon_shlib.a
file path=usr/postgres/16/lib/$(MACH64)/libpgfeutils.a
file path=usr/postgres/16/lib/$(MACH64)/libpgport.a
file path=usr/postgres/16/lib/$(MACH64)/libpgport_shlib.a
file path=usr/postgres/16/lib/pgxs/config/install-sh mode=0555
file path=usr/postgres/16/lib/pgxs/config/missing
file path=usr/postgres/16/lib/pgxs/src/Makefile.global
file path=usr/postgres/16/lib/pgxs/src/Makefile.port
file path=usr/postgres/16/lib/pgxs/src/Makefile.shlib
file path=usr/postgres/16/lib/pgxs/src/makefiles/pgxs.mk
file path=usr/postgres/16/lib/pgxs/src/nls-global.mk
file path=usr/postgres/16/lib/libpgcommon.a
file path=usr/postgres/16/lib/libpgcommon_shlib.a
file path=usr/postgres/16/lib/libpgport_shlib.a
file path=usr/postgres/16/lib/libpgfeutils.a
file path=usr/postgres/16/lib/libpgport.a
file path=usr/postgres/16/man/man1/ecpg.1
file path=usr/postgres/16/man/man1/pg_config.1
file path=usr/share/locale/cs/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/de/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/el/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/es/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/he/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/it/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/ta/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_config-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_config-16.mo
components/database/postgresql-16/postgresql16-documentation.p5m
New file
@@ -0,0 +1,1451 @@
#
# 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 2023 Andreas Wacknitz
#
set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)/documentation@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.human-version value=$(HUMAN_VERSION)
set name=pkg.summary value="PostgreSQL 16 documentation and man pages"
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)'
<transform file path=usr.*/man/.+ -> default mangler.man.stability uncommitted>
file path=usr/postgres/16/doc/extension/autoinc.example
file path=usr/postgres/16/doc/extension/insert_username.example
file path=usr/postgres/16/doc/extension/moddatetime.example
file path=usr/postgres/16/doc/extension/refint.example
file path=usr/postgres/16/doc/html/acronyms.html
file path=usr/postgres/16/doc/html/admin.html
file path=usr/postgres/16/doc/html/adminpack.html
file path=usr/postgres/16/doc/html/amcheck.html
file path=usr/postgres/16/doc/html/app-clusterdb.html
file path=usr/postgres/16/doc/html/app-createdb.html
file path=usr/postgres/16/doc/html/app-createuser.html
file path=usr/postgres/16/doc/html/app-dropdb.html
file path=usr/postgres/16/doc/html/app-dropuser.html
file path=usr/postgres/16/doc/html/app-ecpg.html
file path=usr/postgres/16/doc/html/app-initdb.html
file path=usr/postgres/16/doc/html/app-pg-ctl.html
file path=usr/postgres/16/doc/html/app-pg-dumpall.html
file path=usr/postgres/16/doc/html/app-pg-isready.html
file path=usr/postgres/16/doc/html/app-pgamcheck.html
file path=usr/postgres/16/doc/html/app-pgbasebackup.html
file path=usr/postgres/16/doc/html/app-pgchecksums.html
file path=usr/postgres/16/doc/html/app-pgconfig.html
file path=usr/postgres/16/doc/html/app-pgcontroldata.html
file path=usr/postgres/16/doc/html/app-pgdump.html
file path=usr/postgres/16/doc/html/app-pgreceivewal.html
file path=usr/postgres/16/doc/html/app-pgreceivexlog.html
file path=usr/postgres/16/doc/html/app-pgrecvlogical.html
file path=usr/postgres/16/doc/html/app-pgresetwal.html
file path=usr/postgres/16/doc/html/app-pgresetxlog.html
file path=usr/postgres/16/doc/html/app-pgrestore.html
file path=usr/postgres/16/doc/html/app-pgrewind.html
file path=usr/postgres/16/doc/html/app-pgverifybackup.html
file path=usr/postgres/16/doc/html/app-postgres.html
file path=usr/postgres/16/doc/html/app-psql.html
file path=usr/postgres/16/doc/html/app-reindexdb.html
file path=usr/postgres/16/doc/html/app-vacuumdb.html
file path=usr/postgres/16/doc/html/appendix-obsolete.html
file path=usr/postgres/16/doc/html/appendixes.html
file path=usr/postgres/16/doc/html/applevel-consistency.html
file path=usr/postgres/16/doc/html/archive-module-callbacks.html
file path=usr/postgres/16/doc/html/archive-module-init.html
file path=usr/postgres/16/doc/html/archive-modules.html
file path=usr/postgres/16/doc/html/arrays.html
file path=usr/postgres/16/doc/html/auth-bsd.html
file path=usr/postgres/16/doc/html/auth-cert.html
file path=usr/postgres/16/doc/html/auth-delay.html
file path=usr/postgres/16/doc/html/auth-ident.html
file path=usr/postgres/16/doc/html/auth-ldap.html
file path=usr/postgres/16/doc/html/auth-methods.html
file path=usr/postgres/16/doc/html/auth-pam.html
file path=usr/postgres/16/doc/html/auth-password.html
file path=usr/postgres/16/doc/html/auth-peer.html
file path=usr/postgres/16/doc/html/auth-pg-hba-conf.html
file path=usr/postgres/16/doc/html/auth-radius.html
file path=usr/postgres/16/doc/html/auth-trust.html
file path=usr/postgres/16/doc/html/auth-username-maps.html
file path=usr/postgres/16/doc/html/auto-explain.html
file path=usr/postgres/16/doc/html/backup-dump.html
file path=usr/postgres/16/doc/html/backup-file.html
file path=usr/postgres/16/doc/html/backup-manifest-files.html
file path=usr/postgres/16/doc/html/backup-manifest-format.html
file path=usr/postgres/16/doc/html/backup-manifest-toplevel.html
file path=usr/postgres/16/doc/html/backup-manifest-wal-ranges.html
file path=usr/postgres/16/doc/html/backup.html
file path=usr/postgres/16/doc/html/basebackup-to-shell.html
file path=usr/postgres/16/doc/html/basic-archive.html
file path=usr/postgres/16/doc/html/bgworker.html
file path=usr/postgres/16/doc/html/biblio.html
file path=usr/postgres/16/doc/html/bki-commands.html
file path=usr/postgres/16/doc/html/bki-example.html
file path=usr/postgres/16/doc/html/bki-format.html
file path=usr/postgres/16/doc/html/bki-structure.html
file path=usr/postgres/16/doc/html/bki.html
file path=usr/postgres/16/doc/html/bloom.html
file path=usr/postgres/16/doc/html/bookindex.html
file path=usr/postgres/16/doc/html/brin-builtin-opclasses.html
file path=usr/postgres/16/doc/html/brin-extensibility.html
file path=usr/postgres/16/doc/html/brin-intro.html
file path=usr/postgres/16/doc/html/brin.html
file path=usr/postgres/16/doc/html/btree-behavior.html
file path=usr/postgres/16/doc/html/btree-gin.html
file path=usr/postgres/16/doc/html/btree-gist.html
file path=usr/postgres/16/doc/html/btree-implementation.html
file path=usr/postgres/16/doc/html/btree-intro.html
file path=usr/postgres/16/doc/html/btree-support-funcs.html
file path=usr/postgres/16/doc/html/btree.html
file path=usr/postgres/16/doc/html/bug-reporting.html
file path=usr/postgres/16/doc/html/catalog-pg-aggregate.html
file path=usr/postgres/16/doc/html/catalog-pg-am.html
file path=usr/postgres/16/doc/html/catalog-pg-amop.html
file path=usr/postgres/16/doc/html/catalog-pg-amproc.html
file path=usr/postgres/16/doc/html/catalog-pg-attrdef.html
file path=usr/postgres/16/doc/html/catalog-pg-attribute.html
file path=usr/postgres/16/doc/html/catalog-pg-auth-members.html
file path=usr/postgres/16/doc/html/catalog-pg-authid.html
file path=usr/postgres/16/doc/html/catalog-pg-cast.html
file path=usr/postgres/16/doc/html/catalog-pg-class.html
file path=usr/postgres/16/doc/html/catalog-pg-collation.html
file path=usr/postgres/16/doc/html/catalog-pg-constraint.html
file path=usr/postgres/16/doc/html/catalog-pg-conversion.html
file path=usr/postgres/16/doc/html/catalog-pg-database.html
file path=usr/postgres/16/doc/html/catalog-pg-db-role-setting.html
file path=usr/postgres/16/doc/html/catalog-pg-default-acl.html
file path=usr/postgres/16/doc/html/catalog-pg-depend.html
file path=usr/postgres/16/doc/html/catalog-pg-description.html
file path=usr/postgres/16/doc/html/catalog-pg-enum.html
file path=usr/postgres/16/doc/html/catalog-pg-event-trigger.html
file path=usr/postgres/16/doc/html/catalog-pg-extension.html
file path=usr/postgres/16/doc/html/catalog-pg-foreign-data-wrapper.html
file path=usr/postgres/16/doc/html/catalog-pg-foreign-server.html
file path=usr/postgres/16/doc/html/catalog-pg-foreign-table.html
file path=usr/postgres/16/doc/html/catalog-pg-index.html
file path=usr/postgres/16/doc/html/catalog-pg-inherits.html
file path=usr/postgres/16/doc/html/catalog-pg-init-privs.html
file path=usr/postgres/16/doc/html/catalog-pg-language.html
file path=usr/postgres/16/doc/html/catalog-pg-largeobject-metadata.html
file path=usr/postgres/16/doc/html/catalog-pg-largeobject.html
file path=usr/postgres/16/doc/html/catalog-pg-namespace.html
file path=usr/postgres/16/doc/html/catalog-pg-opclass.html
file path=usr/postgres/16/doc/html/catalog-pg-operator.html
file path=usr/postgres/16/doc/html/catalog-pg-opfamily.html
file path=usr/postgres/16/doc/html/catalog-pg-parameter-acl.html
file path=usr/postgres/16/doc/html/catalog-pg-partitioned-table.html
file path=usr/postgres/16/doc/html/catalog-pg-policy.html
file path=usr/postgres/16/doc/html/catalog-pg-proc.html
file path=usr/postgres/16/doc/html/catalog-pg-publication-namespace.html
file path=usr/postgres/16/doc/html/catalog-pg-publication-rel.html
file path=usr/postgres/16/doc/html/catalog-pg-publication.html
file path=usr/postgres/16/doc/html/catalog-pg-range.html
file path=usr/postgres/16/doc/html/catalog-pg-replication-origin.html
file path=usr/postgres/16/doc/html/catalog-pg-rewrite.html
file path=usr/postgres/16/doc/html/catalog-pg-seclabel.html
file path=usr/postgres/16/doc/html/catalog-pg-sequence.html
file path=usr/postgres/16/doc/html/catalog-pg-shdepend.html
file path=usr/postgres/16/doc/html/catalog-pg-shdescription.html
file path=usr/postgres/16/doc/html/catalog-pg-shseclabel.html
file path=usr/postgres/16/doc/html/catalog-pg-statistic-ext-data.html
file path=usr/postgres/16/doc/html/catalog-pg-statistic-ext.html
file path=usr/postgres/16/doc/html/catalog-pg-statistic.html
file path=usr/postgres/16/doc/html/catalog-pg-subscription-rel.html
file path=usr/postgres/16/doc/html/catalog-pg-subscription.html
file path=usr/postgres/16/doc/html/catalog-pg-tablespace.html
file path=usr/postgres/16/doc/html/catalog-pg-transform.html
file path=usr/postgres/16/doc/html/catalog-pg-trigger.html
file path=usr/postgres/16/doc/html/catalog-pg-ts-config-map.html
file path=usr/postgres/16/doc/html/catalog-pg-ts-config.html
file path=usr/postgres/16/doc/html/catalog-pg-ts-dict.html
file path=usr/postgres/16/doc/html/catalog-pg-ts-parser.html
file path=usr/postgres/16/doc/html/catalog-pg-ts-template.html
file path=usr/postgres/16/doc/html/catalog-pg-type.html
file path=usr/postgres/16/doc/html/catalog-pg-user-mapping.html
file path=usr/postgres/16/doc/html/catalogs-overview.html
file path=usr/postgres/16/doc/html/catalogs.html
file path=usr/postgres/16/doc/html/charset.html
file path=usr/postgres/16/doc/html/checksums.html
file path=usr/postgres/16/doc/html/citext.html
file path=usr/postgres/16/doc/html/client-authentication-problems.html
file path=usr/postgres/16/doc/html/client-authentication.html
file path=usr/postgres/16/doc/html/client-interfaces.html
file path=usr/postgres/16/doc/html/collation.html
file path=usr/postgres/16/doc/html/color-when.html
file path=usr/postgres/16/doc/html/color-which.html
file path=usr/postgres/16/doc/html/color.html
file path=usr/postgres/16/doc/html/config-setting.html
file path=usr/postgres/16/doc/html/connect-estab.html
file path=usr/postgres/16/doc/html/continuous-archiving.html
file path=usr/postgres/16/doc/html/contrib-dblink-build-sql-delete.html
file path=usr/postgres/16/doc/html/contrib-dblink-build-sql-insert.html
file path=usr/postgres/16/doc/html/contrib-dblink-build-sql-update.html
file path=usr/postgres/16/doc/html/contrib-dblink-cancel-query.html
file path=usr/postgres/16/doc/html/contrib-dblink-close.html
file path=usr/postgres/16/doc/html/contrib-dblink-connect-u.html
file path=usr/postgres/16/doc/html/contrib-dblink-connect.html
file path=usr/postgres/16/doc/html/contrib-dblink-disconnect.html
file path=usr/postgres/16/doc/html/contrib-dblink-error-message.html
file path=usr/postgres/16/doc/html/contrib-dblink-exec.html
file path=usr/postgres/16/doc/html/contrib-dblink-fetch.html
file path=usr/postgres/16/doc/html/contrib-dblink-function.html
file path=usr/postgres/16/doc/html/contrib-dblink-get-connections.html
file path=usr/postgres/16/doc/html/contrib-dblink-get-notify.html
file path=usr/postgres/16/doc/html/contrib-dblink-get-pkey.html
file path=usr/postgres/16/doc/html/contrib-dblink-get-result.html
file path=usr/postgres/16/doc/html/contrib-dblink-is-busy.html
file path=usr/postgres/16/doc/html/contrib-dblink-open.html
file path=usr/postgres/16/doc/html/contrib-dblink-send-query.html
file path=usr/postgres/16/doc/html/contrib-prog-client.html
file path=usr/postgres/16/doc/html/contrib-prog-server.html
file path=usr/postgres/16/doc/html/contrib-prog.html
file path=usr/postgres/16/doc/html/contrib-spi.html
file path=usr/postgres/16/doc/html/contrib.html
file path=usr/postgres/16/doc/html/creating-cluster.html
file path=usr/postgres/16/doc/html/cube.html
file path=usr/postgres/16/doc/html/custom-rmgr.html
file path=usr/postgres/16/doc/html/custom-scan-execution.html
file path=usr/postgres/16/doc/html/custom-scan-path.html
file path=usr/postgres/16/doc/html/custom-scan-plan.html
file path=usr/postgres/16/doc/html/custom-scan.html
file path=usr/postgres/16/doc/html/database-roles.html
file path=usr/postgres/16/doc/html/datatype-binary.html
file path=usr/postgres/16/doc/html/datatype-bit.html
file path=usr/postgres/16/doc/html/datatype-boolean.html
file path=usr/postgres/16/doc/html/datatype-character.html
file path=usr/postgres/16/doc/html/datatype-datetime.html
file path=usr/postgres/16/doc/html/datatype-enum.html
file path=usr/postgres/16/doc/html/datatype-geometric.html
file path=usr/postgres/16/doc/html/datatype-json.html
file path=usr/postgres/16/doc/html/datatype-money.html
file path=usr/postgres/16/doc/html/datatype-net-types.html
file path=usr/postgres/16/doc/html/datatype-numeric.html
file path=usr/postgres/16/doc/html/datatype-oid.html
file path=usr/postgres/16/doc/html/datatype-pg-lsn.html
file path=usr/postgres/16/doc/html/datatype-pseudo.html
file path=usr/postgres/16/doc/html/datatype-textsearch.html
file path=usr/postgres/16/doc/html/datatype-uuid.html
file path=usr/postgres/16/doc/html/datatype-xml.html
file path=usr/postgres/16/doc/html/datatype.html
file path=usr/postgres/16/doc/html/datetime-appendix.html
file path=usr/postgres/16/doc/html/datetime-config-files.html
file path=usr/postgres/16/doc/html/datetime-input-rules.html
file path=usr/postgres/16/doc/html/datetime-invalid-input.html
file path=usr/postgres/16/doc/html/datetime-julian-dates.html
file path=usr/postgres/16/doc/html/datetime-keywords.html
file path=usr/postgres/16/doc/html/datetime-posix-timezone-specs.html
file path=usr/postgres/16/doc/html/datetime-units-history.html
file path=usr/postgres/16/doc/html/dblink.html
file path=usr/postgres/16/doc/html/ddl-alter.html
file path=usr/postgres/16/doc/html/ddl-basics.html
file path=usr/postgres/16/doc/html/ddl-constraints.html
file path=usr/postgres/16/doc/html/ddl-default.html
file path=usr/postgres/16/doc/html/ddl-depend.html
file path=usr/postgres/16/doc/html/ddl-foreign-data.html
file path=usr/postgres/16/doc/html/ddl-generated-columns.html
file path=usr/postgres/16/doc/html/ddl-inherit.html
file path=usr/postgres/16/doc/html/ddl-others.html
file path=usr/postgres/16/doc/html/ddl-partitioning.html
file path=usr/postgres/16/doc/html/ddl-priv.html
file path=usr/postgres/16/doc/html/ddl-rowsecurity.html
file path=usr/postgres/16/doc/html/ddl-schemas.html
file path=usr/postgres/16/doc/html/ddl-system-columns.html
file path=usr/postgres/16/doc/html/ddl.html
file path=usr/postgres/16/doc/html/default-roles.html
file path=usr/postgres/16/doc/html/dict-int.html
file path=usr/postgres/16/doc/html/dict-xsyn.html
file path=usr/postgres/16/doc/html/different-replication-solutions.html
file path=usr/postgres/16/doc/html/disk-full.html
file path=usr/postgres/16/doc/html/disk-usage.html
file path=usr/postgres/16/doc/html/diskusage.html
file path=usr/postgres/16/doc/html/dml-delete.html
file path=usr/postgres/16/doc/html/dml-insert.html
file path=usr/postgres/16/doc/html/dml-returning.html
file path=usr/postgres/16/doc/html/dml-update.html
file path=usr/postgres/16/doc/html/dml.html
file path=usr/postgres/16/doc/html/docguide-authoring.html
file path=usr/postgres/16/doc/html/docguide-build-meson.html
file path=usr/postgres/16/doc/html/docguide-build.html
file path=usr/postgres/16/doc/html/docguide-docbook.html
file path=usr/postgres/16/doc/html/docguide-style.html
file path=usr/postgres/16/doc/html/docguide-toolsets.html
file path=usr/postgres/16/doc/html/docguide.html
file path=usr/postgres/16/doc/html/domains.html
file path=usr/postgres/16/doc/html/dynamic-trace.html
file path=usr/postgres/16/doc/html/earthdistance.html
file path=usr/postgres/16/doc/html/ecpg-commands.html
file path=usr/postgres/16/doc/html/ecpg-concept.html
file path=usr/postgres/16/doc/html/ecpg-connect.html
file path=usr/postgres/16/doc/html/ecpg-cpp.html
file path=usr/postgres/16/doc/html/ecpg-descriptors.html
file path=usr/postgres/16/doc/html/ecpg-develop.html
file path=usr/postgres/16/doc/html/ecpg-dynamic.html
file path=usr/postgres/16/doc/html/ecpg-errors.html
file path=usr/postgres/16/doc/html/ecpg-informix-compat.html
file path=usr/postgres/16/doc/html/ecpg-library.html
file path=usr/postgres/16/doc/html/ecpg-lo.html
file path=usr/postgres/16/doc/html/ecpg-oracle-compat.html
file path=usr/postgres/16/doc/html/ecpg-pgtypes.html
file path=usr/postgres/16/doc/html/ecpg-preproc.html
file path=usr/postgres/16/doc/html/ecpg-process.html
file path=usr/postgres/16/doc/html/ecpg-sql-allocate-descriptor.html
file path=usr/postgres/16/doc/html/ecpg-sql-commands.html
file path=usr/postgres/16/doc/html/ecpg-sql-connect.html
file path=usr/postgres/16/doc/html/ecpg-sql-deallocate-descriptor.html
file path=usr/postgres/16/doc/html/ecpg-sql-declare-statement.html
file path=usr/postgres/16/doc/html/ecpg-sql-declare.html
file path=usr/postgres/16/doc/html/ecpg-sql-describe.html
file path=usr/postgres/16/doc/html/ecpg-sql-disconnect.html
file path=usr/postgres/16/doc/html/ecpg-sql-execute-immediate.html
file path=usr/postgres/16/doc/html/ecpg-sql-get-descriptor.html
file path=usr/postgres/16/doc/html/ecpg-sql-open.html
file path=usr/postgres/16/doc/html/ecpg-sql-prepare.html
file path=usr/postgres/16/doc/html/ecpg-sql-set-autocommit.html
file path=usr/postgres/16/doc/html/ecpg-sql-set-connection.html
file path=usr/postgres/16/doc/html/ecpg-sql-set-descriptor.html
file path=usr/postgres/16/doc/html/ecpg-sql-type.html
file path=usr/postgres/16/doc/html/ecpg-sql-var.html
file path=usr/postgres/16/doc/html/ecpg-sql-whenever.html
file path=usr/postgres/16/doc/html/ecpg-variables.html
file path=usr/postgres/16/doc/html/ecpg.html
file path=usr/postgres/16/doc/html/encryption-options.html
file path=usr/postgres/16/doc/html/errcodes-appendix.html
file path=usr/postgres/16/doc/html/error-message-reporting.html
file path=usr/postgres/16/doc/html/error-style-guide.html
file path=usr/postgres/16/doc/html/event-log-registration.html
file path=usr/postgres/16/doc/html/event-trigger-definition.html
file path=usr/postgres/16/doc/html/event-trigger-example.html
file path=usr/postgres/16/doc/html/event-trigger-interface.html
file path=usr/postgres/16/doc/html/event-trigger-matrix.html
file path=usr/postgres/16/doc/html/event-trigger-table-rewrite-example.html
file path=usr/postgres/16/doc/html/event-triggers.html
file path=usr/postgres/16/doc/html/executor.html
file path=usr/postgres/16/doc/html/explicit-joins.html
file path=usr/postgres/16/doc/html/explicit-locking.html
file path=usr/postgres/16/doc/html/extend-extensions.html
file path=usr/postgres/16/doc/html/extend-how.html
file path=usr/postgres/16/doc/html/extend-pgxs.html
file path=usr/postgres/16/doc/html/extend-type-system.html
file path=usr/postgres/16/doc/html/extend.html
file path=usr/postgres/16/doc/html/external-admin-tools.html
file path=usr/postgres/16/doc/html/external-extensions.html
file path=usr/postgres/16/doc/html/external-interfaces.html
file path=usr/postgres/16/doc/html/external-pl.html
file path=usr/postgres/16/doc/html/external-projects.html
file path=usr/postgres/16/doc/html/fdw-callbacks.html
file path=usr/postgres/16/doc/html/fdw-functions.html
file path=usr/postgres/16/doc/html/fdw-helpers.html
file path=usr/postgres/16/doc/html/fdw-planning.html
file path=usr/postgres/16/doc/html/fdw-row-locking.html
file path=usr/postgres/16/doc/html/fdwhandler.html
file path=usr/postgres/16/doc/html/features-sql-standard.html
file path=usr/postgres/16/doc/html/features.html
file path=usr/postgres/16/doc/html/file-fdw.html
file path=usr/postgres/16/doc/html/functions-admin.html
file path=usr/postgres/16/doc/html/functions-aggregate.html
file path=usr/postgres/16/doc/html/functions-array.html
file path=usr/postgres/16/doc/html/functions-binarystring.html
file path=usr/postgres/16/doc/html/functions-bitstring.html
file path=usr/postgres/16/doc/html/functions-comparison.html
file path=usr/postgres/16/doc/html/functions-comparisons.html
file path=usr/postgres/16/doc/html/functions-conditional.html
file path=usr/postgres/16/doc/html/functions-datetime.html
file path=usr/postgres/16/doc/html/functions-enum.html
file path=usr/postgres/16/doc/html/functions-event-triggers.html
file path=usr/postgres/16/doc/html/functions-formatting.html
file path=usr/postgres/16/doc/html/functions-geometry.html
file path=usr/postgres/16/doc/html/functions-info.html
file path=usr/postgres/16/doc/html/functions-json.html
file path=usr/postgres/16/doc/html/functions-logical.html
file path=usr/postgres/16/doc/html/functions-matching.html
file path=usr/postgres/16/doc/html/functions-math.html
file path=usr/postgres/16/doc/html/functions-net.html
file path=usr/postgres/16/doc/html/functions-range.html
file path=usr/postgres/16/doc/html/functions-sequence.html
file path=usr/postgres/16/doc/html/functions-srf.html
file path=usr/postgres/16/doc/html/functions-statistics.html
file path=usr/postgres/16/doc/html/functions-string.html
file path=usr/postgres/16/doc/html/functions-subquery.html
file path=usr/postgres/16/doc/html/functions-textsearch.html
file path=usr/postgres/16/doc/html/functions-trigger.html
file path=usr/postgres/16/doc/html/functions-uuid.html
file path=usr/postgres/16/doc/html/functions-window.html
file path=usr/postgres/16/doc/html/functions-xml.html
file path=usr/postgres/16/doc/html/functions.html
file path=usr/postgres/16/doc/html/fuzzystrmatch.html
file path=usr/postgres/16/doc/html/generic-wal.html
file path=usr/postgres/16/doc/html/genetic-algorithm.svg
file path=usr/postgres/16/doc/html/geqo-biblio.html
file path=usr/postgres/16/doc/html/geqo-intro.html
file path=usr/postgres/16/doc/html/geqo-intro2.html
file path=usr/postgres/16/doc/html/geqo-pg-intro.html
file path=usr/postgres/16/doc/html/geqo.html
file path=usr/postgres/16/doc/html/gin-builtin-opclasses.html
file path=usr/postgres/16/doc/html/gin-examples.html
file path=usr/postgres/16/doc/html/gin-extensibility.html
file path=usr/postgres/16/doc/html/gin-implementation.html
file path=usr/postgres/16/doc/html/gin-intro.html
file path=usr/postgres/16/doc/html/gin-limit.html
file path=usr/postgres/16/doc/html/gin-tips.html
file path=usr/postgres/16/doc/html/gin.html
file path=usr/postgres/16/doc/html/gin.svg
file path=usr/postgres/16/doc/html/gist-builtin-opclasses.html
file path=usr/postgres/16/doc/html/gist-examples.html
file path=usr/postgres/16/doc/html/gist-extensibility.html
file path=usr/postgres/16/doc/html/gist-implementation.html
file path=usr/postgres/16/doc/html/gist-intro.html
file path=usr/postgres/16/doc/html/gist.html
file path=usr/postgres/16/doc/html/git.html
file path=usr/postgres/16/doc/html/glossary.html
file path=usr/postgres/16/doc/html/gssapi-auth.html
file path=usr/postgres/16/doc/html/gssapi-enc.html
file path=usr/postgres/16/doc/html/hash-implementation.html
file path=usr/postgres/16/doc/html/hash-index.html
file path=usr/postgres/16/doc/html/hash-intro.html
file path=usr/postgres/16/doc/html/high-availability.html
file path=usr/postgres/16/doc/html/history.html
file path=usr/postgres/16/doc/html/hot-standby.html
file path=usr/postgres/16/doc/html/how-parallel-query-works.html
file path=usr/postgres/16/doc/html/hstore.html
file path=usr/postgres/16/doc/html/index-api.html
file path=usr/postgres/16/doc/html/index-cost-estimation.html
file path=usr/postgres/16/doc/html/index-functions.html
file path=usr/postgres/16/doc/html/index-locking.html
file path=usr/postgres/16/doc/html/index-scanning.html
file path=usr/postgres/16/doc/html/index-unique-checks.html
file path=usr/postgres/16/doc/html/index.html
file path=usr/postgres/16/doc/html/indexam.html
file path=usr/postgres/16/doc/html/indexes-bitmap-scans.html
file path=usr/postgres/16/doc/html/indexes-collations.html
file path=usr/postgres/16/doc/html/indexes-examine.html
file path=usr/postgres/16/doc/html/indexes-expressional.html
file path=usr/postgres/16/doc/html/indexes-index-only-scans.html
file path=usr/postgres/16/doc/html/indexes-intro.html
file path=usr/postgres/16/doc/html/indexes-multicolumn.html
file path=usr/postgres/16/doc/html/indexes-opclass.html
file path=usr/postgres/16/doc/html/indexes-ordering.html
file path=usr/postgres/16/doc/html/indexes-partial.html
file path=usr/postgres/16/doc/html/indexes-types.html
file path=usr/postgres/16/doc/html/indexes-unique.html
file path=usr/postgres/16/doc/html/indexes.html
file path=usr/postgres/16/doc/html/information-schema.html
file path=usr/postgres/16/doc/html/infoschema-administrable-role-authorizations.html
file path=usr/postgres/16/doc/html/infoschema-applicable-roles.html
file path=usr/postgres/16/doc/html/infoschema-attributes.html
file path=usr/postgres/16/doc/html/infoschema-character-sets.html
file path=usr/postgres/16/doc/html/infoschema-check-constraint-routine-usage.html
file path=usr/postgres/16/doc/html/infoschema-check-constraints.html
file path=usr/postgres/16/doc/html/infoschema-collation-character-set-applicab.html
file path=usr/postgres/16/doc/html/infoschema-collations.html
file path=usr/postgres/16/doc/html/infoschema-column-column-usage.html
file path=usr/postgres/16/doc/html/infoschema-column-domain-usage.html
file path=usr/postgres/16/doc/html/infoschema-column-options.html
file path=usr/postgres/16/doc/html/infoschema-column-privileges.html
file path=usr/postgres/16/doc/html/infoschema-column-udt-usage.html
file path=usr/postgres/16/doc/html/infoschema-columns.html
file path=usr/postgres/16/doc/html/infoschema-constraint-column-usage.html
file path=usr/postgres/16/doc/html/infoschema-constraint-table-usage.html
file path=usr/postgres/16/doc/html/infoschema-data-type-privileges.html
file path=usr/postgres/16/doc/html/infoschema-datatypes.html
file path=usr/postgres/16/doc/html/infoschema-domain-constraints.html
file path=usr/postgres/16/doc/html/infoschema-domain-udt-usage.html
file path=usr/postgres/16/doc/html/infoschema-domains.html
file path=usr/postgres/16/doc/html/infoschema-element-types.html
file path=usr/postgres/16/doc/html/infoschema-enabled-roles.html
file path=usr/postgres/16/doc/html/infoschema-foreign-data-wrapper-options.html
file path=usr/postgres/16/doc/html/infoschema-foreign-data-wrappers.html
file path=usr/postgres/16/doc/html/infoschema-foreign-server-options.html
file path=usr/postgres/16/doc/html/infoschema-foreign-servers.html
file path=usr/postgres/16/doc/html/infoschema-foreign-table-options.html
file path=usr/postgres/16/doc/html/infoschema-foreign-tables.html
file path=usr/postgres/16/doc/html/infoschema-information-schema-catalog-name.html
file path=usr/postgres/16/doc/html/infoschema-key-column-usage.html
file path=usr/postgres/16/doc/html/infoschema-parameters.html
file path=usr/postgres/16/doc/html/infoschema-referential-constraints.html
file path=usr/postgres/16/doc/html/infoschema-role-column-grants.html
file path=usr/postgres/16/doc/html/infoschema-role-routine-grants.html
file path=usr/postgres/16/doc/html/infoschema-role-table-grants.html
file path=usr/postgres/16/doc/html/infoschema-role-udt-grants.html
file path=usr/postgres/16/doc/html/infoschema-role-usage-grants.html
file path=usr/postgres/16/doc/html/infoschema-routine-column-usage.html
file path=usr/postgres/16/doc/html/infoschema-routine-privileges.html
file path=usr/postgres/16/doc/html/infoschema-routine-routine-usage.html
file path=usr/postgres/16/doc/html/infoschema-routine-sequence-usage.html
file path=usr/postgres/16/doc/html/infoschema-routine-table-usage.html
file path=usr/postgres/16/doc/html/infoschema-routines.html
file path=usr/postgres/16/doc/html/infoschema-schema.html
file path=usr/postgres/16/doc/html/infoschema-schemata.html
file path=usr/postgres/16/doc/html/infoschema-sequences.html
file path=usr/postgres/16/doc/html/infoschema-sql-features.html
file path=usr/postgres/16/doc/html/infoschema-sql-implementation-info.html
file path=usr/postgres/16/doc/html/infoschema-sql-parts.html
file path=usr/postgres/16/doc/html/infoschema-sql-sizing.html
file path=usr/postgres/16/doc/html/infoschema-table-constraints.html
file path=usr/postgres/16/doc/html/infoschema-table-privileges.html
file path=usr/postgres/16/doc/html/infoschema-tables.html
file path=usr/postgres/16/doc/html/infoschema-transforms.html
file path=usr/postgres/16/doc/html/infoschema-triggered-update-columns.html
file path=usr/postgres/16/doc/html/infoschema-triggers.html
file path=usr/postgres/16/doc/html/infoschema-udt-privileges.html
file path=usr/postgres/16/doc/html/infoschema-usage-privileges.html
file path=usr/postgres/16/doc/html/infoschema-user-defined-types.html
file path=usr/postgres/16/doc/html/infoschema-user-mapping-options.html
file path=usr/postgres/16/doc/html/infoschema-user-mappings.html
file path=usr/postgres/16/doc/html/infoschema-view-column-usage.html
file path=usr/postgres/16/doc/html/infoschema-view-routine-usage.html
file path=usr/postgres/16/doc/html/infoschema-view-table-usage.html
file path=usr/postgres/16/doc/html/infoschema-views.html
file path=usr/postgres/16/doc/html/install-binaries.html
file path=usr/postgres/16/doc/html/install-getsource.html
file path=usr/postgres/16/doc/html/install-make.html
file path=usr/postgres/16/doc/html/install-meson.html
file path=usr/postgres/16/doc/html/install-post.html
file path=usr/postgres/16/doc/html/install-requirements.html
file path=usr/postgres/16/doc/html/install-windows-full.html
file path=usr/postgres/16/doc/html/install-windows.html
file path=usr/postgres/16/doc/html/installation-platform-notes.html
file path=usr/postgres/16/doc/html/installation.html
file path=usr/postgres/16/doc/html/intagg.html
file path=usr/postgres/16/doc/html/intarray.html
file path=usr/postgres/16/doc/html/internals.html
file path=usr/postgres/16/doc/html/intro-whatis.html
file path=usr/postgres/16/doc/html/isn.html
file path=usr/postgres/16/doc/html/jit-configuration.html
file path=usr/postgres/16/doc/html/jit-decision.html
file path=usr/postgres/16/doc/html/jit-extensibility.html
file path=usr/postgres/16/doc/html/jit-reason.html
file path=usr/postgres/16/doc/html/jit.html
file path=usr/postgres/16/doc/html/kernel-resources.html
file path=usr/postgres/16/doc/html/largeobjects.html
file path=usr/postgres/16/doc/html/legalnotice.html
file path=usr/postgres/16/doc/html/libpq-async.html
file path=usr/postgres/16/doc/html/libpq-build.html
file path=usr/postgres/16/doc/html/libpq-cancel.html
file path=usr/postgres/16/doc/html/libpq-connect.html
file path=usr/postgres/16/doc/html/libpq-control.html
file path=usr/postgres/16/doc/html/libpq-copy.html
file path=usr/postgres/16/doc/html/libpq-envars.html
file path=usr/postgres/16/doc/html/libpq-events.html
file path=usr/postgres/16/doc/html/libpq-example.html
file path=usr/postgres/16/doc/html/libpq-exec.html
file path=usr/postgres/16/doc/html/libpq-fastpath.html
file path=usr/postgres/16/doc/html/libpq-ldap.html
file path=usr/postgres/16/doc/html/libpq-misc.html
file path=usr/postgres/16/doc/html/libpq-notice-processing.html
file path=usr/postgres/16/doc/html/libpq-notify.html
file path=usr/postgres/16/doc/html/libpq-pgpass.html
file path=usr/postgres/16/doc/html/libpq-pgservice.html
file path=usr/postgres/16/doc/html/libpq-pipeline-mode.html
file path=usr/postgres/16/doc/html/libpq-single-row-mode.html
file path=usr/postgres/16/doc/html/libpq-ssl.html
file path=usr/postgres/16/doc/html/libpq-status.html
file path=usr/postgres/16/doc/html/libpq-threading.html
file path=usr/postgres/16/doc/html/libpq.html
file path=usr/postgres/16/doc/html/limits.html
file path=usr/postgres/16/doc/html/lo-examplesect.html
file path=usr/postgres/16/doc/html/lo-funcs.html
file path=usr/postgres/16/doc/html/lo-implementation.html
file path=usr/postgres/16/doc/html/lo-interfaces.html
file path=usr/postgres/16/doc/html/lo-intro.html
file path=usr/postgres/16/doc/html/lo.html
file path=usr/postgres/16/doc/html/locale.html
file path=usr/postgres/16/doc/html/locking-indexes.html
file path=usr/postgres/16/doc/html/logfile-maintenance.html
file path=usr/postgres/16/doc/html/logical-replication-architecture.html
file path=usr/postgres/16/doc/html/logical-replication-col-lists.html
file path=usr/postgres/16/doc/html/logical-replication-config.html
file path=usr/postgres/16/doc/html/logical-replication-conflicts.html
file path=usr/postgres/16/doc/html/logical-replication-monitoring.html
file path=usr/postgres/16/doc/html/logical-replication-publication.html
file path=usr/postgres/16/doc/html/logical-replication-quick-setup.html
file path=usr/postgres/16/doc/html/logical-replication-restrictions.html
file path=usr/postgres/16/doc/html/logical-replication-row-filter.html
file path=usr/postgres/16/doc/html/logical-replication-security.html
file path=usr/postgres/16/doc/html/logical-replication-subscription.html
file path=usr/postgres/16/doc/html/logical-replication.html
file path=usr/postgres/16/doc/html/logicaldecoding-catalogs.html
file path=usr/postgres/16/doc/html/logicaldecoding-example.html
file path=usr/postgres/16/doc/html/logicaldecoding-explanation.html
file path=usr/postgres/16/doc/html/logicaldecoding-output-plugin.html
file path=usr/postgres/16/doc/html/logicaldecoding-sql.html
file path=usr/postgres/16/doc/html/logicaldecoding-streaming.html
file path=usr/postgres/16/doc/html/logicaldecoding-synchronous.html
file path=usr/postgres/16/doc/html/logicaldecoding-two-phase-commits.html
file path=usr/postgres/16/doc/html/logicaldecoding-walsender.html
file path=usr/postgres/16/doc/html/logicaldecoding-writer.html
file path=usr/postgres/16/doc/html/logicaldecoding.html
file path=usr/postgres/16/doc/html/ltree.html
file path=usr/postgres/16/doc/html/maintenance.html
file path=usr/postgres/16/doc/html/manage-ag-config.html
file path=usr/postgres/16/doc/html/manage-ag-createdb.html
file path=usr/postgres/16/doc/html/manage-ag-dropdb.html
file path=usr/postgres/16/doc/html/manage-ag-overview.html
file path=usr/postgres/16/doc/html/manage-ag-tablespaces.html
file path=usr/postgres/16/doc/html/manage-ag-templatedbs.html
file path=usr/postgres/16/doc/html/managing-databases.html
file path=usr/postgres/16/doc/html/monitoring-locks.html
file path=usr/postgres/16/doc/html/monitoring-ps.html
file path=usr/postgres/16/doc/html/monitoring-stats.html
file path=usr/postgres/16/doc/html/monitoring.html
file path=usr/postgres/16/doc/html/multibyte.html
file path=usr/postgres/16/doc/html/multivariate-statistics-examples.html
file path=usr/postgres/16/doc/html/mvcc-caveats.html
file path=usr/postgres/16/doc/html/mvcc-intro.html
file path=usr/postgres/16/doc/html/mvcc-serialization-failure-handling.html
file path=usr/postgres/16/doc/html/mvcc.html
file path=usr/postgres/16/doc/html/nls-programmer.html
file path=usr/postgres/16/doc/html/nls-translator.html
file path=usr/postgres/16/doc/html/nls.html
file path=usr/postgres/16/doc/html/non-durability.html
file path=usr/postgres/16/doc/html/notation.html
file path=usr/postgres/16/doc/html/oid2name.html
file path=usr/postgres/16/doc/html/oldsnapshot.html
file path=usr/postgres/16/doc/html/overview.html
file path=usr/postgres/16/doc/html/pageinspect.html
file path=usr/postgres/16/doc/html/pagelayout.svg
file path=usr/postgres/16/doc/html/parallel-plans.html
file path=usr/postgres/16/doc/html/parallel-query.html
file path=usr/postgres/16/doc/html/parallel-safety.html
file path=usr/postgres/16/doc/html/parser-stage.html
file path=usr/postgres/16/doc/html/passwordcheck.html
file path=usr/postgres/16/doc/html/performance-tips.html
file path=usr/postgres/16/doc/html/perm-functions.html
file path=usr/postgres/16/doc/html/pgarchivecleanup.html
file path=usr/postgres/16/doc/html/pgbench.html
file path=usr/postgres/16/doc/html/pgbuffercache.html
file path=usr/postgres/16/doc/html/pgcrypto.html
file path=usr/postgres/16/doc/html/pgfreespacemap.html
file path=usr/postgres/16/doc/html/pgprewarm.html
file path=usr/postgres/16/doc/html/pgrowlocks.html
file path=usr/postgres/16/doc/html/pgstatstatements.html
file path=usr/postgres/16/doc/html/pgstattuple.html
file path=usr/postgres/16/doc/html/pgsurgery.html
file path=usr/postgres/16/doc/html/pgtestfsync.html
file path=usr/postgres/16/doc/html/pgtesttiming.html
file path=usr/postgres/16/doc/html/pgtrgm.html
file path=usr/postgres/16/doc/html/pgupgrade.html
file path=usr/postgres/16/doc/html/pgvisibility.html
file path=usr/postgres/16/doc/html/pgwaldump.html
file path=usr/postgres/16/doc/html/pgwalinspect.html
file path=usr/postgres/16/doc/html/pgxlogdump.html
file path=usr/postgres/16/doc/html/planner-optimizer.html
file path=usr/postgres/16/doc/html/planner-stats-details.html
file path=usr/postgres/16/doc/html/planner-stats-security.html
file path=usr/postgres/16/doc/html/planner-stats.html
file path=usr/postgres/16/doc/html/plhandler.html
file path=usr/postgres/16/doc/html/plperl-builtins.html
file path=usr/postgres/16/doc/html/plperl-data.html
file path=usr/postgres/16/doc/html/plperl-event-triggers.html
file path=usr/postgres/16/doc/html/plperl-funcs.html
file path=usr/postgres/16/doc/html/plperl-global.html
file path=usr/postgres/16/doc/html/plperl-triggers.html
file path=usr/postgres/16/doc/html/plperl-trusted.html
file path=usr/postgres/16/doc/html/plperl-under-the-hood.html
file path=usr/postgres/16/doc/html/plperl.html
file path=usr/postgres/16/doc/html/plpgsql-control-structures.html
file path=usr/postgres/16/doc/html/plpgsql-cursors.html
file path=usr/postgres/16/doc/html/plpgsql-declarations.html
file path=usr/postgres/16/doc/html/plpgsql-development-tips.html
file path=usr/postgres/16/doc/html/plpgsql-errors-and-messages.html
file path=usr/postgres/16/doc/html/plpgsql-expressions.html
file path=usr/postgres/16/doc/html/plpgsql-implementation.html
file path=usr/postgres/16/doc/html/plpgsql-overview.html
file path=usr/postgres/16/doc/html/plpgsql-porting.html
file path=usr/postgres/16/doc/html/plpgsql-statements.html
file path=usr/postgres/16/doc/html/plpgsql-structure.html
file path=usr/postgres/16/doc/html/plpgsql-transactions.html
file path=usr/postgres/16/doc/html/plpgsql-trigger.html
file path=usr/postgres/16/doc/html/plpgsql.html
file path=usr/postgres/16/doc/html/plpython-data.html
file path=usr/postgres/16/doc/html/plpython-database.html
file path=usr/postgres/16/doc/html/plpython-do.html
file path=usr/postgres/16/doc/html/plpython-envar.html
file path=usr/postgres/16/doc/html/plpython-funcs.html
file path=usr/postgres/16/doc/html/plpython-python23.html
file path=usr/postgres/16/doc/html/plpython-sharing.html
file path=usr/postgres/16/doc/html/plpython-subtransaction.html
file path=usr/postgres/16/doc/html/plpython-transactions.html
file path=usr/postgres/16/doc/html/plpython-trigger.html
file path=usr/postgres/16/doc/html/plpython-util.html
file path=usr/postgres/16/doc/html/plpython.html
file path=usr/postgres/16/doc/html/pltcl-config.html
file path=usr/postgres/16/doc/html/pltcl-data.html
file path=usr/postgres/16/doc/html/pltcl-dbaccess.html
file path=usr/postgres/16/doc/html/pltcl-error-handling.html
file path=usr/postgres/16/doc/html/pltcl-event-trigger.html
file path=usr/postgres/16/doc/html/pltcl-functions.html
file path=usr/postgres/16/doc/html/pltcl-global.html
file path=usr/postgres/16/doc/html/pltcl-overview.html
file path=usr/postgres/16/doc/html/pltcl-procnames.html
file path=usr/postgres/16/doc/html/pltcl-subtransactions.html
file path=usr/postgres/16/doc/html/pltcl-transactions.html
file path=usr/postgres/16/doc/html/pltcl-trigger.html
file path=usr/postgres/16/doc/html/pltcl.html
file path=usr/postgres/16/doc/html/populate.html
file path=usr/postgres/16/doc/html/postgres-fdw.html
file path=usr/postgres/16/doc/html/postgres-user.html
file path=usr/postgres/16/doc/html/predefined-roles.html
file path=usr/postgres/16/doc/html/preface.html
file path=usr/postgres/16/doc/html/preventing-server-spoofing.html
file path=usr/postgres/16/doc/html/progress-reporting.html
file path=usr/postgres/16/doc/html/protocol-changes.html
file path=usr/postgres/16/doc/html/protocol-error-fields.html
file path=usr/postgres/16/doc/html/protocol-flow.html
file path=usr/postgres/16/doc/html/protocol-logical-replication.html
file path=usr/postgres/16/doc/html/protocol-logicalrep-message-formats.html
file path=usr/postgres/16/doc/html/protocol-message-formats.html
file path=usr/postgres/16/doc/html/protocol-message-types.html
file path=usr/postgres/16/doc/html/protocol-overview.html
file path=usr/postgres/16/doc/html/protocol-replication.html
file path=usr/postgres/16/doc/html/protocol.html
file path=usr/postgres/16/doc/html/queries-limit.html
file path=usr/postgres/16/doc/html/queries-order.html
file path=usr/postgres/16/doc/html/queries-overview.html
file path=usr/postgres/16/doc/html/queries-select-lists.html
file path=usr/postgres/16/doc/html/queries-table-expressions.html
file path=usr/postgres/16/doc/html/queries-union.html
file path=usr/postgres/16/doc/html/queries-values.html
file path=usr/postgres/16/doc/html/queries-with.html
file path=usr/postgres/16/doc/html/queries.html
file path=usr/postgres/16/doc/html/query-path.html
file path=usr/postgres/16/doc/html/querytree.html
file path=usr/postgres/16/doc/html/rangetypes.html
file path=usr/postgres/16/doc/html/recovery-config.html
file path=usr/postgres/16/doc/html/reference-client.html
file path=usr/postgres/16/doc/html/reference-server.html
file path=usr/postgres/16/doc/html/reference.html
file path=usr/postgres/16/doc/html/regress-coverage.html
file path=usr/postgres/16/doc/html/regress-evaluation.html
file path=usr/postgres/16/doc/html/regress-run.html
file path=usr/postgres/16/doc/html/regress-tap.html
file path=usr/postgres/16/doc/html/regress-variant.html
file path=usr/postgres/16/doc/html/regress.html
file path=usr/postgres/16/doc/html/release-16-1.html
file path=usr/postgres/16/doc/html/release-16-2.html
file path=usr/postgres/16/doc/html/release-16.html
file path=usr/postgres/16/doc/html/release-prior.html
file path=usr/postgres/16/doc/html/release.html
file path=usr/postgres/16/doc/html/replication-origins.html
file path=usr/postgres/16/doc/html/resources.html
file path=usr/postgres/16/doc/html/role-attributes.html
file path=usr/postgres/16/doc/html/role-membership.html
file path=usr/postgres/16/doc/html/role-removal.html
file path=usr/postgres/16/doc/html/routine-reindex.html
file path=usr/postgres/16/doc/html/routine-vacuuming.html
file path=usr/postgres/16/doc/html/row-estimation-examples.html
file path=usr/postgres/16/doc/html/rowtypes.html
file path=usr/postgres/16/doc/html/rule-system.html
file path=usr/postgres/16/doc/html/rules-materializedviews.html
file path=usr/postgres/16/doc/html/rules-privileges.html
file path=usr/postgres/16/doc/html/rules-status.html
file path=usr/postgres/16/doc/html/rules-triggers.html
file path=usr/postgres/16/doc/html/rules-update.html
file path=usr/postgres/16/doc/html/rules-views.html
file path=usr/postgres/16/doc/html/rules.html
file path=usr/postgres/16/doc/html/runtime-config-autovacuum.html
file path=usr/postgres/16/doc/html/runtime-config-client.html
file path=usr/postgres/16/doc/html/runtime-config-compatible.html
file path=usr/postgres/16/doc/html/runtime-config-connection.html
file path=usr/postgres/16/doc/html/runtime-config-custom.html
file path=usr/postgres/16/doc/html/runtime-config-developer.html
file path=usr/postgres/16/doc/html/runtime-config-error-handling.html
file path=usr/postgres/16/doc/html/runtime-config-file-locations.html
file path=usr/postgres/16/doc/html/runtime-config-locks.html
file path=usr/postgres/16/doc/html/runtime-config-logging.html
file path=usr/postgres/16/doc/html/runtime-config-preset.html
file path=usr/postgres/16/doc/html/runtime-config-query.html
file path=usr/postgres/16/doc/html/runtime-config-replication.html
file path=usr/postgres/16/doc/html/runtime-config-resource.html
file path=usr/postgres/16/doc/html/runtime-config-short.html
file path=usr/postgres/16/doc/html/runtime-config-statistics.html
file path=usr/postgres/16/doc/html/runtime-config-wal.html
file path=usr/postgres/16/doc/html/runtime-config.html
file path=usr/postgres/16/doc/html/runtime.html
file path=usr/postgres/16/doc/html/sasl-authentication.html
file path=usr/postgres/16/doc/html/seg.html
file path=usr/postgres/16/doc/html/sepgsql.html
file path=usr/postgres/16/doc/html/server-programming.html
file path=usr/postgres/16/doc/html/server-shutdown.html
file path=usr/postgres/16/doc/html/server-start.html
file path=usr/postgres/16/doc/html/source-conventions.html
file path=usr/postgres/16/doc/html/source-format.html
file path=usr/postgres/16/doc/html/source.html
file path=usr/postgres/16/doc/html/sourcerepo.html
file path=usr/postgres/16/doc/html/spgist-builtin-opclasses.html
file path=usr/postgres/16/doc/html/spgist-examples.html
file path=usr/postgres/16/doc/html/spgist-extensibility.html
file path=usr/postgres/16/doc/html/spgist-implementation.html
file path=usr/postgres/16/doc/html/spgist-intro.html
file path=usr/postgres/16/doc/html/spgist.html
file path=usr/postgres/16/doc/html/spi-examples.html
file path=usr/postgres/16/doc/html/spi-interface-support.html
file path=usr/postgres/16/doc/html/spi-interface.html
file path=usr/postgres/16/doc/html/spi-memory.html
file path=usr/postgres/16/doc/html/spi-realloc.html
file path=usr/postgres/16/doc/html/spi-spi-commit.html
file path=usr/postgres/16/doc/html/spi-spi-connect.html
file path=usr/postgres/16/doc/html/spi-spi-copytuple.html
file path=usr/postgres/16/doc/html/spi-spi-cursor-close.html
file path=usr/postgres/16/doc/html/spi-spi-cursor-fetch.html
file path=usr/postgres/16/doc/html/spi-spi-cursor-find.html
file path=usr/postgres/16/doc/html/spi-spi-cursor-move.html
file path=usr/postgres/16/doc/html/spi-spi-cursor-open-with-args.html
file path=usr/postgres/16/doc/html/spi-spi-cursor-open-with-paramlist.html
file path=usr/postgres/16/doc/html/spi-spi-cursor-open.html
file path=usr/postgres/16/doc/html/spi-spi-cursor-parse-open.html
file path=usr/postgres/16/doc/html/spi-spi-exec.html
file path=usr/postgres/16/doc/html/spi-spi-execp.html
file path=usr/postgres/16/doc/html/spi-spi-execute-extended.html
file path=usr/postgres/16/doc/html/spi-spi-execute-plan-extended.html
file path=usr/postgres/16/doc/html/spi-spi-execute-plan-with-paramlist.html
file path=usr/postgres/16/doc/html/spi-spi-execute-plan.html
file path=usr/postgres/16/doc/html/spi-spi-execute-with-args.html
file path=usr/postgres/16/doc/html/spi-spi-execute.html
file path=usr/postgres/16/doc/html/spi-spi-finish.html
file path=usr/postgres/16/doc/html/spi-spi-fname.html
file path=usr/postgres/16/doc/html/spi-spi-fnumber.html
file path=usr/postgres/16/doc/html/spi-spi-freeplan.html
file path=usr/postgres/16/doc/html/spi-spi-freetuple.html
file path=usr/postgres/16/doc/html/spi-spi-freetupletable.html
file path=usr/postgres/16/doc/html/spi-spi-getargcount.html
file path=usr/postgres/16/doc/html/spi-spi-getargtypeid.html
file path=usr/postgres/16/doc/html/spi-spi-getbinval.html
file path=usr/postgres/16/doc/html/spi-spi-getnspname.html
file path=usr/postgres/16/doc/html/spi-spi-getrelname.html
file path=usr/postgres/16/doc/html/spi-spi-gettype.html
file path=usr/postgres/16/doc/html/spi-spi-gettypeid.html
file path=usr/postgres/16/doc/html/spi-spi-getvalue.html
file path=usr/postgres/16/doc/html/spi-spi-is-cursor-plan.html
file path=usr/postgres/16/doc/html/spi-spi-keepplan.html
file path=usr/postgres/16/doc/html/spi-spi-modifytuple.html
file path=usr/postgres/16/doc/html/spi-spi-palloc.html
file path=usr/postgres/16/doc/html/spi-spi-pfree.html
file path=usr/postgres/16/doc/html/spi-spi-prepare-cursor.html
file path=usr/postgres/16/doc/html/spi-spi-prepare-extended.html
file path=usr/postgres/16/doc/html/spi-spi-prepare-params.html
file path=usr/postgres/16/doc/html/spi-spi-prepare.html
file path=usr/postgres/16/doc/html/spi-spi-register-relation.html
file path=usr/postgres/16/doc/html/spi-spi-register-trigger-data.html
file path=usr/postgres/16/doc/html/spi-spi-result-code-string.html
file path=usr/postgres/16/doc/html/spi-spi-returntuple.html
file path=usr/postgres/16/doc/html/spi-spi-rollback.html
file path=usr/postgres/16/doc/html/spi-spi-saveplan.html
file path=usr/postgres/16/doc/html/spi-spi-scroll-cursor-fetch.html
file path=usr/postgres/16/doc/html/spi-spi-scroll-cursor-move.html
file path=usr/postgres/16/doc/html/spi-spi-start-transaction.html
file path=usr/postgres/16/doc/html/spi-spi-unregister-relation.html
file path=usr/postgres/16/doc/html/spi-transaction.html
file path=usr/postgres/16/doc/html/spi-visibility.html
file path=usr/postgres/16/doc/html/spi.html
file path=usr/postgres/16/doc/html/sql-abort.html
file path=usr/postgres/16/doc/html/sql-alteraggregate.html
file path=usr/postgres/16/doc/html/sql-altercollation.html
file path=usr/postgres/16/doc/html/sql-alterconversion.html
file path=usr/postgres/16/doc/html/sql-alterdatabase.html
file path=usr/postgres/16/doc/html/sql-alterdefaultprivileges.html
file path=usr/postgres/16/doc/html/sql-alterdomain.html
file path=usr/postgres/16/doc/html/sql-altereventtrigger.html
file path=usr/postgres/16/doc/html/sql-alterextension.html
file path=usr/postgres/16/doc/html/sql-alterforeigndatawrapper.html
file path=usr/postgres/16/doc/html/sql-alterforeigntable.html
file path=usr/postgres/16/doc/html/sql-alterfunction.html
file path=usr/postgres/16/doc/html/sql-altergroup.html
file path=usr/postgres/16/doc/html/sql-alterindex.html
file path=usr/postgres/16/doc/html/sql-alterlanguage.html
file path=usr/postgres/16/doc/html/sql-alterlargeobject.html
file path=usr/postgres/16/doc/html/sql-altermaterializedview.html
file path=usr/postgres/16/doc/html/sql-alteropclass.html
file path=usr/postgres/16/doc/html/sql-alteroperator.html
file path=usr/postgres/16/doc/html/sql-alteropfamily.html
file path=usr/postgres/16/doc/html/sql-alterpolicy.html
file path=usr/postgres/16/doc/html/sql-alterprocedure.html
file path=usr/postgres/16/doc/html/sql-alterpublication.html
file path=usr/postgres/16/doc/html/sql-alterrole.html
file path=usr/postgres/16/doc/html/sql-alterroutine.html
file path=usr/postgres/16/doc/html/sql-alterrule.html
file path=usr/postgres/16/doc/html/sql-alterschema.html
file path=usr/postgres/16/doc/html/sql-altersequence.html
file path=usr/postgres/16/doc/html/sql-alterserver.html
file path=usr/postgres/16/doc/html/sql-alterstatistics.html
file path=usr/postgres/16/doc/html/sql-altersubscription.html
file path=usr/postgres/16/doc/html/sql-altersystem.html
file path=usr/postgres/16/doc/html/sql-altertable.html
file path=usr/postgres/16/doc/html/sql-altertablespace.html
file path=usr/postgres/16/doc/html/sql-altertrigger.html
file path=usr/postgres/16/doc/html/sql-altertsconfig.html
file path=usr/postgres/16/doc/html/sql-altertsdictionary.html
file path=usr/postgres/16/doc/html/sql-altertsparser.html
file path=usr/postgres/16/doc/html/sql-altertstemplate.html
file path=usr/postgres/16/doc/html/sql-altertype.html
file path=usr/postgres/16/doc/html/sql-alteruser.html
file path=usr/postgres/16/doc/html/sql-alterusermapping.html
file path=usr/postgres/16/doc/html/sql-alterview.html
file path=usr/postgres/16/doc/html/sql-analyze.html
file path=usr/postgres/16/doc/html/sql-begin.html
file path=usr/postgres/16/doc/html/sql-call.html
file path=usr/postgres/16/doc/html/sql-checkpoint.html
file path=usr/postgres/16/doc/html/sql-close.html
file path=usr/postgres/16/doc/html/sql-cluster.html
file path=usr/postgres/16/doc/html/sql-commands.html
file path=usr/postgres/16/doc/html/sql-comment.html
file path=usr/postgres/16/doc/html/sql-commit-prepared.html
file path=usr/postgres/16/doc/html/sql-commit.html
file path=usr/postgres/16/doc/html/sql-copy.html
file path=usr/postgres/16/doc/html/sql-create-access-method.html
file path=usr/postgres/16/doc/html/sql-createaggregate.html
file path=usr/postgres/16/doc/html/sql-createcast.html
file path=usr/postgres/16/doc/html/sql-createcollation.html
file path=usr/postgres/16/doc/html/sql-createconversion.html
file path=usr/postgres/16/doc/html/sql-createdatabase.html
file path=usr/postgres/16/doc/html/sql-createdomain.html
file path=usr/postgres/16/doc/html/sql-createeventtrigger.html
file path=usr/postgres/16/doc/html/sql-createextension.html
file path=usr/postgres/16/doc/html/sql-createforeigndatawrapper.html
file path=usr/postgres/16/doc/html/sql-createforeigntable.html
file path=usr/postgres/16/doc/html/sql-createfunction.html
file path=usr/postgres/16/doc/html/sql-creategroup.html
file path=usr/postgres/16/doc/html/sql-createindex.html
file path=usr/postgres/16/doc/html/sql-createlanguage.html
file path=usr/postgres/16/doc/html/sql-creatematerializedview.html
file path=usr/postgres/16/doc/html/sql-createopclass.html
file path=usr/postgres/16/doc/html/sql-createoperator.html
file path=usr/postgres/16/doc/html/sql-createopfamily.html
file path=usr/postgres/16/doc/html/sql-createpolicy.html
file path=usr/postgres/16/doc/html/sql-createprocedure.html
file path=usr/postgres/16/doc/html/sql-createpublication.html
file path=usr/postgres/16/doc/html/sql-createrole.html
file path=usr/postgres/16/doc/html/sql-createrule.html
file path=usr/postgres/16/doc/html/sql-createschema.html
file path=usr/postgres/16/doc/html/sql-createsequence.html
file path=usr/postgres/16/doc/html/sql-createserver.html
file path=usr/postgres/16/doc/html/sql-createstatistics.html
file path=usr/postgres/16/doc/html/sql-createsubscription.html
file path=usr/postgres/16/doc/html/sql-createtable.html
file path=usr/postgres/16/doc/html/sql-createtableas.html
file path=usr/postgres/16/doc/html/sql-createtablespace.html
file path=usr/postgres/16/doc/html/sql-createtransform.html
file path=usr/postgres/16/doc/html/sql-createtrigger.html
file path=usr/postgres/16/doc/html/sql-createtsconfig.html
file path=usr/postgres/16/doc/html/sql-createtsdictionary.html
file path=usr/postgres/16/doc/html/sql-createtsparser.html
file path=usr/postgres/16/doc/html/sql-createtstemplate.html
file path=usr/postgres/16/doc/html/sql-createtype.html
file path=usr/postgres/16/doc/html/sql-createuser.html
file path=usr/postgres/16/doc/html/sql-createusermapping.html
file path=usr/postgres/16/doc/html/sql-createview.html
file path=usr/postgres/16/doc/html/sql-deallocate.html
file path=usr/postgres/16/doc/html/sql-declare.html
file path=usr/postgres/16/doc/html/sql-delete.html
file path=usr/postgres/16/doc/html/sql-discard.html
file path=usr/postgres/16/doc/html/sql-do.html
file path=usr/postgres/16/doc/html/sql-drop-access-method.html
file path=usr/postgres/16/doc/html/sql-drop-owned.html
file path=usr/postgres/16/doc/html/sql-dropaggregate.html
file path=usr/postgres/16/doc/html/sql-dropcast.html
file path=usr/postgres/16/doc/html/sql-dropcollation.html
file path=usr/postgres/16/doc/html/sql-dropconversion.html
file path=usr/postgres/16/doc/html/sql-dropdatabase.html
file path=usr/postgres/16/doc/html/sql-dropdomain.html
file path=usr/postgres/16/doc/html/sql-dropeventtrigger.html
file path=usr/postgres/16/doc/html/sql-dropextension.html
file path=usr/postgres/16/doc/html/sql-dropforeigndatawrapper.html
file path=usr/postgres/16/doc/html/sql-dropforeigntable.html
file path=usr/postgres/16/doc/html/sql-dropfunction.html
file path=usr/postgres/16/doc/html/sql-dropgroup.html
file path=usr/postgres/16/doc/html/sql-dropindex.html
file path=usr/postgres/16/doc/html/sql-droplanguage.html
file path=usr/postgres/16/doc/html/sql-dropmaterializedview.html
file path=usr/postgres/16/doc/html/sql-dropopclass.html
file path=usr/postgres/16/doc/html/sql-dropoperator.html
file path=usr/postgres/16/doc/html/sql-dropopfamily.html
file path=usr/postgres/16/doc/html/sql-droppolicy.html
file path=usr/postgres/16/doc/html/sql-dropprocedure.html
file path=usr/postgres/16/doc/html/sql-droppublication.html
file path=usr/postgres/16/doc/html/sql-droprole.html
file path=usr/postgres/16/doc/html/sql-droproutine.html
file path=usr/postgres/16/doc/html/sql-droprule.html
file path=usr/postgres/16/doc/html/sql-dropschema.html
file path=usr/postgres/16/doc/html/sql-dropsequence.html
file path=usr/postgres/16/doc/html/sql-dropserver.html
file path=usr/postgres/16/doc/html/sql-dropstatistics.html
file path=usr/postgres/16/doc/html/sql-dropsubscription.html
file path=usr/postgres/16/doc/html/sql-droptable.html
file path=usr/postgres/16/doc/html/sql-droptablespace.html
file path=usr/postgres/16/doc/html/sql-droptransform.html
file path=usr/postgres/16/doc/html/sql-droptrigger.html
file path=usr/postgres/16/doc/html/sql-droptsconfig.html
file path=usr/postgres/16/doc/html/sql-droptsdictionary.html
file path=usr/postgres/16/doc/html/sql-droptsparser.html
file path=usr/postgres/16/doc/html/sql-droptstemplate.html
file path=usr/postgres/16/doc/html/sql-droptype.html
file path=usr/postgres/16/doc/html/sql-dropuser.html
file path=usr/postgres/16/doc/html/sql-dropusermapping.html
file path=usr/postgres/16/doc/html/sql-dropview.html
file path=usr/postgres/16/doc/html/sql-end.html
file path=usr/postgres/16/doc/html/sql-execute.html
file path=usr/postgres/16/doc/html/sql-explain.html
file path=usr/postgres/16/doc/html/sql-expressions.html
file path=usr/postgres/16/doc/html/sql-fetch.html
file path=usr/postgres/16/doc/html/sql-grant.html
file path=usr/postgres/16/doc/html/sql-importforeignschema.html
file path=usr/postgres/16/doc/html/sql-insert.html
file path=usr/postgres/16/doc/html/sql-keywords-appendix.html
file path=usr/postgres/16/doc/html/sql-listen.html
file path=usr/postgres/16/doc/html/sql-load.html
file path=usr/postgres/16/doc/html/sql-lock.html
file path=usr/postgres/16/doc/html/sql-merge.html
file path=usr/postgres/16/doc/html/sql-move.html
file path=usr/postgres/16/doc/html/sql-notify.html
file path=usr/postgres/16/doc/html/sql-prepare-transaction.html
file path=usr/postgres/16/doc/html/sql-prepare.html
file path=usr/postgres/16/doc/html/sql-reassign-owned.html
file path=usr/postgres/16/doc/html/sql-refreshmaterializedview.html
file path=usr/postgres/16/doc/html/sql-reindex.html
file path=usr/postgres/16/doc/html/sql-release-savepoint.html
file path=usr/postgres/16/doc/html/sql-reset.html
file path=usr/postgres/16/doc/html/sql-revoke.html
file path=usr/postgres/16/doc/html/sql-rollback-prepared.html
file path=usr/postgres/16/doc/html/sql-rollback-to.html
file path=usr/postgres/16/doc/html/sql-rollback.html
file path=usr/postgres/16/doc/html/sql-savepoint.html
file path=usr/postgres/16/doc/html/sql-security-label.html
file path=usr/postgres/16/doc/html/sql-select.html
file path=usr/postgres/16/doc/html/sql-selectinto.html
file path=usr/postgres/16/doc/html/sql-set-constraints.html
file path=usr/postgres/16/doc/html/sql-set-role.html
file path=usr/postgres/16/doc/html/sql-set-session-authorization.html
file path=usr/postgres/16/doc/html/sql-set-transaction.html
file path=usr/postgres/16/doc/html/sql-set.html
file path=usr/postgres/16/doc/html/sql-show.html
file path=usr/postgres/16/doc/html/sql-start-transaction.html
file path=usr/postgres/16/doc/html/sql-syntax-calling-funcs.html
file path=usr/postgres/16/doc/html/sql-syntax-lexical.html
file path=usr/postgres/16/doc/html/sql-syntax.html
file path=usr/postgres/16/doc/html/sql-truncate.html
file path=usr/postgres/16/doc/html/sql-unlisten.html
file path=usr/postgres/16/doc/html/sql-update.html
file path=usr/postgres/16/doc/html/sql-vacuum.html
file path=usr/postgres/16/doc/html/sql-values.html
file path=usr/postgres/16/doc/html/sql.html
file path=usr/postgres/16/doc/html/ssh-tunnels.html
file path=usr/postgres/16/doc/html/ssl-tcp.html
file path=usr/postgres/16/doc/html/sslinfo.html
file path=usr/postgres/16/doc/html/sspi-auth.html
file path=usr/postgres/16/doc/html/storage-file-layout.html
file path=usr/postgres/16/doc/html/storage-fsm.html
file path=usr/postgres/16/doc/html/storage-hot.html
file path=usr/postgres/16/doc/html/storage-init.html
file path=usr/postgres/16/doc/html/storage-page-layout.html
file path=usr/postgres/16/doc/html/storage-toast.html
file path=usr/postgres/16/doc/html/storage-vm.html
file path=usr/postgres/16/doc/html/storage.html
file path=usr/postgres/16/doc/html/stylesheet.css
file path=usr/postgres/16/doc/html/subxacts.html
file path=usr/postgres/16/doc/html/supported-platforms.html
file path=usr/postgres/16/doc/html/system-catalog-declarations.html
file path=usr/postgres/16/doc/html/system-catalog-initial-data.html
file path=usr/postgres/16/doc/html/tableam.html
file path=usr/postgres/16/doc/html/tablefunc.html
file path=usr/postgres/16/doc/html/tablesample-method.html
file path=usr/postgres/16/doc/html/tablesample-support-functions.html
file path=usr/postgres/16/doc/html/tcn.html
file path=usr/postgres/16/doc/html/test-decoding.html
file path=usr/postgres/16/doc/html/textsearch-configuration.html
file path=usr/postgres/16/doc/html/textsearch-controls.html
file path=usr/postgres/16/doc/html/textsearch-debugging.html
file path=usr/postgres/16/doc/html/textsearch-dictionaries.html
file path=usr/postgres/16/doc/html/textsearch-features.html
file path=usr/postgres/16/doc/html/textsearch-indexes.html
file path=usr/postgres/16/doc/html/textsearch-intro.html
file path=usr/postgres/16/doc/html/textsearch-limitations.html
file path=usr/postgres/16/doc/html/textsearch-parsers.html
file path=usr/postgres/16/doc/html/textsearch-psql.html
file path=usr/postgres/16/doc/html/textsearch-tables.html
file path=usr/postgres/16/doc/html/textsearch.html
file path=usr/postgres/16/doc/html/transaction-id.html
file path=usr/postgres/16/doc/html/transaction-iso.html
file path=usr/postgres/16/doc/html/transactions.html
file path=usr/postgres/16/doc/html/trigger-datachanges.html
file path=usr/postgres/16/doc/html/trigger-definition.html
file path=usr/postgres/16/doc/html/trigger-example.html
file path=usr/postgres/16/doc/html/trigger-interface.html
file path=usr/postgres/16/doc/html/triggers.html
file path=usr/postgres/16/doc/html/tsm-system-rows.html
file path=usr/postgres/16/doc/html/tsm-system-time.html
file path=usr/postgres/16/doc/html/tutorial-accessdb.html
file path=usr/postgres/16/doc/html/tutorial-advanced-intro.html
file path=usr/postgres/16/doc/html/tutorial-advanced.html
file path=usr/postgres/16/doc/html/tutorial-agg.html
file path=usr/postgres/16/doc/html/tutorial-arch.html
file path=usr/postgres/16/doc/html/tutorial-concepts.html
file path=usr/postgres/16/doc/html/tutorial-conclusion.html
file path=usr/postgres/16/doc/html/tutorial-createdb.html
file path=usr/postgres/16/doc/html/tutorial-delete.html
file path=usr/postgres/16/doc/html/tutorial-fk.html
file path=usr/postgres/16/doc/html/tutorial-inheritance.html
file path=usr/postgres/16/doc/html/tutorial-install.html
file path=usr/postgres/16/doc/html/tutorial-join.html
file path=usr/postgres/16/doc/html/tutorial-populate.html
file path=usr/postgres/16/doc/html/tutorial-select.html
file path=usr/postgres/16/doc/html/tutorial-sql-intro.html
file path=usr/postgres/16/doc/html/tutorial-sql.html
file path=usr/postgres/16/doc/html/tutorial-start.html
file path=usr/postgres/16/doc/html/tutorial-table.html
file path=usr/postgres/16/doc/html/tutorial-transactions.html
file path=usr/postgres/16/doc/html/tutorial-update.html
file path=usr/postgres/16/doc/html/tutorial-views.html
file path=usr/postgres/16/doc/html/tutorial-window.html
file path=usr/postgres/16/doc/html/tutorial.html
file path=usr/postgres/16/doc/html/two-phase.html
file path=usr/postgres/16/doc/html/typeconv-func.html
file path=usr/postgres/16/doc/html/typeconv-oper.html
file path=usr/postgres/16/doc/html/typeconv-overview.html
file path=usr/postgres/16/doc/html/typeconv-query.html
file path=usr/postgres/16/doc/html/typeconv-select.html
file path=usr/postgres/16/doc/html/typeconv-union-case.html
file path=usr/postgres/16/doc/html/typeconv.html
file path=usr/postgres/16/doc/html/unaccent.html
file path=usr/postgres/16/doc/html/unsupported-features-sql-standard.html
file path=usr/postgres/16/doc/html/upgrading.html
file path=usr/postgres/16/doc/html/user-manag.html
file path=usr/postgres/16/doc/html/using-explain.html
file path=usr/postgres/16/doc/html/uuid-ossp.html
file path=usr/postgres/16/doc/html/vacuumlo.html
file path=usr/postgres/16/doc/html/view-pg-available-extension-versions.html
file path=usr/postgres/16/doc/html/view-pg-available-extensions.html
file path=usr/postgres/16/doc/html/view-pg-backend-memory-contexts.html
file path=usr/postgres/16/doc/html/view-pg-config.html
file path=usr/postgres/16/doc/html/view-pg-cursors.html
file path=usr/postgres/16/doc/html/view-pg-file-settings.html
file path=usr/postgres/16/doc/html/view-pg-group.html
file path=usr/postgres/16/doc/html/view-pg-hba-file-rules.html
file path=usr/postgres/16/doc/html/view-pg-ident-file-mappings.html
file path=usr/postgres/16/doc/html/view-pg-indexes.html
file path=usr/postgres/16/doc/html/view-pg-locks.html
file path=usr/postgres/16/doc/html/view-pg-matviews.html
file path=usr/postgres/16/doc/html/view-pg-policies.html
file path=usr/postgres/16/doc/html/view-pg-prepared-statements.html
file path=usr/postgres/16/doc/html/view-pg-prepared-xacts.html
file path=usr/postgres/16/doc/html/view-pg-publication-tables.html
file path=usr/postgres/16/doc/html/view-pg-replication-origin-status.html
file path=usr/postgres/16/doc/html/view-pg-replication-slots.html
file path=usr/postgres/16/doc/html/view-pg-roles.html
file path=usr/postgres/16/doc/html/view-pg-rules.html
file path=usr/postgres/16/doc/html/view-pg-seclabels.html
file path=usr/postgres/16/doc/html/view-pg-sequences.html
file path=usr/postgres/16/doc/html/view-pg-settings.html
file path=usr/postgres/16/doc/html/view-pg-shadow.html
file path=usr/postgres/16/doc/html/view-pg-shmem-allocations.html
file path=usr/postgres/16/doc/html/view-pg-stats-ext-exprs.html
file path=usr/postgres/16/doc/html/view-pg-stats-ext.html
file path=usr/postgres/16/doc/html/view-pg-stats.html
file path=usr/postgres/16/doc/html/view-pg-tables.html
file path=usr/postgres/16/doc/html/view-pg-timezone-abbrevs.html
file path=usr/postgres/16/doc/html/view-pg-timezone-names.html
file path=usr/postgres/16/doc/html/view-pg-user-mappings.html
file path=usr/postgres/16/doc/html/view-pg-user.html
file path=usr/postgres/16/doc/html/view-pg-views.html
file path=usr/postgres/16/doc/html/views-overview.html
file path=usr/postgres/16/doc/html/views.html
file path=usr/postgres/16/doc/html/wal-async-commit.html
file path=usr/postgres/16/doc/html/wal-configuration.html
file path=usr/postgres/16/doc/html/wal-internals.html
file path=usr/postgres/16/doc/html/wal-intro.html
file path=usr/postgres/16/doc/html/wal-reliability.html
file path=usr/postgres/16/doc/html/wal.html
file path=usr/postgres/16/doc/html/warm-standby-failover.html
file path=usr/postgres/16/doc/html/warm-standby.html
file path=usr/postgres/16/doc/html/when-can-parallel-query-be-used.html
file path=usr/postgres/16/doc/html/xact-locking.html
file path=usr/postgres/16/doc/html/xaggr.html
file path=usr/postgres/16/doc/html/xfunc-c.html
file path=usr/postgres/16/doc/html/xfunc-internal.html
file path=usr/postgres/16/doc/html/xfunc-optimization.html
file path=usr/postgres/16/doc/html/xfunc-overload.html
file path=usr/postgres/16/doc/html/xfunc-pl.html
file path=usr/postgres/16/doc/html/xfunc-sql.html
file path=usr/postgres/16/doc/html/xfunc-volatility.html
file path=usr/postgres/16/doc/html/xfunc.html
file path=usr/postgres/16/doc/html/xindex.html
file path=usr/postgres/16/doc/html/xml-limits-conformance.html
file path=usr/postgres/16/doc/html/xml2.html
file path=usr/postgres/16/doc/html/xoper-optimization.html
file path=usr/postgres/16/doc/html/xoper.html
file path=usr/postgres/16/doc/html/xplang-install.html
file path=usr/postgres/16/doc/html/xplang.html
file path=usr/postgres/16/doc/html/xproc.html
file path=usr/postgres/16/doc/html/xtypes.html
file path=usr/postgres/16/man/man3/SPI_commit.3
file path=usr/postgres/16/man/man3/SPI_commit_and_chain.3
file path=usr/postgres/16/man/man3/SPI_connect.3
file path=usr/postgres/16/man/man3/SPI_connect_ext.3
file path=usr/postgres/16/man/man3/SPI_copytuple.3
file path=usr/postgres/16/man/man3/SPI_cursor_close.3
file path=usr/postgres/16/man/man3/SPI_cursor_fetch.3
file path=usr/postgres/16/man/man3/SPI_cursor_find.3
file path=usr/postgres/16/man/man3/SPI_cursor_move.3
file path=usr/postgres/16/man/man3/SPI_cursor_open.3
file path=usr/postgres/16/man/man3/SPI_cursor_open_with_args.3
file path=usr/postgres/16/man/man3/SPI_cursor_open_with_paramlist.3
file path=usr/postgres/16/man/man3/SPI_cursor_parse_open.3
file path=usr/postgres/16/man/man3/SPI_exec.3
file path=usr/postgres/16/man/man3/SPI_execp.3
file path=usr/postgres/16/man/man3/SPI_execute.3
file path=usr/postgres/16/man/man3/SPI_execute_extended.3
file path=usr/postgres/16/man/man3/SPI_execute_plan.3
file path=usr/postgres/16/man/man3/SPI_execute_plan_extended.3
file path=usr/postgres/16/man/man3/SPI_execute_plan_with_paramlist.3
file path=usr/postgres/16/man/man3/SPI_execute_with_args.3
file path=usr/postgres/16/man/man3/SPI_finish.3
file path=usr/postgres/16/man/man3/SPI_fname.3
file path=usr/postgres/16/man/man3/SPI_fnumber.3
file path=usr/postgres/16/man/man3/SPI_freeplan.3
file path=usr/postgres/16/man/man3/SPI_freetuple.3
file path=usr/postgres/16/man/man3/SPI_freetuptable.3
file path=usr/postgres/16/man/man3/SPI_getargcount.3
file path=usr/postgres/16/man/man3/SPI_getargtypeid.3
file path=usr/postgres/16/man/man3/SPI_getbinval.3
file path=usr/postgres/16/man/man3/SPI_getnspname.3
file path=usr/postgres/16/man/man3/SPI_getrelname.3
file path=usr/postgres/16/man/man3/SPI_gettype.3
file path=usr/postgres/16/man/man3/SPI_gettypeid.3
file path=usr/postgres/16/man/man3/SPI_getvalue.3
file path=usr/postgres/16/man/man3/SPI_is_cursor_plan.3
file path=usr/postgres/16/man/man3/SPI_keepplan.3
file path=usr/postgres/16/man/man3/SPI_modifytuple.3
file path=usr/postgres/16/man/man3/SPI_palloc.3
file path=usr/postgres/16/man/man3/SPI_pfree.3
file path=usr/postgres/16/man/man3/SPI_prepare.3
file path=usr/postgres/16/man/man3/SPI_prepare_cursor.3
file path=usr/postgres/16/man/man3/SPI_prepare_extended.3
file path=usr/postgres/16/man/man3/SPI_prepare_params.3
file path=usr/postgres/16/man/man3/SPI_register_relation.3
file path=usr/postgres/16/man/man3/SPI_register_trigger_data.3
file path=usr/postgres/16/man/man3/SPI_repalloc.3
file path=usr/postgres/16/man/man3/SPI_result_code_string.3
file path=usr/postgres/16/man/man3/SPI_returntuple.3
file path=usr/postgres/16/man/man3/SPI_rollback.3
file path=usr/postgres/16/man/man3/SPI_rollback_and_chain.3
file path=usr/postgres/16/man/man3/SPI_saveplan.3
file path=usr/postgres/16/man/man3/SPI_scroll_cursor_fetch.3
file path=usr/postgres/16/man/man3/SPI_scroll_cursor_move.3
file path=usr/postgres/16/man/man3/SPI_start_transaction.3
file path=usr/postgres/16/man/man3/SPI_unregister_relation.3
file path=usr/postgres/16/man/man3/dblink.3
file path=usr/postgres/16/man/man3/dblink_build_sql_delete.3
file path=usr/postgres/16/man/man3/dblink_build_sql_insert.3
file path=usr/postgres/16/man/man3/dblink_build_sql_update.3
file path=usr/postgres/16/man/man3/dblink_cancel_query.3
file path=usr/postgres/16/man/man3/dblink_close.3
file path=usr/postgres/16/man/man3/dblink_connect.3
file path=usr/postgres/16/man/man3/dblink_connect_u.3
file path=usr/postgres/16/man/man3/dblink_disconnect.3
file path=usr/postgres/16/man/man3/dblink_error_message.3
file path=usr/postgres/16/man/man3/dblink_exec.3
file path=usr/postgres/16/man/man3/dblink_fetch.3
file path=usr/postgres/16/man/man3/dblink_get_connections.3
file path=usr/postgres/16/man/man3/dblink_get_notify.3
file path=usr/postgres/16/man/man3/dblink_get_pkey.3
file path=usr/postgres/16/man/man3/dblink_get_result.3
file path=usr/postgres/16/man/man3/dblink_is_busy.3
file path=usr/postgres/16/man/man3/dblink_open.3
file path=usr/postgres/16/man/man3/dblink_send_query.3
file path=usr/postgres/16/man/man5/ABORT.5sql
file path=usr/postgres/16/man/man5/ALTER_AGGREGATE.5sql
file path=usr/postgres/16/man/man5/ALTER_COLLATION.5sql
file path=usr/postgres/16/man/man5/ALTER_CONVERSION.5sql
file path=usr/postgres/16/man/man5/ALTER_DATABASE.5sql
file path=usr/postgres/16/man/man5/ALTER_DEFAULT_PRIVILEGES.5sql
file path=usr/postgres/16/man/man5/ALTER_DOMAIN.5sql
file path=usr/postgres/16/man/man5/ALTER_EVENT_TRIGGER.5sql
file path=usr/postgres/16/man/man5/ALTER_EXTENSION.5sql
file path=usr/postgres/16/man/man5/ALTER_FOREIGN_DATA_WRAPPER.5sql
file path=usr/postgres/16/man/man5/ALTER_FOREIGN_TABLE.5sql
file path=usr/postgres/16/man/man5/ALTER_FUNCTION.5sql
file path=usr/postgres/16/man/man5/ALTER_GROUP.5sql
file path=usr/postgres/16/man/man5/ALTER_INDEX.5sql
file path=usr/postgres/16/man/man5/ALTER_LANGUAGE.5sql
file path=usr/postgres/16/man/man5/ALTER_LARGE_OBJECT.5sql
file path=usr/postgres/16/man/man5/ALTER_MATERIALIZED_VIEW.5sql
file path=usr/postgres/16/man/man5/ALTER_OPERATOR.5sql
file path=usr/postgres/16/man/man5/ALTER_OPERATOR_CLASS.5sql
file path=usr/postgres/16/man/man5/ALTER_OPERATOR_FAMILY.5sql
file path=usr/postgres/16/man/man5/ALTER_POLICY.5sql
file path=usr/postgres/16/man/man5/ALTER_PROCEDURE.5sql
file path=usr/postgres/16/man/man5/ALTER_PUBLICATION.5sql
file path=usr/postgres/16/man/man5/ALTER_ROLE.5sql
file path=usr/postgres/16/man/man5/ALTER_ROUTINE.5sql
file path=usr/postgres/16/man/man5/ALTER_RULE.5sql
file path=usr/postgres/16/man/man5/ALTER_SCHEMA.5sql
file path=usr/postgres/16/man/man5/ALTER_SEQUENCE.5sql
file path=usr/postgres/16/man/man5/ALTER_SERVER.5sql
file path=usr/postgres/16/man/man5/ALTER_STATISTICS.5sql
file path=usr/postgres/16/man/man5/ALTER_SUBSCRIPTION.5sql
file path=usr/postgres/16/man/man5/ALTER_SYSTEM.5sql
file path=usr/postgres/16/man/man5/ALTER_TABLE.5sql
file path=usr/postgres/16/man/man5/ALTER_TABLESPACE.5sql
file path=usr/postgres/16/man/man5/ALTER_TEXT_SEARCH_CONFIGURATION.5sql
file path=usr/postgres/16/man/man5/ALTER_TEXT_SEARCH_DICTIONARY.5sql
file path=usr/postgres/16/man/man5/ALTER_TEXT_SEARCH_PARSER.5sql
file path=usr/postgres/16/man/man5/ALTER_TEXT_SEARCH_TEMPLATE.5sql
file path=usr/postgres/16/man/man5/ALTER_TRIGGER.5sql
file path=usr/postgres/16/man/man5/ALTER_TYPE.5sql
file path=usr/postgres/16/man/man5/ALTER_USER.5sql
file path=usr/postgres/16/man/man5/ALTER_USER_MAPPING.5sql
file path=usr/postgres/16/man/man5/ALTER_VIEW.5sql
file path=usr/postgres/16/man/man5/ANALYZE.5sql
file path=usr/postgres/16/man/man5/BEGIN.5sql
file path=usr/postgres/16/man/man5/CALL.5sql
file path=usr/postgres/16/man/man5/CHECKPOINT.5sql
file path=usr/postgres/16/man/man5/CLOSE.5sql
file path=usr/postgres/16/man/man5/CLUSTER.5sql
file path=usr/postgres/16/man/man5/COMMENT.5sql
file path=usr/postgres/16/man/man5/COMMIT.5sql
file path=usr/postgres/16/man/man5/COMMIT_PREPARED.5sql
file path=usr/postgres/16/man/man5/COPY.5sql
file path=usr/postgres/16/man/man5/CREATE_ACCESS_METHOD.5sql
file path=usr/postgres/16/man/man5/CREATE_AGGREGATE.5sql
file path=usr/postgres/16/man/man5/CREATE_CAST.5sql
file path=usr/postgres/16/man/man5/CREATE_COLLATION.5sql
file path=usr/postgres/16/man/man5/CREATE_CONVERSION.5sql
file path=usr/postgres/16/man/man5/CREATE_DATABASE.5sql
file path=usr/postgres/16/man/man5/CREATE_DOMAIN.5sql
file path=usr/postgres/16/man/man5/CREATE_EVENT_TRIGGER.5sql
file path=usr/postgres/16/man/man5/CREATE_EXTENSION.5sql
file path=usr/postgres/16/man/man5/CREATE_FOREIGN_DATA_WRAPPER.5sql
file path=usr/postgres/16/man/man5/CREATE_FOREIGN_TABLE.5sql
file path=usr/postgres/16/man/man5/CREATE_FUNCTION.5sql
file path=usr/postgres/16/man/man5/CREATE_GROUP.5sql
file path=usr/postgres/16/man/man5/CREATE_INDEX.5sql
file path=usr/postgres/16/man/man5/CREATE_LANGUAGE.5sql
file path=usr/postgres/16/man/man5/CREATE_MATERIALIZED_VIEW.5sql
file path=usr/postgres/16/man/man5/CREATE_OPERATOR.5sql
file path=usr/postgres/16/man/man5/CREATE_OPERATOR_CLASS.5sql
file path=usr/postgres/16/man/man5/CREATE_OPERATOR_FAMILY.5sql
file path=usr/postgres/16/man/man5/CREATE_POLICY.5sql
file path=usr/postgres/16/man/man5/CREATE_PROCEDURE.5sql
file path=usr/postgres/16/man/man5/CREATE_PUBLICATION.5sql
file path=usr/postgres/16/man/man5/CREATE_ROLE.5sql
file path=usr/postgres/16/man/man5/CREATE_RULE.5sql
file path=usr/postgres/16/man/man5/CREATE_SCHEMA.5sql
file path=usr/postgres/16/man/man5/CREATE_SEQUENCE.5sql
file path=usr/postgres/16/man/man5/CREATE_SERVER.5sql
file path=usr/postgres/16/man/man5/CREATE_STATISTICS.5sql
file path=usr/postgres/16/man/man5/CREATE_SUBSCRIPTION.5sql
file path=usr/postgres/16/man/man5/CREATE_TABLE.5sql
file path=usr/postgres/16/man/man5/CREATE_TABLESPACE.5sql
file path=usr/postgres/16/man/man5/CREATE_TABLE_AS.5sql
file path=usr/postgres/16/man/man5/CREATE_TEXT_SEARCH_CONFIGURATION.5sql
file path=usr/postgres/16/man/man5/CREATE_TEXT_SEARCH_DICTIONARY.5sql
file path=usr/postgres/16/man/man5/CREATE_TEXT_SEARCH_PARSER.5sql
file path=usr/postgres/16/man/man5/CREATE_TEXT_SEARCH_TEMPLATE.5sql
file path=usr/postgres/16/man/man5/CREATE_TRANSFORM.5sql
file path=usr/postgres/16/man/man5/CREATE_TRIGGER.5sql
file path=usr/postgres/16/man/man5/CREATE_TYPE.5sql
file path=usr/postgres/16/man/man5/CREATE_USER.5sql
file path=usr/postgres/16/man/man5/CREATE_USER_MAPPING.5sql
file path=usr/postgres/16/man/man5/CREATE_VIEW.5sql
file path=usr/postgres/16/man/man5/DEALLOCATE.5sql
file path=usr/postgres/16/man/man5/DECLARE.5sql
file path=usr/postgres/16/man/man5/DELETE.5sql
file path=usr/postgres/16/man/man5/DISCARD.5sql
file path=usr/postgres/16/man/man5/DO.5sql
file path=usr/postgres/16/man/man5/DROP_ACCESS_METHOD.5sql
file path=usr/postgres/16/man/man5/DROP_AGGREGATE.5sql
file path=usr/postgres/16/man/man5/DROP_CAST.5sql
file path=usr/postgres/16/man/man5/DROP_COLLATION.5sql
file path=usr/postgres/16/man/man5/DROP_CONVERSION.5sql
file path=usr/postgres/16/man/man5/DROP_DATABASE.5sql
file path=usr/postgres/16/man/man5/DROP_DOMAIN.5sql
file path=usr/postgres/16/man/man5/DROP_EVENT_TRIGGER.5sql
file path=usr/postgres/16/man/man5/DROP_EXTENSION.5sql
file path=usr/postgres/16/man/man5/DROP_FOREIGN_DATA_WRAPPER.5sql
file path=usr/postgres/16/man/man5/DROP_FOREIGN_TABLE.5sql
file path=usr/postgres/16/man/man5/DROP_FUNCTION.5sql
file path=usr/postgres/16/man/man5/DROP_GROUP.5sql
file path=usr/postgres/16/man/man5/DROP_INDEX.5sql
file path=usr/postgres/16/man/man5/DROP_LANGUAGE.5sql
file path=usr/postgres/16/man/man5/DROP_MATERIALIZED_VIEW.5sql
file path=usr/postgres/16/man/man5/DROP_OPERATOR.5sql
file path=usr/postgres/16/man/man5/DROP_OPERATOR_CLASS.5sql
file path=usr/postgres/16/man/man5/DROP_OPERATOR_FAMILY.5sql
file path=usr/postgres/16/man/man5/DROP_OWNED.5sql
file path=usr/postgres/16/man/man5/DROP_POLICY.5sql
file path=usr/postgres/16/man/man5/DROP_PROCEDURE.5sql
file path=usr/postgres/16/man/man5/DROP_PUBLICATION.5sql
file path=usr/postgres/16/man/man5/DROP_ROLE.5sql
file path=usr/postgres/16/man/man5/DROP_ROUTINE.5sql
file path=usr/postgres/16/man/man5/DROP_RULE.5sql
file path=usr/postgres/16/man/man5/DROP_SCHEMA.5sql
file path=usr/postgres/16/man/man5/DROP_SEQUENCE.5sql
file path=usr/postgres/16/man/man5/DROP_SERVER.5sql
file path=usr/postgres/16/man/man5/DROP_STATISTICS.5sql
file path=usr/postgres/16/man/man5/DROP_SUBSCRIPTION.5sql
file path=usr/postgres/16/man/man5/DROP_TABLE.5sql
file path=usr/postgres/16/man/man5/DROP_TABLESPACE.5sql
file path=usr/postgres/16/man/man5/DROP_TEXT_SEARCH_CONFIGURATION.5sql
file path=usr/postgres/16/man/man5/DROP_TEXT_SEARCH_DICTIONARY.5sql
file path=usr/postgres/16/man/man5/DROP_TEXT_SEARCH_PARSER.5sql
file path=usr/postgres/16/man/man5/DROP_TEXT_SEARCH_TEMPLATE.5sql
file path=usr/postgres/16/man/man5/DROP_TRANSFORM.5sql
file path=usr/postgres/16/man/man5/DROP_TRIGGER.5sql
file path=usr/postgres/16/man/man5/DROP_TYPE.5sql
file path=usr/postgres/16/man/man5/DROP_USER.5sql
file path=usr/postgres/16/man/man5/DROP_USER_MAPPING.5sql
file path=usr/postgres/16/man/man5/DROP_VIEW.5sql
file path=usr/postgres/16/man/man5/END.5sql
file path=usr/postgres/16/man/man5/EXECUTE.5sql
file path=usr/postgres/16/man/man5/EXPLAIN.5sql
file path=usr/postgres/16/man/man5/FETCH.5sql
file path=usr/postgres/16/man/man5/GRANT.5sql
file path=usr/postgres/16/man/man5/IMPORT_FOREIGN_SCHEMA.5sql
file path=usr/postgres/16/man/man5/INSERT.5sql
file path=usr/postgres/16/man/man5/LISTEN.5sql
file path=usr/postgres/16/man/man5/LOAD.5sql
file path=usr/postgres/16/man/man5/LOCK.5sql
file path=usr/postgres/16/man/man5/MOVE.5sql
file path=usr/postgres/16/man/man5/NOTIFY.5sql
file path=usr/postgres/16/man/man5/PREPARE.5sql
file path=usr/postgres/16/man/man5/PREPARE_TRANSACTION.5sql
file path=usr/postgres/16/man/man5/REASSIGN_OWNED.5sql
file path=usr/postgres/16/man/man5/REFRESH_MATERIALIZED_VIEW.5sql
file path=usr/postgres/16/man/man5/REINDEX.5sql
file path=usr/postgres/16/man/man5/RELEASE_SAVEPOINT.5sql
file path=usr/postgres/16/man/man5/RESET.5sql
file path=usr/postgres/16/man/man5/REVOKE.5sql
file path=usr/postgres/16/man/man5/ROLLBACK.5sql
file path=usr/postgres/16/man/man5/ROLLBACK_PREPARED.5sql
file path=usr/postgres/16/man/man5/ROLLBACK_TO_SAVEPOINT.5sql
file path=usr/postgres/16/man/man5/SAVEPOINT.5sql
file path=usr/postgres/16/man/man5/SECURITY_LABEL.5sql
file path=usr/postgres/16/man/man5/SELECT.5sql
file path=usr/postgres/16/man/man5/SELECT_INTO.5sql
file path=usr/postgres/16/man/man5/SET.5sql
file path=usr/postgres/16/man/man5/SET_CONSTRAINTS.5sql
file path=usr/postgres/16/man/man5/SET_ROLE.5sql
file path=usr/postgres/16/man/man5/SET_SESSION_AUTHORIZATION.5sql
file path=usr/postgres/16/man/man5/SET_TRANSACTION.5sql
file path=usr/postgres/16/man/man5/SHOW.5sql
file path=usr/postgres/16/man/man5/START_TRANSACTION.5sql
file path=usr/postgres/16/man/man5/TABLE.5sql
file path=usr/postgres/16/man/man5/TRUNCATE.5sql
file path=usr/postgres/16/man/man5/UNLISTEN.5sql
file path=usr/postgres/16/man/man5/UPDATE.5sql
file path=usr/postgres/16/man/man5/VACUUM.5sql
file path=usr/postgres/16/man/man5/VALUES.5sql
file path=usr/postgres/16/man/man5/WITH.5sql
components/database/postgresql-16/postgresql16-language-bindings.p5m
New file
@@ -0,0 +1,94 @@
#
# 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 2023 Andreas Wacknitz
#
set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)/language-bindings@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.human-version value=$(HUMAN_VERSION)
set name=pkg.summary value="PostgreSQL 16 additional Perl, Python & TCL server procedural languages"
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/16/lib/$(MACH64)/jsonb_plperl.so
file path=usr/postgres/16/lib/$(MACH64)/jsonb_plpython3.so
file path=usr/postgres/16/lib/$(MACH64)/plperl.so
file path=usr/postgres/16/lib/$(MACH64)/plpython3.so mode=0555
file path=usr/postgres/16/lib/$(MACH64)/pltcl.so mode=0555
file path=usr/postgres/16/share/extension/plperl--1.0.sql
file path=usr/postgres/16/share/extension/plperl.control
file path=usr/postgres/16/share/extension/plperlu--1.0.sql
file path=usr/postgres/16/share/extension/plperlu.control
file path=usr/postgres/16/share/extension/plpython3u--1.0.sql
file path=usr/postgres/16/share/extension/plpython3u.control
file path=usr/postgres/16/share/extension/pltcl--1.0.sql
file path=usr/postgres/16/share/extension/pltcl.control
file path=usr/postgres/16/share/extension/pltclu--1.0.sql
file path=usr/postgres/16/share/extension/pltclu.control
file path=usr/share/locale/cs/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/de/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/de/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/el/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/el/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/es/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/es/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/it/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/it/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pltcl-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/plperl-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/plpython-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pltcl-16.mo
components/database/postgresql-16/postgresql16-library.p5m
New file
@@ -0,0 +1,93 @@
#
# 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 2023 Andreas Wacknitz
#
set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)/library@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.human-version value=$(HUMAN_VERSION)
set name=pkg.summary value="PostgreSQL 16 client libraries"
set name=info.classification value="$(COMPONENT_CLASSIFICATION)"
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 $(COMPONENT_LICENSE_FILE) license='$(COMPONENT_LICENSE)'
link path=usr/postgres/16/lib/64 target=$(MACH64)
dir path=usr/postgres/16/lib/$(MACH64)
link path=usr/lib/$(MACH64)/libpq.so target=libpq.so.5.16 facet.compat.dev=true mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/lib/$(MACH64)/libpq.so.5 target=libpq.so.5.16 facet.compat.dev=true mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/lib/$(MACH64)/libpq.so.5.16 target=../../postgres/16/lib/$(MACH64)/libpq.so.5.16 facet.compat.dev=true mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/lib/libpq.so target=libpq.so.5.16 facet.compat.dev=true mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/lib/libpq.so.5 target=libpq.so.5.16 facet.compat.dev=true mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/lib/libpq.so.5.16 target=../postgres/16/lib/libpq.so.5.16 facet.compat.dev=true mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/postgres/16/lib/$(MACH64)/libecpg.so target=libecpg.so.6.16
link path=usr/postgres/16/lib/$(MACH64)/libecpg.so.6 target=libecpg.so.6.16
file path=usr/postgres/16/lib/$(MACH64)/libecpg.so.6.16
link path=usr/postgres/16/lib/$(MACH64)/libecpg_compat.so \
    target=libecpg_compat.so.3.16
link path=usr/postgres/16/lib/$(MACH64)/libecpg_compat.so.3 \
    target=libecpg_compat.so.3.16
file path=usr/postgres/16/lib/$(MACH64)/libecpg_compat.so.3.16
link path=usr/postgres/16/lib/$(MACH64)/libpgtypes.so target=libpgtypes.so.3.16
link path=usr/postgres/16/lib/$(MACH64)/libpgtypes.so.3 \
    target=libpgtypes.so.3.16
file path=usr/postgres/16/lib/$(MACH64)/libpgtypes.so.3.16
link path=usr/postgres/16/lib/$(MACH64)/libpq.so target=libpq.so.5.16
link path=usr/postgres/16/lib/$(MACH64)/libpq.so.5 target=libpq.so.5.16
file path=usr/postgres/16/lib/$(MACH64)/libpq.so.5.16
file path=usr/postgres/16/lib/$(MACH64)/libpqwalreceiver.so
link path=usr/postgres/16/lib/libecpg.so target=libecpg.so.6.16
link path=usr/postgres/16/lib/libecpg.so.6 target=libecpg.so.6.16
file path=usr/postgres/16/lib/libecpg.so.6.16
link path=usr/postgres/16/lib/libecpg_compat.so target=libecpg_compat.so.3.16
link path=usr/postgres/16/lib/libecpg_compat.so.3 target=libecpg_compat.so.3.16
file path=usr/postgres/16/lib/libecpg_compat.so.3.16
link path=usr/postgres/16/lib/libpgtypes.so target=libpgtypes.so.3.16
link path=usr/postgres/16/lib/libpgtypes.so.3 target=libpgtypes.so.3.16
file path=usr/postgres/16/lib/libpgtypes.so.3.16
link path=usr/postgres/16/lib/libpq.so target=libpq.so.5.16
link path=usr/postgres/16/lib/libpq.so.5 target=libpq.so.5.16
file path=usr/postgres/16/lib/libpq.so.5.16
file path=usr/postgres/16/lib/libpqwalreceiver.so mode=0555
file path=usr/share/locale/cs/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/de/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/de/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/el/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/el/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/es/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/es/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/ecpg-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/libpq5-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/ecpglib6-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/libpq5-16.mo
components/database/postgresql-16/postgresql16-service.p5m
New file
@@ -0,0 +1,239 @@
#
# 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 2023 Andreas Wacknitz
#
set name=pkg.fmri value=pkg:/service/$(COMPONENT_FMRI)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.human-version value=$(HUMAN_VERSION)
set name=pkg.summary value="PostgreSQL 16 database server"
set name=info.classification value="$(COMPONENT_CLASSIFICATION)"
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 $(COMPONENT_LICENSE_FILE) license='$(COMPONENT_LICENSE)'
depend fmri=pkg:/$(COMPONENT_FMRI) type=require
depend fmri=pkg:/database/postgres-common type=require
file files/auth_attr path=etc/security/auth_attr.d/postgres-16
file files/exec_attr path=etc/security/exec_attr.d/postgres-16
file files/prof_attr path=etc/security/prof_attr.d/postgres-16
file files/user_attr path=etc/user_attr.d/postgres-16
file files/postgresql_16.xml path=lib/svc/manifest/application/database/postgresql_16.xml restart_fmri=svc:/system/manifest-import:default
file files/postgres_16 mode=0555 path=lib/svc/method/postgres_16
dir group=postgres mode=0755 owner=postgres path=var/postgres/16
dir group=postgres mode=0700 owner=postgres path=var/postgres/16/backups
dir group=postgres mode=0700 owner=postgres path=var/postgres/16/data
link path=usr/postgres/16/bin/postmaster target=postgres
file path=usr/postgres/16/bin/initdb
file path=usr/postgres/16/bin/pg_checksums
file path=usr/postgres/16/bin/pg_controldata
file path=usr/postgres/16/bin/pg_ctl
file path=usr/postgres/16/bin/pg_resetwal
file path=usr/postgres/16/bin/postgres
file path=usr/postgres/16/lib/$(MACH64)/cyrillic_and_mic.so
file path=usr/postgres/16/lib/$(MACH64)/dict_snowball.so
file path=usr/postgres/16/lib/$(MACH64)/euc_cn_and_mic.so
file path=usr/postgres/16/lib/$(MACH64)/euc_jp_and_sjis.so
file path=usr/postgres/16/lib/$(MACH64)/euc_kr_and_mic.so
file path=usr/postgres/16/lib/$(MACH64)/euc_tw_and_big5.so
file path=usr/postgres/16/lib/$(MACH64)/euc2004_sjis2004.so
file path=usr/postgres/16/lib/$(MACH64)/latin2_and_win1250.so
file path=usr/postgres/16/lib/$(MACH64)/latin_and_mic.so
file path=usr/postgres/16/lib/$(MACH64)/pgoutput.so
file path=usr/postgres/16/lib/$(MACH64)/plpgsql.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_big5.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_cyrillic.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_euc2004.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_euc_cn.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_euc_jp.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_euc_kr.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_euc_tw.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_gb18030.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_gbk.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_iso8859.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_iso8859_1.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_johab.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_sjis.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_sjis2004.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_uhc.so
file path=usr/postgres/16/lib/$(MACH64)/utf8_and_win.so
file path=usr/postgres/16/man/man1/initdb.1
file path=usr/postgres/16/man/man1/pg_checksums.1
file path=usr/postgres/16/man/man1/pg_controldata.1
file path=usr/postgres/16/man/man1/pg_ctl.1
file path=usr/postgres/16/man/man1/pg_resetwal.1
file path=usr/postgres/16/man/man1/postgres.1
file path=usr/postgres/16/share/errcodes.txt
file path=usr/postgres/16/share/information_schema.sql
file path=usr/postgres/16/share/pg_hba.conf.sample
file path=usr/postgres/16/share/pg_ident.conf.sample
file path=usr/postgres/16/share/pg_service.conf.sample
file path=usr/postgres/16/share/postgres.bki
file path=usr/postgres/16/share/postgresql.conf.sample
file path=usr/postgres/16/share/snowball_create.sql
file path=usr/postgres/16/share/sql_features.txt
file path=usr/postgres/16/share/system_constraints.sql
file path=usr/postgres/16/share/system_functions.sql
file path=usr/postgres/16/share/system_views.sql
file path=usr/postgres/16/share/extension/plpgsql--1.0.sql
file path=usr/postgres/16/share/extension/plpgsql.control
file path=usr/postgres/16/share/timezonesets/Africa.txt
file path=usr/postgres/16/share/timezonesets/America.txt
file path=usr/postgres/16/share/timezonesets/Antarctica.txt
file path=usr/postgres/16/share/timezonesets/Asia.txt
file path=usr/postgres/16/share/timezonesets/Atlantic.txt
file path=usr/postgres/16/share/timezonesets/Australia
file path=usr/postgres/16/share/timezonesets/Australia.txt
file path=usr/postgres/16/share/timezonesets/Default
file path=usr/postgres/16/share/timezonesets/Etc.txt
file path=usr/postgres/16/share/timezonesets/Europe.txt
file path=usr/postgres/16/share/timezonesets/India
file path=usr/postgres/16/share/timezonesets/Indian.txt
file path=usr/postgres/16/share/timezonesets/Pacific.txt
file path=usr/postgres/16/share/tsearch_data/danish.stop
file path=usr/postgres/16/share/tsearch_data/dutch.stop
file path=usr/postgres/16/share/tsearch_data/english.stop
file path=usr/postgres/16/share/tsearch_data/finnish.stop
file path=usr/postgres/16/share/tsearch_data/french.stop
file path=usr/postgres/16/share/tsearch_data/german.stop
file path=usr/postgres/16/share/tsearch_data/hungarian.stop
file path=usr/postgres/16/share/tsearch_data/hunspell_sample.affix
file path=usr/postgres/16/share/tsearch_data/hunspell_sample_long.affix
file path=usr/postgres/16/share/tsearch_data/hunspell_sample_long.dict
file path=usr/postgres/16/share/tsearch_data/hunspell_sample_num.affix
file path=usr/postgres/16/share/tsearch_data/hunspell_sample_num.dict
file path=usr/postgres/16/share/tsearch_data/ispell_sample.affix
file path=usr/postgres/16/share/tsearch_data/ispell_sample.dict
file path=usr/postgres/16/share/tsearch_data/italian.stop
file path=usr/postgres/16/share/tsearch_data/nepali.stop
file path=usr/postgres/16/share/tsearch_data/norwegian.stop
file path=usr/postgres/16/share/tsearch_data/portuguese.stop
file path=usr/postgres/16/share/tsearch_data/russian.stop
file path=usr/postgres/16/share/tsearch_data/spanish.stop
file path=usr/postgres/16/share/tsearch_data/swedish.stop
file path=usr/postgres/16/share/tsearch_data/synonym_sample.syn
file path=usr/postgres/16/share/tsearch_data/thesaurus_sample.ths
file path=usr/postgres/16/share/tsearch_data/turkish.stop
file path=usr/postgres/16/share/tsearch_data/unaccent.rules
file path=usr/postgres/16/share/tsearch_data/xsyn_sample.rules
file path=usr/share/locale/cs/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/de/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/de/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/de/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/el/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/el/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/es/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/es/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/es/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/it/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/it/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/it/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/pl/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/pt_BR/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_checksums-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/plpgsql-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/postgres-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/initdb-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_controldata-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_ctl-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/pg_resetwal-16.mo
file path=usr/share/locale/zh_TW/LC_MESSAGES/plpgsql-16.mo
components/database/postgresql-16/postgresql16-tests.p5m
New file
@@ -0,0 +1,506 @@
#
# 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 2023 Andreas Wacknitz
#
set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)/tests@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.human-version value=$(HUMAN_VERSION)
set name=pkg.summary value="PostgreSQL 16 functional regression tests"
set name=info.classification value="$(COMPONENT_CLASSIFICATION)"
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 $(COMPONENT_LICENSE_FILE) license='$(COMPONENT_LICENSE)'
file files/pg_regress.sh path=usr/postgres/16/lib/regress/pg_regress.sh mode=0555
file path=usr/postgres/16/lib/$(MACH64)/regress.so
file path=usr/postgres/16/lib/$(MACH64)/regress/data/agg.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/array.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/constrf.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/constro.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/dept.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/desc.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/emp.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/hash.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/jsonb.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/onek.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/person.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/real_city.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/rect.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/streets.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/stud_emp.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/student.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/tenk.data
file path=usr/postgres/16/lib/$(MACH64)/regress/data/tsearch.data
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/advisory_lock.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/aggregates.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/alter_generic.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/alter_operator.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/alter_table.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/amutils.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/arrays.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/async.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/bit.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/bitmapops.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/boolean.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/box.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/brin.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/brin_bloom.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/brin_multi.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/btree_index.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/case.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/char.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/char_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/char_2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/circle.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/cluster.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/collate.icu.utf8.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/collate.icu.utf8_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/collate.linux.utf8.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/collate.linux.utf8_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/collate.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/collate.windows.win1252.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/collate.windows.win1252_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/combocid.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/comments.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/compression.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/compression_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/constraints.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/conversion.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/copy.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/copy2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/copydml.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/copyselect.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_aggregate.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_am.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_cast.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_function_c.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_function_sql.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_index.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_index_spgist.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_misc.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_operator.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_procedure.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_role.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_schema.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_table.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_table_like.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_type.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/create_view.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/date.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/dbsize.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/delete.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/dependency.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/domain.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/drop_if_exists.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/drop_operator.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/enum.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/equivclass.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/errors.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/event_trigger.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/explain.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/expressions.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/fast_default.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/float4-misrounded-input.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/float4.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/float8.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/foreign_data.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/foreign_key.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/functional_deps.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/generated.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/geometry.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/gin.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/gist.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/groupingsets.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/guc.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/hash_func.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/hash_index.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/hash_part.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/horology.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/identity.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/incremental_sort.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/index_including.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/index_including_gist.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/indexing.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/indirect_toast.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/inet.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/infinite_recurse.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/infinite_recurse_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/inherit.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/init_privs.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/insert.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/insert_conflict.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/int2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/int4.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/int8.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/interval.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/join.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/join_hash.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/json.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/json_encoding.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/json_encoding_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/json_encoding_2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/jsonb.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/jsonb_jsonpath.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/jsonpath.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/jsonpath_encoding.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/jsonpath_encoding_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/jsonpath_encoding_2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/largeobject.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/largeobject_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/limit.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/line.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/lock.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/lseg.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/macaddr.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/macaddr8.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/matview.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/md5.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/memoize.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/merge.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/misc.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/misc_functions.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/misc_sanity.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/money.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/multirangetypes.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/mvcc.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/name.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/namespace.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/numeric.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/numeric_big.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/numerology.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/object_address.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/oid.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/oidjoins.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/opr_sanity.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/partition_aggregate.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/partition_info.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/partition_join.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/partition_prune.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/password.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/path.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/pg_lsn.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/plancache.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/plpgsql.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/point.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/polygon.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/polymorphism.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/portals.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/portals_p2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/prepare.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/prepared_xacts.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/prepared_xacts_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/privileges.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/psql.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/psql_crosstab.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/publication.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/random.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/rangefuncs.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/rangetypes.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/regex.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/regproc.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/reindex_catalog.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/reloptions.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/replica_identity.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/returning.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/roleattributes.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/rowsecurity.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/rowtypes.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/rules.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/sanity_check.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/security_label.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_distinct.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_distinct_on.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_having.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_having_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_having_2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_implicit.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_implicit_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_implicit_2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_into.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_parallel.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/select_views.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/sequence.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/spgist.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/sqljson.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/stats.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/stats_ext.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/strings.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/subscription.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/subselect.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/sysviews.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tablesample.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tablespace.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/temp.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/test_setup.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/text.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tid.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tidrangescan.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tidscan.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/time.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/timestamp.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/timestamptz.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/timetz.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/transactions.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/triggers.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/truncate.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tsdicts.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tsearch.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tsrf.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tstypes.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/tuplesort.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/txid.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/type_sanity.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/typed_table.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/unicode.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/unicode_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/union.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/updatable_views.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/update.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/uuid.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/vacuum.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/vacuum_parallel.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/varchar.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/varchar_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/varchar_2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/window.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/with.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/write_parallel.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/xid.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/xml.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/xml_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/xml_2.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/xmlmap.out
file path=usr/postgres/16/lib/$(MACH64)/regress/expected/xmlmap_1.out
file path=usr/postgres/16/lib/$(MACH64)/regress/parallel_schedule
file path=usr/postgres/16/lib/$(MACH64)/regress/resultmap
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/advisory_lock.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/aggregates.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/alter_generic.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/alter_operator.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/alter_table.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/amutils.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/arrays.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/async.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/bit.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/bitmapops.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/boolean.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/box.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/brin.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/brin_bloom.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/brin_multi.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/btree_index.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/case.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/char.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/circle.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/cluster.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/collate.icu.utf8.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/collate.linux.utf8.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/collate.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/collate.windows.win1252.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/combocid.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/comments.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/compression.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/constraints.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/conversion.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/copy.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/copy2.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/copydml.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/copyselect.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_aggregate.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_am.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_cast.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_function_c.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_function_sql.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_index.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_index_spgist.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_misc.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_operator.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_procedure.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_role.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_schema.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_table.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_table_like.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_type.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/create_view.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/date.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/dbsize.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/delete.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/dependency.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/domain.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/drop_if_exists.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/drop_operator.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/enum.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/equivclass.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/errors.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/event_trigger.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/explain.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/expressions.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/fast_default.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/float4.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/float8.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/foreign_data.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/foreign_key.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/functional_deps.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/generated.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/geometry.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/gin.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/gist.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/groupingsets.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/guc.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/hash_func.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/hash_index.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/hash_part.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/horology.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/identity.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/incremental_sort.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/index_including.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/index_including_gist.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/indexing.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/indirect_toast.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/inet.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/infinite_recurse.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/inherit.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/init_privs.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/insert.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/insert_conflict.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/int2.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/int4.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/int8.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/interval.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/join.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/join_hash.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/json.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/json_encoding.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/jsonb.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/jsonb_jsonpath.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/jsonpath.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/jsonpath_encoding.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/largeobject.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/limit.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/line.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/lock.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/lseg.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/macaddr.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/macaddr8.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/matview.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/md5.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/memoize.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/merge.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/misc.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/misc_functions.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/misc_sanity.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/money.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/multirangetypes.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/mvcc.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/name.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/namespace.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/numeric.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/numeric_big.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/numerology.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/object_address.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/oid.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/oidjoins.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/opr_sanity.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/partition_aggregate.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/partition_info.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/partition_join.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/partition_prune.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/password.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/path.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/pg_lsn.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/plancache.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/plpgsql.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/point.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/polygon.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/polymorphism.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/portals.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/portals_p2.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/prepare.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/prepared_xacts.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/privileges.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/psql.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/psql_crosstab.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/publication.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/random.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/rangefuncs.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/rangetypes.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/regex.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/regproc.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/reindex_catalog.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/reloptions.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/replica_identity.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/returning.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/roleattributes.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/rowsecurity.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/rowtypes.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/rules.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/sanity_check.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/security_label.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/select.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/select_distinct.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/select_distinct_on.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/select_having.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/select_implicit.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/select_into.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/select_parallel.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/select_views.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/sequence.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/spgist.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/sqljson.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/stats.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/stats_ext.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/strings.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/subscription.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/subselect.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/sysviews.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tablesample.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tablespace.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/temp.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/test_setup.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/text.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tid.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tidrangescan.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tidscan.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/time.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/timestamp.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/timestamptz.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/timetz.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/transactions.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/triggers.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/truncate.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tsdicts.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tsearch.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tsrf.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tstypes.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/tuplesort.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/txid.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/type_sanity.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/typed_table.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/unicode.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/union.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/updatable_views.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/update.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/uuid.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/vacuum.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/vacuum_parallel.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/varchar.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/window.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/with.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/write_parallel.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/xid.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/xml.sql
file path=usr/postgres/16/lib/$(MACH64)/regress/sql/xmlmap.sql
components/database/postgresql-16/postgresql16.p5m
New file
@@ -0,0 +1,179 @@
#
# 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 2017 Alexander Pyhalov
# Copyright 2018 Michal Nowak
# Copyright 2022 Marco van Wieringen
# Copyright 2023 Andreas Wacknitz
#
set name=pkg.fmri value=pkg:/$(COMPONENT_FMRI)@$(IPS_COMPONENT_VERSION),$(BUILD_VERSION)
set name=pkg.human-version value=$(HUMAN_VERSION)
set name=pkg.summary value="PostgreSQL 16 client tools"
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)'
link path=usr/bin/clusterdb target=../postgres/16/bin/clusterdb mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/createdb target=../postgres/16/bin/createdb mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/createuser target=../postgres/16/bin/createuser mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/dropdb target=../postgres/16/bin/dropdb mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/dropuser target=../postgres/16/bin/dropuser mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/pg_basebackup target=../postgres/16/bin/pg_basebackup mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/pg_dump target=../postgres/16/bin/pg_dump mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/pg_dumpall target=../postgres/16/bin/pg_dumpall mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/pg_isready target=../postgres/16/bin/pg_isready mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/pg_receivewal target=../postgres/16/bin/pg_receivewal mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/pg_recvlogical target=../postgres/16/bin/pg_recvlogical mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/pg_restore target=../postgres/16/bin/pg_restore mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/pg_rewind target=../postgres/16/bin/pg_rewind mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/pg_upgrade target=../postgres/16/bin/pg_upgrade mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/psql target=../postgres/16/bin/psql mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/reindexdb target=../postgres/16/bin/reindexdb mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/bin/vacuumdb target=../postgres/16/bin/vacuumdb mediator=postgres mediator-implementation=postgresql mediator-version=16
# man pages mediators
link path=usr/share/man/man1/clusterdb.1 target=../../../postgres/16/man/man1/clusterdb.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/createdb.1 target=../../../postgres/16/man/man1/createdb.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/createuser.1 target=../../../postgres/16/man/man1/createuser.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/dropdb.1 target=../../../postgres/16/man/man1/dropdb.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/dropuser.1 target=../../../postgres/16/man/man1/dropuser.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/pg_basebackup.1 target=../../../postgres/16/man/man1/pg_basebackup.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/pg_dump.1 target=../../../postgres/16/man/man1/pg_dump.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/pg_dumpall.1 target=../../../postgres/16/man/man1/pg_dumpall.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/pg_isready.1 target=../../../postgres/16/man/man1/pg_isready.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/pg_receivewal.1 target=../../../postgres/16/man/man1/pg_receivewal.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/pg_recvlogical.1 target=../../../postgres/16/man/man1/pg_recvlogical.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/pg_restore.1 target=../../../postgres/16/man/man1/pg_restore.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/pg_rewind.1 target=../../../postgres/16/man/man1/pg_rewind.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/pg_upgrade.1 target=../../../postgres/16/man/man1/pg_upgrade.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/psql.1 target=../../../postgres/16/man/man1/psql.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/reindexdb.1 target=../../../postgres/16/man/man1/reindexdb.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
link path=usr/share/man/man1/vacuumdb.1 target=../../../postgres/16/man/man1/vacuumdb.1 mediator=postgres mediator-implementation=postgresql mediator-version=16
file path=usr/postgres/16/bin/clusterdb
file path=usr/postgres/16/bin/createdb
file path=usr/postgres/16/bin/createuser
file path=usr/postgres/16/bin/dropdb
file path=usr/postgres/16/bin/dropuser
file path=usr/postgres/16/bin/pg_basebackup
file path=usr/postgres/16/bin/pg_dump
file path=usr/postgres/16/bin/pg_dumpall
file path=usr/postgres/16/bin/pg_isready
file path=usr/postgres/16/bin/pg_receivewal
file path=usr/postgres/16/bin/pg_recvlogical
file path=usr/postgres/16/bin/pg_restore
file path=usr/postgres/16/bin/pg_rewind
file path=usr/postgres/16/bin/pg_upgrade
file path=usr/postgres/16/bin/psql
file path=usr/postgres/16/bin/reindexdb
file path=usr/postgres/16/bin/vacuumdb
file path=usr/postgres/16/man/man1/clusterdb.1
file path=usr/postgres/16/man/man1/createdb.1
file path=usr/postgres/16/man/man1/createuser.1
file path=usr/postgres/16/man/man1/dropdb.1
file path=usr/postgres/16/man/man1/dropuser.1
file path=usr/postgres/16/man/man1/pg_basebackup.1
file path=usr/postgres/16/man/man1/pg_dump.1
file path=usr/postgres/16/man/man1/pg_dumpall.1
file path=usr/postgres/16/man/man1/pg_isready.1
file path=usr/postgres/16/man/man1/pg_receivewal.1
file path=usr/postgres/16/man/man1/pg_recvlogical.1
file path=usr/postgres/16/man/man1/pg_restore.1
file path=usr/postgres/16/man/man1/pg_rewind.1
file path=usr/postgres/16/man/man1/pg_upgrade.1
file path=usr/postgres/16/man/man1/psql.1
file path=usr/postgres/16/man/man1/reindexdb.1
file path=usr/postgres/16/man/man1/vacuumdb.1
file path=usr/postgres/16/share/psqlrc.sample
file path=usr/share/locale/cs/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/cs/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/de/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/de/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/el/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/el/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/es/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/es/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/fr/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/it/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/it/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/ja/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/ka/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/ko/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/ru/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/sv/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/tr/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/uk/LC_MESSAGES/psql-16.mo
file path=usr/share/locale/vi/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_basebackup-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_dump-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_rewind-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pg_upgrade-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/pgscripts-16.mo
file path=usr/share/locale/zh_CN/LC_MESSAGES/psql-16.mo
components/database/postgresql-16/test/results-all.master
New file
@@ -0,0 +1,216 @@
ok 1         - test_setup
ok 2         + boolean
ok 3         + char
ok 4         + name
ok 5         + varchar
ok 6         + text
ok 7         + int2
ok 8         + int4
ok 9         + int8
ok 10        + oid
ok 11        + float4
ok 12        + float8
ok 13        + bit
ok 14        + numeric
ok 15        + txid
ok 16        + uuid
ok 17        + enum
ok 18        + money
ok 19        + rangetypes
ok 20        + pg_lsn
ok 21        + regproc
ok 22        + strings
ok 23        + md5
ok 24        + numerology
ok 25        + point
ok 26        + lseg
ok 27        + line
ok 28        + box
ok 29        + path
ok 30        + polygon
ok 31        + circle
ok 32        + date
ok 33        + time
ok 34        + timetz
ok 35        + timestamp
not ok 36    + timestamptz
ok 37        + interval
ok 38        + inet
ok 39        + macaddr
ok 40        + macaddr8
ok 41        + multirangetypes
ok 42        + geometry
ok 43        + horology
ok 44        + tstypes
ok 45        + regex
ok 46        + type_sanity
ok 47        + opr_sanity
ok 48        + misc_sanity
ok 49        + comments
ok 50        + expressions
ok 51        + unicode
ok 52        + xid
ok 53        + mvcc
ok 54        + copy
ok 55        + copyselect
ok 56        + copydml
ok 57        + insert
ok 58        + insert_conflict
ok 59        + create_function_c
ok 60        + create_misc
ok 61        + create_operator
ok 62        + create_procedure
ok 63        + create_table
ok 64        + create_type
ok 65        + create_schema
ok 66        + create_index
ok 67        + create_index_spgist
ok 68        + create_view
ok 69        + index_including
ok 70        + index_including_gist
ok 71        + create_aggregate
ok 72        + create_function_sql
ok 73        + create_cast
ok 74        + constraints
ok 75        + triggers
ok 76        + select
ok 77        + inherit
ok 78        + typed_table
ok 79        + vacuum
ok 80        + drop_if_exists
ok 81        + updatable_views
ok 82        + roleattributes
ok 83        + create_am
ok 84        + hash_func
ok 85        + errors
ok 86        + infinite_recurse
ok 87        - sanity_check
ok 88        + select_into
ok 89        + select_distinct
ok 90        + select_distinct_on
ok 91        + select_implicit
ok 92        + select_having
ok 93        + subselect
ok 94        + union
ok 95        + case
ok 96        + join
ok 97        + aggregates
ok 98        + transactions
ok 99        + random
ok 100       + portals
ok 101       + arrays
ok 102       + btree_index
ok 103       + hash_index
ok 104       + update
ok 105       + delete
ok 106       + namespace
ok 107       + prepared_xacts
ok 108       + brin
ok 109       + gin
ok 110       + gist
ok 111       + spgist
ok 112       + privileges
ok 113       + init_privs
ok 114       + security_label
ok 115       + collate
ok 116       + matview
ok 117       + lock
ok 118       + replica_identity
ok 119       + rowsecurity
ok 120       + object_address
ok 121       + tablesample
ok 122       + groupingsets
ok 123       + drop_operator
ok 124       + password
ok 125       + identity
ok 126       + generated
ok 127       + join_hash
ok 128       + brin_bloom
ok 129       + brin_multi
ok 130       + create_table_like
ok 131       + alter_generic
ok 132       + alter_operator
ok 133       + misc
ok 134       + async
ok 135       + dbsize
ok 136       + merge
ok 137       + misc_functions
ok 138       + sysviews
ok 139       + tsrf
ok 140       + tid
ok 141       + tidscan
ok 142       + tidrangescan
ok 143       + collate.icu.utf8
ok 144       + incremental_sort
ok 145       + create_role
ok 146       + rules
ok 147       + psql
ok 148       + psql_crosstab
ok 149       + amutils
ok 150       + stats_ext
ok 151       + collate.linux.utf8
ok 152       + collate.windows.win1252
ok 153       - select_parallel
ok 154       - write_parallel
ok 155       - vacuum_parallel
ok 156       + publication
ok 157       + subscription
ok 158       + select_views
ok 159       + portals_p2
ok 160       + foreign_key
ok 161       + cluster
ok 162       + dependency
ok 163       + guc
ok 164       + bitmapops
ok 165       + combocid
ok 166       + tsearch
ok 167       + tsdicts
ok 168       + foreign_data
ok 169       + window
ok 170       + xmlmap
ok 171       + functional_deps
ok 172       + advisory_lock
ok 173       + indirect_toast
ok 174       + equivclass
ok 175       + json
ok 176       + jsonb
ok 177       + json_encoding
ok 178       + jsonpath
ok 179       + jsonpath_encoding
ok 180       + jsonb_jsonpath
ok 181       + sqljson
ok 182       + plancache
ok 183       + limit
ok 184       + plpgsql
ok 185       + copy2
ok 186       + temp
ok 187       + domain
ok 188       + rangefuncs
ok 189       + prepare
ok 190       + conversion
ok 191       + truncate
ok 192       + alter_table
ok 193       + sequence
ok 194       + polymorphism
ok 195       + rowtypes
ok 196       + returning
ok 197       + largeobject
ok 198       + with
ok 199       + xml
ok 200       + partition_join
ok 201       + partition_prune
ok 202       + reloptions
ok 203       + hash_part
ok 204       + indexing
ok 205       + partition_aggregate
ok 206       + partition_info
ok 207       + tuplesort
ok 208       + explain
ok 209       + compression
ok 210       + memoize
ok 211       + stats
ok 212       + event_trigger
ok 213       + oidjoins
ok 214       - fast_default
ok 215       - tablespace
# 1 of 215 tests failed.
make-rules/shared-macros.mk
@@ -906,6 +906,7 @@
# |         12         |   2024-11-14   |
# |         14         |   2026-11-12   |
# |         15         |   2027-11-11   |
# |         16         |   2028-11-09   |
# +--------------------+----------------+
#
# See https://www.postgresql.org/support/versioning/
@@ -915,7 +916,7 @@
# Default DB version should be the newest one we do have so we detect any
# incompatibilities as soon as possible.  Components could override this when
# they are not ready yet to compile with so new version.
PG_VERSION ?=   15
PG_VERSION ?=   16
PG_IMPLEM ?=    postgres
PG_VERNUM =     $(subst .,,$(PG_VERSION))
# For dependencies, including REQUIRED_PACKAGES if needed