diff --git a/Mk/Uses/pgsql.mk b/Mk/Uses/pgsql.mk --- a/Mk/Uses/pgsql.mk +++ b/Mk/Uses/pgsql.mk @@ -1,20 +1,27 @@ # Provide support for PostgreSQL (pgsql) # # Feature: pgsql -# Usage: USES= pgsql[:version] +# Usage: USES= pgsql[:server|contrib|plperl|pltcl|plpython,...] # -# version Maintainer can set versions required. You can set this to -# [min]-[max] or min+ or -max or as an explicit version -# (eg. 9.3-9.6 for [min]-[max], 9.5+ or 9.6- -# for min+ and max-, 9.4 for an explicit version). Example: +# Most ports require only connectivity to a postgresql database +# cluster. These ports must not depends on the server component, +# since the server might run on a different machine. Depend on +# `pgsql' when the port links with libpq or uses psql or similar +# tools to connect to a postgresql database. # -# USES=pgsql:9.4 # Only use PostgreSQL 9.4 -# USES=pgsql:9.3+ # Use PostgreSQL 9.3 or newer -# USES=pgsql:9.3-9.6 # Use PostgreSQL between 9.3 & 9.6 -# USES=pgsql:9.6- # Use any PostgreSQL up to 9.6 -# USES=pgsql # Use the default PostgreSQL +# version: When the port depends on a server component to build and run, +# the maintainer can set versions required. You can set this to +# [min]-[max] or min+ or -max or as an explicit version +# (eg. 9.6-11 for [min]-[max], 9.6+ or 12- for min+ and max-, +# 13 for an explicit version). Example: +# +# USES=pgsql # a client app depending on libpq or psql +# USES=pgsql:server:13 # Only use PostgreSQL 13 +# USES=pgsql:server:9.6 # Use PostgreSQL 9.6 or newer +# USES=pgsql:server:11-13 # Use PostgreSQL between 11 & 13 +# USES=pgsql:contrib:11- # Use any PostgreSQL server up to 11 and +# # and also require the contrib component # -# WANT_PGSQL= server[:fetch] plperl plpython pltcl # # Add PostgreSQL component dependency, using # WANT_PGSQL= component[:target]. @@ -55,22 +62,22 @@ . endif .endfor -. for w in WITH DEFAULT -. ifdef $w_PGSQL_VER -WARNING+= "$w_PGSQL_VER is defined, consider using DEFAULT_VERSIONS=pgsql=${$w_PGSQL_VER:C,^.,&.,} instead" -PGSQL_DEFAULT?= ${$w_PGSQL_VER:C,^.,&.,} -. endif -. endfor +#. for w in WITH DEFAULT +#. ifdef $w_PGSQL_VER +#WARNING+= "$w_PGSQL_VER is defined, consider using DEFAULT_VERSIONS=pgsql=${$w_PGSQL_VER:C,^.,&.,} instead" +#PGSQL_DEFAULT?= ${$w_PGSQL_VER:C,^.,&.,} +#. endif +#. endfor -. ifdef DEFAULT_PGSQL_VER && WITH_PGSQL_VER -IGNORE= will not allow setting both DEFAULT_PGSQL_VER and WITH_PGSQL_VER. Use DEFAULT_VERSIONS=pgsql=9.6 instead -. endif +#. ifdef DEFAULT_PGSQL_VER && WITH_PGSQL_VER +#IGNORE= will not allow setting both DEFAULT_PGSQL_VER and WITH_PGSQL_VER. Use DEFAULT_VERSIONS=pgsql=9.6 instead +#. endif # Setting/finding PostgreSQL version we want. -PG_CONFIG?= ${LOCALBASE}/bin/pg_config -. if exists(${PG_CONFIG}) -_PGSQL_VER!= ${PG_CONFIG} --version | ${SED} -n 's/PostgreSQL[^0-9]*\([0-9]\.*[0-9]\).*/\1/p' -. endif +#PG_CONFIG?= ${LOCALBASE}/bin/pg_config +#. if exists(${PG_CONFIG}) +#_PGSQL_VER!= ${PG_CONFIG} --version | ${SED} -n 's/PostgreSQL[^0-9]*\([0-9]\.*[0-9]\).*/\1/p' +#. endif # Handle the + and - version stuff . if !empty(pgsql_ARGS) @@ -118,7 +125,7 @@ . endfor . endif . if defined(_PGSQL_VER) && ${_PGSQL_VER} != ${PGSQL_VER} -IGNORE?= cannot install: the port wants postgresql-client version ${_WANT_PGSQL_VER} and you have version ${_PGSQL_VER} installed +#IGNORE?= cannot install: the port wants postgresql-client version ${_WANT_PGSQL_VER} and you have version ${_PGSQL_VER} installed . endif . endif @@ -145,19 +152,16 @@ . endfor . endif # IGNORE_WITH_PGSQL -.if !defined(WANT_PGSQL) || ${WANT_PGSQL:Mlib} -LIB_DEPENDS+= libpq.so.${PGSQL${PGSQL_VER_NODOT}_LIBVER}:databases/postgresql${PGSQL_VER_NODOT}-client +.if !defined(WANT_PGSQL) || ${WANT_PGSQL:Mlib} || ${WANT_PGSQL:Mclient} +LIB_DEPENDS+= libpq.so.${PGSQL${PGSQL_VER_NODOT}_LIBVER}:databases/postgresql-client .endif -_USE_PGSQL_DEP= client contrib docs pgtcl plperl plpython pltcl server -_USE_PGSQL_DEP_client= psql +_USE_PGSQL_DEP= contrib plperl plpython pltcl server _USE_PGSQL_DEP_contrib= vacuumlo -_USE_PGSQL_DEP_docs= postgresql${PGSQL_VER_NODOT}-docs>0 -_USE_PGSQL_DEP_pgtcl= ${LOCALBASE}/lib/pgtcl/pkgIndex.tcl _USE_PGSQL_DEP_plperl= postgresql${PGSQL_VER_NODOT}-plperl>0 _USE_PGSQL_DEP_plpython=postgresql${PGSQL_VER_NODOT}-plpython>0 _USE_PGSQL_DEP_pltcl= postgresql${PGSQL_VER_NODOT}-pltcl>0 -_USE_PGSQL_DEP_server= postgres +_USE_PGSQL_DEP_server= ${LOCALBASE}/libexec/postgresql${PGSQL_VER_NODOT}/postgres . if defined(WANT_PGSQL) . for depend in ${_USE_PGSQL_DEP} . if ${WANT_PGSQL:M${depend}} diff --git a/Mk/bsd.default-versions.mk b/Mk/bsd.default-versions.mk --- a/Mk/bsd.default-versions.mk +++ b/Mk/bsd.default-versions.mk @@ -106,7 +106,7 @@ PERL5_DEFAULT:= ${_PERL5_FROM_BIN:R} .endif # Possible values: 9.6, 10, 11, 12, 13, 14 -PGSQL_DEFAULT?= 13 +PGSQL_DEFAULT?= 14 # Possible values: 7.3, 7.4, 8.0 PHP_DEFAULT?= 7.4 # Possible values: 2.7, 3.6, 3.7, 3.8, 3.9, 3.10 diff --git a/databases/pg_stat_kcache/Makefile b/databases/pg_stat_kcache/Makefile --- a/databases/pg_stat_kcache/Makefile +++ b/databases/pg_stat_kcache/Makefile @@ -10,9 +10,8 @@ LICENSE= PostgreSQL -USES= gmake pgsql:9.6+ +USES= gmake pgsql:contrib:10 LLD_UNSAFE= yes -WANT_PGSQL= server contrib USE_GITHUB= yes GH_ACCOUNT= powa-team diff --git a/databases/pg_stat_kcache/pkg-plist b/databases/pg_stat_kcache/pkg-plist --- a/databases/pg_stat_kcache/pkg-plist +++ b/databases/pg_stat_kcache/pkg-plist @@ -1,12 +1,12 @@ -lib/postgresql/pg_stat_kcache.so -share/doc/postgresql/extension/pg_stat_kcache-README.rst -share/postgresql/extension/pg_stat_kcache--2.1.0--2.1.1.sql -share/postgresql/extension/pg_stat_kcache--2.1.0.sql -share/postgresql/extension/pg_stat_kcache--2.1.1--2.1.2.sql -share/postgresql/extension/pg_stat_kcache--2.1.1.sql -share/postgresql/extension/pg_stat_kcache--2.1.2--2.1.3.sql -share/postgresql/extension/pg_stat_kcache--2.1.2.sql -share/postgresql/extension/pg_stat_kcache--2.1.3--2.2.0.sql -share/postgresql/extension/pg_stat_kcache--2.1.3.sql -share/postgresql/extension/pg_stat_kcache--2.2.0.sql -share/postgresql/extension/pg_stat_kcache.control +lib/postgresql%%PG_SUFFIX%%/pg_stat_kcache.so +share/doc/postgresql%%PG_SUFFIX%%/extension/pg_stat_kcache-README.rst +share/postgresql%%PG_SUFFIX%%/extension/pg_stat_kcache--2.1.0--2.1.1.sql +share/postgresql%%PG_SUFFIX%%/extension/pg_stat_kcache--2.1.0.sql +share/postgresql%%PG_SUFFIX%%/extension/pg_stat_kcache--2.1.1--2.1.2.sql +share/postgresql%%PG_SUFFIX%%/extension/pg_stat_kcache--2.1.1.sql +share/postgresql%%PG_SUFFIX%%/extension/pg_stat_kcache--2.1.2--2.1.3.sql +share/postgresql%%PG_SUFFIX%%/extension/pg_stat_kcache--2.1.2.sql +share/postgresql%%PG_SUFFIX%%/extension/pg_stat_kcache--2.1.3--2.2.0.sql +share/postgresql%%PG_SUFFIX%%/extension/pg_stat_kcache--2.1.3.sql +share/postgresql%%PG_SUFFIX%%/extension/pg_stat_kcache--2.2.0.sql +share/postgresql%%PG_SUFFIX%%/extension/pg_stat_kcache.control diff --git a/databases/pgtcl/Makefile b/databases/pgtcl/Makefile --- a/databases/pgtcl/Makefile +++ b/databases/pgtcl/Makefile @@ -15,11 +15,7 @@ LICENSE= PostgreSQL LICENSE_FILE= ${WRKSRC}/COPYRIGHT -.if defined(PGTCL_SLAVE) -USES= pgsql:${PGTCL_SLAVE} -.else USES= pgsql -.endif USES+= tcl:tea LIBDIR= ${PREFIX}/lib/${PORTNAME} diff --git a/databases/pgtcl/pkg-descr b/databases/pgtcl/pkg-descr --- a/databases/pgtcl/pkg-descr +++ b/databases/pgtcl/pkg-descr @@ -1,5 +1,3 @@ -A TCL extension for accessing PostgreSQL databases. This used -to come bunlded with PostgreSQL itself, but was split into a -separate project in more recent version (8+). +A TCL extension for accessing PostgreSQL databases. WWW: https://sourceforge.net/projects/pgtclng/ diff --git a/databases/postgresql14-client/Makefile b/databases/postgresql-client/Makefile rename from databases/postgresql14-client/Makefile rename to databases/postgresql-client/Makefile --- a/databases/postgresql14-client/Makefile +++ b/databases/postgresql-client/Makefile @@ -7,14 +7,17 @@ MASTERDIR= ${.CURDIR}/../postgresql14-server -BUILD_DIRS= config src/include src/interfaces src/port \ +BUILD_DIRS= config src/include src/interfaces src/port src/common \ src/bin/pg_dump src/bin/psql src/bin/scripts src/bin/pg_config \ src/bin/pgbench doc src/makefiles src/test/regress INSTALL_DIRS= ${BUILD_DIRS} +PKGNAMESUFFIX= ${COMPONENT} CLIENT_ONLY= yes COMPONENT= -client USE_LDCONFIG= yes USES= pkgconfig +CONFLICTS+= ${PORTNAME}9?-client ${PORTNAME}1[^${PORTVERSION:R:C/.*([0-9]$)/\\1/}]-client + .include "${MASTERDIR}/Makefile" diff --git a/databases/postgresql10-pgtcl/Makefile b/databases/postgresql10-pgtcl/Makefile deleted file mode 100644 --- a/databases/postgresql10-pgtcl/Makefile +++ /dev/null @@ -1,9 +0,0 @@ -PORTREVISION= 0 -PKGNAMESUFFIX= -postgresql10 - -CONFLICTS= pgtcl pgtcl-postgresql9[0123456] - -PGTCL_SLAVE= 10 -MASTERDIR= ${.CURDIR}/../pgtcl - -.include "${MASTERDIR}/Makefile" diff --git a/databases/postgresql10-server/files/502.pgsql.in b/databases/postgresql10-server/files/502.postgresql10.in rename from databases/postgresql10-server/files/502.pgsql.in rename to databases/postgresql10-server/files/502.postgresql10.in diff --git a/databases/postgresql10-server/files/dot.profile.in b/databases/postgresql10-server/files/dot.profile.in --- a/databases/postgresql10-server/files/dot.profile.in +++ b/databases/postgresql10-server/files/dot.profile.in @@ -5,7 +5,7 @@ export PATH PGLIB PGDATA -# if you use the periodic script from share/postgresql/502.pgsql, you +# if you use the periodic script from share/postgresql/502.postgresql%%PG_SUFFIX%%, you # can set these #PGDUMP_ARGS="-b -F c" #PGBACKUPDIR=${HOME}/backups diff --git a/databases/postgresql10-server/files/pkg-message-server.in b/databases/postgresql10-server/files/pkg-message-server.in --- a/databases/postgresql10-server/files/pkg-message-server.in +++ b/databases/postgresql10-server/files/pkg-message-server.in @@ -10,7 +10,7 @@ The port is set up to use autovacuum for new databases, but you might also want to vacuum and perhaps backup your database regularly. There -is a periodic script, %%PREFIX%%/etc/periodic/daily/502.pgsql, that +is a periodic script, %%PREFIX%%/etc/periodic/daily/502.postgresql%%PG_SUFFIX%%, that you may find useful. You can use it to backup and perform vacuum on all databases nightly. Per default, it performs `vacuum analyze'. See the script for instructions. For autovacuum settings, please review diff --git a/databases/postgresql10-server/files/pkgIndex.tcl.in b/databases/postgresql10-server/files/pkgIndex.tcl.in deleted file mode 100644 --- a/databases/postgresql10-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql10-server/files/postgresql.in b/databases/postgresql10-server/files/postgresql.in deleted file mode 100644 --- a/databases/postgresql10-server/files/postgresql.in +++ /dev/null @@ -1,115 +0,0 @@ -#!/bin/sh - -# PROVIDE: postgresql -# REQUIRE: DAEMON -# KEYWORD: shutdown -# -# Add the following line to /etc/rc.conf to enable PostgreSQL: -# -# postgresql_enable="YES" -# # optional -# postgresql_data="/var/db/%%PG_USER%%/data10" -# postgresql_flags="-w -s -m fast" -# postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C" -# postgresql_login_class="default" -# postgresql_profiles="" -# -# See %%PREFIX%%/share/doc/postgresql/README-server for more info -# -# This scripts takes one of the following commands: -# -# start stop restart reload status initdb -# -# For postmaster startup options, edit ${postgresql_data}/postgresql.conf - -command=%%PREFIX%%/bin/pg_ctl - -. /etc/rc.subr - -load_rc_config postgresql - -# set defaults -postgresql_enable=${postgresql_enable:-"NO"} -postgresql_flags=${postgresql_flags:-"-w -s -m fast"} -postgresql_user=${postgresql_user:-"%%PG_USER%%"} -eval postgresql_data=${postgresql_data:-"~${postgresql_user}/data10"} -postgresql_login_class=${postgresql_login_class:-"default"} -postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collate=C"} - -name=postgresql -rcvar=postgresql_enable -extra_commands="reload initdb" - -start_cmd="postgresql_command start" -stop_cmd="postgresql_command stop" -restart_cmd="postgresql_command restart" -reload_cmd="postgresql_command reload" -status_cmd="postgresql_command status" -promote_cmd="postgresql_command promote" - -initdb_cmd="postgresql_initdb" - -su_cmd="/usr/bin/su" - -if [ -n "$2" ]; then - profile="$2" - if [ "x${postgresql_profiles}" != "x" ]; then - eval postgresql_data="\${postgresql_${profile}_data:-}" - if [ "x${postgresql_data}" = "x" ]; then - echo "You must define a data directory (postgresql_${profile}_data)" - exit 1 - fi - eval postgresql_enable="\${postgresql_${profile}_enable:-${postgresql_enable}}" - eval postgresql_data="\${postgresql_${profile}_data:-${postgresql_data}}" - eval postgresql_flags="\${postgresql_${profile}_flags:-${postgresql_flags}}" - eval postgresql_initdb_flags="\${postgresql_${profile}_initdb_flags:-${postgresql_initdb_flags}}" - fi -else - if [ "x${postgresql_profiles}" != "x" -a "x$1" != "x" ]; then - for profile in ${postgresql_profiles}; do - eval _enable="\${postgresql_${profile}_enable}" - case "x${_enable:-${postgresql_enable}}" in - x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee]) - continue - ;; - x[Yy][Ee][Ss]) - ;; - *) - if test -z "$_enable"; then - _var=postgresql_enable - else - _var=postgresql_"${profile}"_enable - fi - echo "Bad value" \ - "'${_enable:-${postgresql_enable}}'" \ - "for ${_var}. " \ - "Profile ${profile} skipped." - continue - ;; - esac - echo "===> postgresql profile: ${profile}" - %%PREFIX%%/etc/rc.d/postgresql $1 ${profile} - retcode="$?" - if [ "0${retcode}" -ne 0 ]; then - failed="${profile} (${retcode}) ${failed:-}" - else - success="${profile} ${success:-}" - fi - done - exit 0 - fi -fi - -command_args="-D ${postgresql_data} ${postgresql_flags}" - -postgresql_command() -{ - ${su_cmd} -l ${postgresql_user} -c "exec ${command} ${command_args} ${rc_arg}" -} - -postgresql_initdb() -{ - ${su_cmd} -l -c ${postgresql_login_class} ${postgresql_user} -c "exec %%PREFIX%%/bin/initdb ${postgresql_initdb_flags} -D ${postgresql_data} -U ${postgresql_user}" -} - -run_rc_command "$1" diff --git a/databases/postgresql10-server/files/postgresql10.in b/databases/postgresql10-server/files/postgresql10.in new file mode 100644 --- /dev/null +++ b/databases/postgresql10-server/files/postgresql10.in @@ -0,0 +1,115 @@ +#!/bin/sh + +# PROVIDE: postgresql%%PG_SUFFIX%% +# REQUIRE: DAEMON +# KEYWORD: shutdown +# +# Add the following line to /etc/rc.conf to enable PostgreSQL: +# +# postgresql%%PG_SUFFIX%%_enable="YES" +# # optional +# postgresql%%PG_SUFFIX%%_data="/var/db/%%PG_USER%%/data%%PG_SUFFIX%%" +# postgresql%%PG_SUFFIX%%_flags="-w -s -m fast" +# postgresql%%PG_SUFFIX%%_initdb_flags="--encoding=utf-8 --lc-collate=C" +# postgresql%%PG_SUFFIX%%_login_class="default" +# postgresql%%PG_SUFFIX%%_profiles="" +# +# See %%PREFIX%%/share/doc/postgresql%%PG_SUFFIX%%/README-server for more info +# +# This scripts takes one of the following commands: +# +# start stop restart reload status initdb +# +# For postmaster startup options, edit ${postgresql%%PG_SUFFIX%%_data}/postgresql.conf + +command=%%PREFIX%%/libexec/postgresql%%PG_SUFFIX%%/pg_ctl + +. /etc/rc.subr + +load_rc_config postgresql%%PG_SUFFIX%% + +# set defaults +postgresql%%PG_SUFFIX%%_enable=${postgresql%%PG_SUFFIX%%_enable:-"NO"} +postgresql%%PG_SUFFIX%%_flags=${postgresql%%PG_SUFFIX%%_flags:-"-w -s -m fast"} +postgresql%%PG_SUFFIX%%_user=${postgresql%%PG_SUFFIX%%_user:-"%%PG_USER%%"} +eval postgresql%%PG_SUFFIX%%_data=${postgresql%%PG_SUFFIX%%_data:-"~${postgresql%%PG_SUFFIX%%_user}/data%%PG_SUFFIX%%"} +postgresql%%PG_SUFFIX%%_login_class=${postgresql%%PG_SUFFIX%%_login_class:-"default"} +postgresql%%PG_SUFFIX%%_initdb_flags=${postgresql%%PG_SUFFIX%%_initdb_flags:-"--encoding=utf-8 --lc-collate=C"} + +name=postgresql%%PG_SUFFIX%% +rcvar=${name}_enable +extra_commands="reload initdb" + +start_cmd="${name}_command start" +stop_cmd="${name}_command stop" +restart_cmd="${name}_command restart" +reload_cmd="${name}_command reload" +status_cmd="${name}_command status" +promote_cmd="${name}_command promote" + +initdb_cmd="${name}_initdb" + +su_cmd="/usr/bin/su" + +if [ -n "$2" ]; then + profile="$2" + if [ "x${postgresql%%PG_SUFFIX%%_profiles}" != "x" ]; then + eval ${name}_data="\${${name}_${profile}_data:-}" + if [ "x${postgresql%%PG_SUFFIX%%_data}" = "x" ]; then + echo "You must define a data directory (${name}_${profile}_data)" + exit 1 + fi + eval ${name}_enable="\${${name}_${profile}_enable:-\${${name}_enable}}" + eval ${name}_data="\${${name}_${profile}_data:-\${${name}_data}}" + eval ${name}_flags="\${${name}_${profile}_flags:-\${${name}_flags}}" + eval ${name}_initdb_flags="\${${name}_${profile}_initdb_flags:-\${${name}_initdb_flags}}" + fi +else + if [ "x${postgresql%%PG_SUFFIX%%_profiles}" != "x" -a "x$1" != "x" ]; then + for profile in ${postgresql%%PG_SUFFIX%%_profiles}; do + eval _enable="\${${name}_${profile}_enable}" + case "x${_enable:-${postgresql%%PG_SUFFIX%%_enable}}" in + x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee]) + continue + ;; + x[Yy][Ee][Ss]) + ;; + *) + if test -z "$_enable"; then + _var=${name}_enable + else + _var=${name}_"${profile}"_enable + fi + echo "Bad value" \ + "'${_enable:-${postgresql%%PG_SUFFIX%%_enable}}'" \ + "for ${_var}. " \ + "Profile ${profile} skipped." + continue + ;; + esac + echo "===> ${name} profile: ${profile}" + %%PREFIX%%/etc/rc.d/${name} $1 ${profile} + retcode="$?" + if [ "0${retcode}" -ne 0 ]; then + failed="${profile} (${retcode}) ${failed:-}" + else + success="${profile} ${success:-}" + fi + done + exit 0 + fi +fi + +command_args="-D ${postgresql%%PG_SUFFIX%%_data} ${postgresql%%PG_SUFFIX%%_flags}" + +postgresql%%PG_SUFFIX%%_command() +{ + ${su_cmd} -l ${postgresql%%PG_SUFFIX%%_user} -c "exec ${command} ${command_args} ${rc_arg}" +} + +postgresql%%PG_SUFFIX%%_initdb() +{ + ${su_cmd} -l -c ${postgresql%%PG_SUFFIX%%_login_class} ${postgresql%%PG_SUFFIX%%_user} -c "exec %%PREFIX%%/libexec/${name}/initdb ${postgresql%%PG_SUFFIX%%_initdb_flags} -D ${postgresql%%PG_SUFFIX%%_data} -U ${postgresql%%PG_SUFFIX%%_user}" +} + +run_rc_command "$1" diff --git a/databases/postgresql10-server/pkg-plist-contrib b/databases/postgresql10-server/pkg-plist-contrib --- a/databases/postgresql10-server/pkg-plist-contrib +++ b/databases/postgresql10-server/pkg-plist-contrib @@ -1,54 +1,54 @@ -bin/oid2name -bin/pg_standby -bin/vacuumlo -lib/postgresql/_int.so -lib/postgresql/adminpack.so -lib/postgresql/amcheck.so -lib/postgresql/auth_delay.so -lib/postgresql/auto_explain.so -lib/postgresql/autoinc.so -lib/postgresql/bloom.so -lib/postgresql/btree_gin.so -lib/postgresql/btree_gist.so -lib/postgresql/chkpass.so -lib/postgresql/citext.so -lib/postgresql/cube.so -lib/postgresql/dblink.so -lib/postgresql/dict_int.so -lib/postgresql/dict_xsyn.so -lib/postgresql/earthdistance.so -lib/postgresql/file_fdw.so -lib/postgresql/fuzzystrmatch.so -lib/postgresql/hstore.so -lib/postgresql/insert_username.so -lib/postgresql/isn.so -lib/postgresql/lo.so -lib/postgresql/ltree.so -lib/postgresql/moddatetime.so -lib/postgresql/pageinspect.so -lib/postgresql/passwordcheck.so -lib/postgresql/pg_buffercache.so -lib/postgresql/pg_freespacemap.so -lib/postgresql/pg_prewarm.so -lib/postgresql/pg_stat_statements.so -lib/postgresql/pg_trgm.so -lib/postgresql/pg_visibility.so -lib/postgresql/pgcrypto.so -lib/postgresql/pgrowlocks.so -lib/postgresql/pgstattuple.so -%%XML%%lib/postgresql/pgxml.so -lib/postgresql/postgres_fdw.so -lib/postgresql/refint.so -lib/postgresql/seg.so -lib/postgresql/sslinfo.so -lib/postgresql/tablefunc.so -lib/postgresql/tcn.so -lib/postgresql/test_decoding.so -lib/postgresql/timetravel.so -lib/postgresql/tsm_system_rows.so -lib/postgresql/tsm_system_time.so -lib/postgresql/unaccent.so -lib/postgresql/uuid-ossp.so +libexec/postgresql%%PG_SUFFIX%%/oid2name +libexec/postgresql%%PG_SUFFIX%%/pg_standby +libexec/postgresql%%PG_SUFFIX%%/vacuumlo +lib/postgresql%%PG_SUFFIX%%/_int.so +lib/postgresql%%PG_SUFFIX%%/adminpack.so +lib/postgresql%%PG_SUFFIX%%/amcheck.so +lib/postgresql%%PG_SUFFIX%%/auth_delay.so +lib/postgresql%%PG_SUFFIX%%/auto_explain.so +lib/postgresql%%PG_SUFFIX%%/autoinc.so +lib/postgresql%%PG_SUFFIX%%/bloom.so +lib/postgresql%%PG_SUFFIX%%/btree_gin.so +lib/postgresql%%PG_SUFFIX%%/btree_gist.so +lib/postgresql%%PG_SUFFIX%%/chkpass.so +lib/postgresql%%PG_SUFFIX%%/citext.so +lib/postgresql%%PG_SUFFIX%%/cube.so +lib/postgresql%%PG_SUFFIX%%/dblink.so +lib/postgresql%%PG_SUFFIX%%/dict_int.so +lib/postgresql%%PG_SUFFIX%%/dict_xsyn.so +lib/postgresql%%PG_SUFFIX%%/earthdistance.so +lib/postgresql%%PG_SUFFIX%%/file_fdw.so +lib/postgresql%%PG_SUFFIX%%/fuzzystrmatch.so +lib/postgresql%%PG_SUFFIX%%/hstore.so +lib/postgresql%%PG_SUFFIX%%/insert_username.so +lib/postgresql%%PG_SUFFIX%%/isn.so +lib/postgresql%%PG_SUFFIX%%/lo.so +lib/postgresql%%PG_SUFFIX%%/ltree.so +lib/postgresql%%PG_SUFFIX%%/moddatetime.so +lib/postgresql%%PG_SUFFIX%%/pageinspect.so +lib/postgresql%%PG_SUFFIX%%/passwordcheck.so +lib/postgresql%%PG_SUFFIX%%/pg_buffercache.so +lib/postgresql%%PG_SUFFIX%%/pg_freespacemap.so +lib/postgresql%%PG_SUFFIX%%/pg_prewarm.so +lib/postgresql%%PG_SUFFIX%%/pg_stat_statements.so +lib/postgresql%%PG_SUFFIX%%/pg_trgm.so +lib/postgresql%%PG_SUFFIX%%/pg_visibility.so +lib/postgresql%%PG_SUFFIX%%/pgcrypto.so +lib/postgresql%%PG_SUFFIX%%/pgrowlocks.so +lib/postgresql%%PG_SUFFIX%%/pgstattuple.so +%%XML%%lib/postgresql%%PG_SUFFIX%%/pgxml.so +lib/postgresql%%PG_SUFFIX%%/postgres_fdw.so +lib/postgresql%%PG_SUFFIX%%/refint.so +lib/postgresql%%PG_SUFFIX%%/seg.so +lib/postgresql%%PG_SUFFIX%%/sslinfo.so +lib/postgresql%%PG_SUFFIX%%/tablefunc.so +lib/postgresql%%PG_SUFFIX%%/tcn.so +lib/postgresql%%PG_SUFFIX%%/test_decoding.so +lib/postgresql%%PG_SUFFIX%%/timetravel.so +lib/postgresql%%PG_SUFFIX%%/tsm_system_rows.so +lib/postgresql%%PG_SUFFIX%%/tsm_system_time.so +lib/postgresql%%PG_SUFFIX%%/unaccent.so +lib/postgresql%%PG_SUFFIX%%/uuid-ossp.so %%PORTDOCS%%%%DOCSDIR%%/README-contrib %%PORTDOCS%%%%DOCSDIR%%/extension/README %%PORTDOCS%%%%DOCSDIR%%/extension/autoinc.example diff --git a/databases/postgresql10-server/pkg-plist-plperl b/databases/postgresql10-server/pkg-plist-plperl --- a/databases/postgresql10-server/pkg-plist-plperl +++ b/databases/postgresql10-server/pkg-plist-plperl @@ -1,5 +1,5 @@ -include/postgresql/server/plperl.h -include/postgresql/server/ppport.h +include/postgresql%%PG_SUFFIX%%/server/plperl.h +include/postgresql%%PG_SUFFIX%%/server/ppport.h %%DATADIR%%/extension/plperlu--1.0.sql %%DATADIR%%/extension/plperl.control %%DATADIR%%/extension/plperl--1.0.sql @@ -7,8 +7,8 @@ %%DATADIR%%/extension/plperlu--unpackaged--1.0.sql %%DATADIR%%/extension/plperl--unpackaged--1.0.sql %%DOCSDIR%%/README-plperl -lib/postgresql/plperl.so -lib/postgresql/hstore_plperl.so +lib/postgresql%%PG_SUFFIX%%/plperl.so +lib/postgresql%%PG_SUFFIX%%/hstore_plperl.so %%DATADIR%%/extension/hstore_plperl--1.0.sql %%DATADIR%%/extension/hstore_plperl.control %%DATADIR%%/extension/hstore_plperlu--1.0.sql diff --git a/databases/postgresql10-server/pkg-plist-plpython b/databases/postgresql10-server/pkg-plist-plpython --- a/databases/postgresql10-server/pkg-plist-plpython +++ b/databases/postgresql10-server/pkg-plist-plpython @@ -1,8 +1,8 @@ -include/postgresql/server/plpy_util.h -include/postgresql/server/plpython.h +include/postgresql%%PG_SUFFIX%%/server/plpy_util.h +include/postgresql%%PG_SUFFIX%%/server/plpython.h %%DOCSDIR%%/README-plpython -%%PYTHON2%%lib/postgresql/plpython2.so -%%PYTHON3%%lib/postgresql/plpython3.so +%%PYTHON2%%lib/postgresql%%PG_SUFFIX%%/plpython2.so +%%PYTHON3%%lib/postgresql%%PG_SUFFIX%%/plpython3.so %%PYTHON2%%%%DATADIR%%/extension/plpython2u--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpython2u--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpython2u.control @@ -12,8 +12,8 @@ %%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu.control -lib/postgresql/hstore_plpython3.so -lib/postgresql/ltree_plpython3.so +lib/postgresql%%PG_SUFFIX%%/hstore_plpython3.so +lib/postgresql%%PG_SUFFIX%%/ltree_plpython3.so %%DATADIR%%/extension/hstore_plpython2u--1.0.sql %%DATADIR%%/extension/hstore_plpython2u.control %%DATADIR%%/extension/hstore_plpython3u--1.0.sql diff --git a/databases/postgresql10-server/pkg-plist-pltcl b/databases/postgresql10-server/pkg-plist-pltcl --- a/databases/postgresql10-server/pkg-plist-pltcl +++ b/databases/postgresql10-server/pkg-plist-pltcl @@ -5,4 +5,4 @@ %%DATADIR%%/extension/pltcl--unpackaged--1.0.sql %%DATADIR%%/extension/pltclu--unpackaged--1.0.sql %%DOCSDIR%%/README-pltcl -lib/postgresql/pltcl.so +lib/postgresql%%PG_SUFFIX%%/pltcl.so diff --git a/databases/postgresql10-server/pkg-plist-server b/databases/postgresql10-server/pkg-plist-server --- a/databases/postgresql10-server/pkg-plist-server +++ b/databases/postgresql10-server/pkg-plist-server @@ -1,51 +1,51 @@ -bin/initdb -bin/pg_archivecleanup -bin/pg_basebackup -bin/pg_controldata -bin/pg_ctl -bin/pg_receivewal -bin/pg_recvlogical -bin/pg_resetwal -bin/pg_rewind -bin/pg_test_fsync -bin/pg_test_timing -bin/pg_upgrade -bin/pg_waldump -bin/postgres -bin/postmaster -etc/periodic/daily/502.pgsql -include/postgresql/server/plpgsql.h -lib/postgresql/ascii_and_mic.so -lib/postgresql/cyrillic_and_mic.so -lib/postgresql/dict_snowball.so -lib/postgresql/euc2004_sjis2004.so -lib/postgresql/euc_cn_and_mic.so -lib/postgresql/euc_jp_and_sjis.so -lib/postgresql/euc_kr_and_mic.so -lib/postgresql/euc_tw_and_big5.so -lib/postgresql/latin2_and_win1250.so -lib/postgresql/latin_and_mic.so -lib/postgresql/libpqwalreceiver.so -lib/postgresql/pgoutput.so -lib/postgresql/plpgsql.so -lib/postgresql/utf8_and_ascii.so -lib/postgresql/utf8_and_big5.so -lib/postgresql/utf8_and_cyrillic.so -lib/postgresql/utf8_and_euc2004.so -lib/postgresql/utf8_and_euc_cn.so -lib/postgresql/utf8_and_euc_jp.so -lib/postgresql/utf8_and_euc_kr.so -lib/postgresql/utf8_and_euc_tw.so -lib/postgresql/utf8_and_gb18030.so -lib/postgresql/utf8_and_gbk.so -lib/postgresql/utf8_and_iso8859.so -lib/postgresql/utf8_and_iso8859_1.so -lib/postgresql/utf8_and_johab.so -lib/postgresql/utf8_and_sjis.so -lib/postgresql/utf8_and_sjis2004.so -lib/postgresql/utf8_and_uhc.so -lib/postgresql/utf8_and_win.so -lib/libpgcommon.a +libexec/postgresql%%PG_SUFFIX%%/initdb +libexec/postgresql%%PG_SUFFIX%%/pg_archivecleanup +libexec/postgresql%%PG_SUFFIX%%/pg_basebackup +libexec/postgresql%%PG_SUFFIX%%/pg_controldata +libexec/postgresql%%PG_SUFFIX%%/pg_ctl +libexec/postgresql%%PG_SUFFIX%%/pg_receivewal +libexec/postgresql%%PG_SUFFIX%%/pg_recvlogical +libexec/postgresql%%PG_SUFFIX%%/pg_resetwal +libexec/postgresql%%PG_SUFFIX%%/pg_rewind +libexec/postgresql%%PG_SUFFIX%%/pg_test_fsync +libexec/postgresql%%PG_SUFFIX%%/pg_test_timing +libexec/postgresql%%PG_SUFFIX%%/pg_upgrade +libexec/postgresql%%PG_SUFFIX%%/pg_waldump +libexec/postgresql%%PG_SUFFIX%%/postgres +libexec/postgresql%%PG_SUFFIX%%/postmaster +etc/periodic/daily/502.postgresql%%PG_SUFFIX%% +include/postgresql%%PG_SUFFIX%%/server/plpgsql.h +lib/postgresql%%PG_SUFFIX%%/ascii_and_mic.so +lib/postgresql%%PG_SUFFIX%%/cyrillic_and_mic.so +lib/postgresql%%PG_SUFFIX%%/dict_snowball.so +lib/postgresql%%PG_SUFFIX%%/euc2004_sjis2004.so +lib/postgresql%%PG_SUFFIX%%/euc_cn_and_mic.so +lib/postgresql%%PG_SUFFIX%%/euc_jp_and_sjis.so +lib/postgresql%%PG_SUFFIX%%/euc_kr_and_mic.so +lib/postgresql%%PG_SUFFIX%%/euc_tw_and_big5.so +lib/postgresql%%PG_SUFFIX%%/latin2_and_win1250.so +lib/postgresql%%PG_SUFFIX%%/latin_and_mic.so +lib/postgresql%%PG_SUFFIX%%/libpqwalreceiver.so +lib/postgresql%%PG_SUFFIX%%/pgoutput.so +lib/postgresql%%PG_SUFFIX%%/plpgsql.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_ascii.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_big5.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_cyrillic.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc2004.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_cn.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_jp.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_kr.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_tw.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_gb18030.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_gbk.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_iso8859.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_iso8859_1.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_johab.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_sjis.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_sjis2004.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_uhc.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_win.so +lib/postgresql%%PG_SUFFIX%%/libpgcommon.a %%PORTDOCS%%%%DOCSDIR%%/README-server %%DATADIR%%/conversion_create.sql %%DATADIR%%/information_schema.sql @@ -61,158 +61,158 @@ %%DATADIR%%/extension/plpgsql--unpackaged--1.0.sql %%DATADIR%%/extension/plpgsql.control %%DATADIR%%/postgres.shdescription -%%NLS%%share/locale/cs/LC_MESSAGES/initdb-10.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_archivecleanup-10.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-10.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-10.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-10.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetwal-10.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-10.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_fsync-10.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_timing-10.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_upgrade-10.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_waldump-10.mo -%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-10.mo -%%NLS%%share/locale/de/LC_MESSAGES/initdb-10.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_archivecleanup-10.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-10.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-10.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-10.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_resetwal-10.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_rewind-10.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_test_fsync-10.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_test_timing-10.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_upgrade-10.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_waldump-10.mo -%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-10.mo -%%NLS%%share/locale/de/LC_MESSAGES/postgres-10.mo -%%NLS%%share/locale/es/LC_MESSAGES/initdb-10.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_archivecleanup-10.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-10.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-10.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-10.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_resetwal-10.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_rewind-10.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_test_fsync-10.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_test_timing-10.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_upgrade-10.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_waldump-10.mo -%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-10.mo -%%NLS%%share/locale/es/LC_MESSAGES/postgres-10.mo -%%NLS%%share/locale/fr/LC_MESSAGES/initdb-10.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_archivecleanup-10.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-10.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-10.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-10.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetwal-10.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-10.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_fsync-10.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_timing-10.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_upgrade-10.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_waldump-10.mo -%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-10.mo -%%NLS%%share/locale/fr/LC_MESSAGES/postgres-10.mo -%%NLS%%share/locale/he/LC_MESSAGES/initdb-10.mo -%%NLS%%share/locale/he/LC_MESSAGES/pg_basebackup-10.mo -%%NLS%%share/locale/he/LC_MESSAGES/pg_ctl-10.mo -%%NLS%%share/locale/it/LC_MESSAGES/initdb-10.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_basebackup-10.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-10.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-10.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_rewind-10.mo -%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-10.mo -%%NLS%%share/locale/it/LC_MESSAGES/postgres-10.mo -%%NLS%%share/locale/ja/LC_MESSAGES/initdb-10.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_archivecleanup-10.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_basebackup-10.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-10.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-10.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetwal-10.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_rewind-10.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_fsync-10.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_timing-10.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_upgrade-10.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_waldump-10.mo -%%NLS%%share/locale/ja/LC_MESSAGES/plpgsql-10.mo -%%NLS%%share/locale/ja/LC_MESSAGES/postgres-10.mo -%%NLS%%share/locale/ko/LC_MESSAGES/initdb-10.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_archivecleanup-10.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_basebackup-10.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_controldata-10.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_ctl-10.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_resetwal-10.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_rewind-10.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_fsync-10.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_timing-10.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_upgrade-10.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_waldump-10.mo -%%NLS%%share/locale/ko/LC_MESSAGES/plpgsql-10.mo -%%NLS%%share/locale/ko/LC_MESSAGES/postgres-10.mo -%%NLS%%share/locale/pl/LC_MESSAGES/initdb-10.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_archivecleanup-10.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_basebackup-10.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_controldata-10.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_ctl-10.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_resetwal-10.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_rewind-10.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_fsync-10.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_timing-10.mo -%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-10.mo -%%NLS%%share/locale/pl/LC_MESSAGES/postgres-10.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/initdb-10.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_controldata-10.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_ctl-10.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_resetwal-10.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_rewind-10.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-10.mo -%%NLS%%share/locale/ro/LC_MESSAGES/plpgsql-10.mo -%%NLS%%share/locale/ru/LC_MESSAGES/initdb-10.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_archivecleanup-10.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-10.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_controldata-10.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_ctl-10.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_resetwal-10.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_rewind-10.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_fsync-10.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_timing-10.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_upgrade-10.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_waldump-10.mo -%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-10.mo -%%NLS%%share/locale/ru/LC_MESSAGES/postgres-10.mo -%%NLS%%share/locale/sv/LC_MESSAGES/initdb-10.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_archivecleanup-10.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_basebackup-10.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_controldata-10.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-10.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_resetwal-10.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_rewind-10.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_fsync-10.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_timing-10.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_upgrade-10.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_waldump-10.mo -%%NLS%%share/locale/sv/LC_MESSAGES/plpgsql-10.mo -%%NLS%%share/locale/sv/LC_MESSAGES/postgres-10.mo -%%NLS%%share/locale/tr/LC_MESSAGES/initdb-10.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_archivecleanup-10.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_basebackup-10.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_controldata-10.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_ctl-10.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_resetwal-10.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_rewind-10.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_fsync-10.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_timing-10.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_upgrade-10.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_waldump-10.mo -%%NLS%%share/locale/tr/LC_MESSAGES/plpgsql-10.mo -%%NLS%%share/locale/tr/LC_MESSAGES/postgres-10.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-10.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-10.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-10.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_resetwal-10.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_rewind-10.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/plpgsql-10.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/postgres-10.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/plpgsql-10.mo +%%NLS%%share/locale/cs/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/he/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/he/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/he/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ro/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo %%DATADIR%%/snowball_create.sql %%TZDATA%%%%DATADIR%%/timezone/Africa/Abidjan %%TZDATA%%%%DATADIR%%/timezone/Africa/Accra diff --git a/databases/postgresql11-pgtcl/Makefile b/databases/postgresql11-pgtcl/Makefile deleted file mode 100644 --- a/databases/postgresql11-pgtcl/Makefile +++ /dev/null @@ -1,9 +0,0 @@ -PORTREVISION= 0 -PKGNAMESUFFIX= -postgresql11 - -CONFLICTS= pgtcl pgtcl-postgresql9[0123456] pgtcl-postgresql10-* - -PGTCL_SLAVE= 11 -MASTERDIR= ${.CURDIR}/../pgtcl - -.include "${MASTERDIR}/Makefile" diff --git a/databases/postgresql11-server/files/502.pgsql.in b/databases/postgresql11-server/files/502.postgresql11.in rename from databases/postgresql11-server/files/502.pgsql.in rename to databases/postgresql11-server/files/502.postgresql11.in diff --git a/databases/postgresql11-server/files/dot.profile.in b/databases/postgresql11-server/files/dot.profile.in --- a/databases/postgresql11-server/files/dot.profile.in +++ b/databases/postgresql11-server/files/dot.profile.in @@ -5,7 +5,7 @@ export PATH PGLIB PGDATA -# if you use the periodic script from share/postgresql/502.pgsql, you +# if you use the periodic script from share/postgresql/502.postgresql%%PG_SUFFIX%%, you # can set these #PGDUMP_ARGS="-b -F c" #PGBACKUPDIR=${HOME}/backups diff --git a/databases/postgresql11-server/files/pkg-message-server.in b/databases/postgresql11-server/files/pkg-message-server.in --- a/databases/postgresql11-server/files/pkg-message-server.in +++ b/databases/postgresql11-server/files/pkg-message-server.in @@ -10,7 +10,7 @@ The port is set up to use autovacuum for new databases, but you might also want to vacuum and perhaps backup your database regularly. There -is a periodic script, %%PREFIX%%/etc/periodic/daily/502.pgsql, that +is a periodic script, %%PREFIX%%/etc/periodic/daily/502.postgresql%%PG_SUFFIX%%, that you may find useful. You can use it to backup and perform vacuum on all databases nightly. Per default, it performs `vacuum analyze'. See the script for instructions. For autovacuum settings, please review diff --git a/databases/postgresql11-server/files/pkgIndex.tcl.in b/databases/postgresql11-server/files/pkgIndex.tcl.in deleted file mode 100644 --- a/databases/postgresql11-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql11-server/files/postgresql.in b/databases/postgresql11-server/files/postgresql.in deleted file mode 100644 --- a/databases/postgresql11-server/files/postgresql.in +++ /dev/null @@ -1,115 +0,0 @@ -#!/bin/sh - -# PROVIDE: postgresql -# REQUIRE: DAEMON -# KEYWORD: shutdown -# -# Add the following line to /etc/rc.conf to enable PostgreSQL: -# -# postgresql_enable="YES" -# # optional -# postgresql_data="/var/db/%%PG_USER%%/data11" -# postgresql_flags="-w -s -m fast" -# postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C" -# postgresql_login_class="default" -# postgresql_profiles="" -# -# See %%PREFIX%%/share/doc/postgresql/README-server for more info -# -# This scripts takes one of the following commands: -# -# start stop restart reload status initdb -# -# For postmaster startup options, edit ${postgresql_data}/postgresql.conf - -command=%%PREFIX%%/bin/pg_ctl - -. /etc/rc.subr - -load_rc_config postgresql - -# set defaults -postgresql_enable=${postgresql_enable:-"NO"} -postgresql_flags=${postgresql_flags:-"-w -s -m fast"} -postgresql_user=${postgresql_user:-"%%PG_USER%%"} -eval postgresql_data=${postgresql_data:-"~${postgresql_user}/data11"} -postgresql_login_class=${postgresql_login_class:-"default"} -postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collate=C"} - -name=postgresql -rcvar=postgresql_enable -extra_commands="reload initdb" - -start_cmd="postgresql_command start" -stop_cmd="postgresql_command stop" -restart_cmd="postgresql_command restart" -reload_cmd="postgresql_command reload" -status_cmd="postgresql_command status" -promote_cmd="postgresql_command promote" - -initdb_cmd="postgresql_initdb" - -su_cmd="/usr/bin/su" - -if [ -n "$2" ]; then - profile="$2" - if [ "x${postgresql_profiles}" != "x" ]; then - eval postgresql_data="\${postgresql_${profile}_data:-}" - if [ "x${postgresql_data}" = "x" ]; then - echo "You must define a data directory (postgresql_${profile}_data)" - exit 1 - fi - eval postgresql_enable="\${postgresql_${profile}_enable:-${postgresql_enable}}" - eval postgresql_data="\${postgresql_${profile}_data:-${postgresql_data}}" - eval postgresql_flags="\${postgresql_${profile}_flags:-${postgresql_flags}}" - eval postgresql_initdb_flags="\${postgresql_${profile}_initdb_flags:-${postgresql_initdb_flags}}" - fi -else - if [ "x${postgresql_profiles}" != "x" -a "x$1" != "x" ]; then - for profile in ${postgresql_profiles}; do - eval _enable="\${postgresql_${profile}_enable}" - case "x${_enable:-${postgresql_enable}}" in - x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee]) - continue - ;; - x[Yy][Ee][Ss]) - ;; - *) - if test -z "$_enable"; then - _var=postgresql_enable - else - _var=postgresql_"${profile}"_enable - fi - echo "Bad value" \ - "'${_enable:-${postgresql_enable}}'" \ - "for ${_var}. " \ - "Profile ${profile} skipped." - continue - ;; - esac - echo "===> postgresql profile: ${profile}" - %%PREFIX%%/etc/rc.d/postgresql $1 ${profile} - retcode="$?" - if [ "0${retcode}" -ne 0 ]; then - failed="${profile} (${retcode}) ${failed:-}" - else - success="${profile} ${success:-}" - fi - done - exit 0 - fi -fi - -command_args="-D ${postgresql_data} ${postgresql_flags}" - -postgresql_command() -{ - ${su_cmd} -l ${postgresql_user} -c "exec ${command} ${command_args} ${rc_arg}" -} - -postgresql_initdb() -{ - ${su_cmd} -l -c ${postgresql_login_class} ${postgresql_user} -c "exec %%PREFIX%%/bin/initdb ${postgresql_initdb_flags} -D ${postgresql_data} -U ${postgresql_user}" -} - -run_rc_command "$1" diff --git a/databases/postgresql11-server/files/postgresql11.in b/databases/postgresql11-server/files/postgresql11.in new file mode 100644 --- /dev/null +++ b/databases/postgresql11-server/files/postgresql11.in @@ -0,0 +1,115 @@ +#!/bin/sh + +# PROVIDE: postgresql%%PG_SUFFIX%% +# REQUIRE: DAEMON +# KEYWORD: shutdown +# +# Add the following line to /etc/rc.conf to enable PostgreSQL: +# +# postgresql%%PG_SUFFIX%%_enable="YES" +# # optional +# postgresql%%PG_SUFFIX%%_data="/var/db/%%PG_USER%%/data%%PG_SUFFIX%%" +# postgresql%%PG_SUFFIX%%_flags="-w -s -m fast" +# postgresql%%PG_SUFFIX%%_initdb_flags="--encoding=utf-8 --lc-collate=C" +# postgresql%%PG_SUFFIX%%_login_class="default" +# postgresql%%PG_SUFFIX%%_profiles="" +# +# See %%PREFIX%%/share/doc/postgresql%%PG_SUFFIX%%/README-server for more info +# +# This scripts takes one of the following commands: +# +# start stop restart reload status initdb +# +# For postmaster startup options, edit ${postgresql%%PG_SUFFIX%%_data}/postgresql.conf + +command=%%PREFIX%%/libexec/postgresql%%PG_SUFFIX%%/pg_ctl + +. /etc/rc.subr + +load_rc_config postgresql%%PG_SUFFIX%% + +# set defaults +postgresql%%PG_SUFFIX%%_enable=${postgresql%%PG_SUFFIX%%_enable:-"NO"} +postgresql%%PG_SUFFIX%%_flags=${postgresql%%PG_SUFFIX%%_flags:-"-w -s -m fast"} +postgresql%%PG_SUFFIX%%_user=${postgresql%%PG_SUFFIX%%_user:-"%%PG_USER%%"} +eval postgresql%%PG_SUFFIX%%_data=${postgresql%%PG_SUFFIX%%_data:-"~${postgresql%%PG_SUFFIX%%_user}/data%%PG_SUFFIX%%"} +postgresql%%PG_SUFFIX%%_login_class=${postgresql%%PG_SUFFIX%%_login_class:-"default"} +postgresql%%PG_SUFFIX%%_initdb_flags=${postgresql%%PG_SUFFIX%%_initdb_flags:-"--encoding=utf-8 --lc-collate=C"} + +name=postgresql%%PG_SUFFIX%% +rcvar=${name}_enable +extra_commands="reload initdb" + +start_cmd="${name}_command start" +stop_cmd="${name}_command stop" +restart_cmd="${name}_command restart" +reload_cmd="${name}_command reload" +status_cmd="${name}_command status" +promote_cmd="${name}_command promote" + +initdb_cmd="${name}_initdb" + +su_cmd="/usr/bin/su" + +if [ -n "$2" ]; then + profile="$2" + if [ "x${postgresql%%PG_SUFFIX%%_profiles}" != "x" ]; then + eval ${name}_data="\${${name}_${profile}_data:-}" + if [ "x${postgresql%%PG_SUFFIX%%_data}" = "x" ]; then + echo "You must define a data directory (${name}_${profile}_data)" + exit 1 + fi + eval ${name}_enable="\${${name}_${profile}_enable:-\${${name}_enable}}" + eval ${name}_data="\${${name}_${profile}_data:-\${${name}_data}}" + eval ${name}_flags="\${${name}_${profile}_flags:-\${${name}_flags}}" + eval ${name}_initdb_flags="\${${name}_${profile}_initdb_flags:-\${${name}_initdb_flags}}" + fi +else + if [ "x${postgresql%%PG_SUFFIX%%_profiles}" != "x" -a "x$1" != "x" ]; then + for profile in ${postgresql%%PG_SUFFIX%%_profiles}; do + eval _enable="\${${name}_${profile}_enable}" + case "x${_enable:-${postgresql%%PG_SUFFIX%%_enable}}" in + x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee]) + continue + ;; + x[Yy][Ee][Ss]) + ;; + *) + if test -z "$_enable"; then + _var=${name}_enable + else + _var=${name}_"${profile}"_enable + fi + echo "Bad value" \ + "'${_enable:-${postgresql%%PG_SUFFIX%%_enable}}'" \ + "for ${_var}. " \ + "Profile ${profile} skipped." + continue + ;; + esac + echo "===> ${name} profile: ${profile}" + %%PREFIX%%/etc/rc.d/${name} $1 ${profile} + retcode="$?" + if [ "0${retcode}" -ne 0 ]; then + failed="${profile} (${retcode}) ${failed:-}" + else + success="${profile} ${success:-}" + fi + done + exit 0 + fi +fi + +command_args="-D ${postgresql%%PG_SUFFIX%%_data} ${postgresql%%PG_SUFFIX%%_flags}" + +postgresql%%PG_SUFFIX%%_command() +{ + ${su_cmd} -l ${postgresql%%PG_SUFFIX%%_user} -c "exec ${command} ${command_args} ${rc_arg}" +} + +postgresql%%PG_SUFFIX%%_initdb() +{ + ${su_cmd} -l -c ${postgresql%%PG_SUFFIX%%_login_class} ${postgresql%%PG_SUFFIX%%_user} -c "exec %%PREFIX%%/libexec/${name}/initdb ${postgresql%%PG_SUFFIX%%_initdb_flags} -D ${postgresql%%PG_SUFFIX%%_data} -U ${postgresql%%PG_SUFFIX%%_user}" +} + +run_rc_command "$1" diff --git a/databases/postgresql11-server/pkg-plist-contrib b/databases/postgresql11-server/pkg-plist-contrib --- a/databases/postgresql11-server/pkg-plist-contrib +++ b/databases/postgresql11-server/pkg-plist-contrib @@ -1,58 +1,58 @@ -bin/oid2name -bin/pg_standby -bin/vacuumlo -include/postgresql/server/extension/cube/cubedata.h -include/postgresql/server/extension/hstore/hstore.h -include/postgresql/server/extension/isn/isn.h -include/postgresql/server/extension/ltree/ltree.h -include/postgresql/server/extension/seg/segdata.h -lib/postgresql/_int.so -lib/postgresql/adminpack.so -lib/postgresql/amcheck.so -lib/postgresql/auth_delay.so -lib/postgresql/auto_explain.so -lib/postgresql/autoinc.so -lib/postgresql/bloom.so -lib/postgresql/btree_gin.so -lib/postgresql/btree_gist.so -lib/postgresql/citext.so -lib/postgresql/cube.so -lib/postgresql/dblink.so -lib/postgresql/dict_int.so -lib/postgresql/dict_xsyn.so -lib/postgresql/earthdistance.so -lib/postgresql/file_fdw.so -lib/postgresql/fuzzystrmatch.so -lib/postgresql/hstore.so -lib/postgresql/insert_username.so -lib/postgresql/isn.so -lib/postgresql/lo.so -lib/postgresql/ltree.so -lib/postgresql/moddatetime.so -lib/postgresql/pageinspect.so -lib/postgresql/passwordcheck.so -lib/postgresql/pg_buffercache.so -lib/postgresql/pg_freespacemap.so -lib/postgresql/pg_prewarm.so -lib/postgresql/pg_stat_statements.so -lib/postgresql/pg_trgm.so -lib/postgresql/pg_visibility.so -lib/postgresql/pgcrypto.so -lib/postgresql/pgrowlocks.so -lib/postgresql/pgstattuple.so -%%XML%%lib/postgresql/pgxml.so -lib/postgresql/postgres_fdw.so -lib/postgresql/refint.so -lib/postgresql/seg.so -%%OPENSSL%%lib/postgresql/sslinfo.so -lib/postgresql/tablefunc.so -lib/postgresql/tcn.so -lib/postgresql/test_decoding.so -lib/postgresql/timetravel.so -lib/postgresql/tsm_system_rows.so -lib/postgresql/tsm_system_time.so -lib/postgresql/unaccent.so -lib/postgresql/uuid-ossp.so +libexec/postgresql%%PG_SUFFIX%%/oid2name +libexec/postgresql%%PG_SUFFIX%%/pg_standby +libexec/postgresql%%PG_SUFFIX%%/vacuumlo +include/postgresql%%PG_SUFFIX%%/server/extension/cube/cubedata.h +include/postgresql%%PG_SUFFIX%%/server/extension/hstore/hstore.h +include/postgresql%%PG_SUFFIX%%/server/extension/isn/isn.h +include/postgresql%%PG_SUFFIX%%/server/extension/ltree/ltree.h +include/postgresql%%PG_SUFFIX%%/server/extension/seg/segdata.h +lib/postgresql%%PG_SUFFIX%%/_int.so +lib/postgresql%%PG_SUFFIX%%/adminpack.so +lib/postgresql%%PG_SUFFIX%%/amcheck.so +lib/postgresql%%PG_SUFFIX%%/auth_delay.so +lib/postgresql%%PG_SUFFIX%%/auto_explain.so +lib/postgresql%%PG_SUFFIX%%/autoinc.so +lib/postgresql%%PG_SUFFIX%%/bloom.so +lib/postgresql%%PG_SUFFIX%%/btree_gin.so +lib/postgresql%%PG_SUFFIX%%/btree_gist.so +lib/postgresql%%PG_SUFFIX%%/citext.so +lib/postgresql%%PG_SUFFIX%%/cube.so +lib/postgresql%%PG_SUFFIX%%/dblink.so +lib/postgresql%%PG_SUFFIX%%/dict_int.so +lib/postgresql%%PG_SUFFIX%%/dict_xsyn.so +lib/postgresql%%PG_SUFFIX%%/earthdistance.so +lib/postgresql%%PG_SUFFIX%%/file_fdw.so +lib/postgresql%%PG_SUFFIX%%/fuzzystrmatch.so +lib/postgresql%%PG_SUFFIX%%/hstore.so +lib/postgresql%%PG_SUFFIX%%/insert_username.so +lib/postgresql%%PG_SUFFIX%%/isn.so +lib/postgresql%%PG_SUFFIX%%/lo.so +lib/postgresql%%PG_SUFFIX%%/ltree.so +lib/postgresql%%PG_SUFFIX%%/moddatetime.so +lib/postgresql%%PG_SUFFIX%%/pageinspect.so +lib/postgresql%%PG_SUFFIX%%/passwordcheck.so +lib/postgresql%%PG_SUFFIX%%/pg_buffercache.so +lib/postgresql%%PG_SUFFIX%%/pg_freespacemap.so +lib/postgresql%%PG_SUFFIX%%/pg_prewarm.so +lib/postgresql%%PG_SUFFIX%%/pg_stat_statements.so +lib/postgresql%%PG_SUFFIX%%/pg_trgm.so +lib/postgresql%%PG_SUFFIX%%/pg_visibility.so +lib/postgresql%%PG_SUFFIX%%/pgcrypto.so +lib/postgresql%%PG_SUFFIX%%/pgrowlocks.so +lib/postgresql%%PG_SUFFIX%%/pgstattuple.so +%%XML%%lib/postgresql%%PG_SUFFIX%%/pgxml.so +lib/postgresql%%PG_SUFFIX%%/postgres_fdw.so +lib/postgresql%%PG_SUFFIX%%/refint.so +lib/postgresql%%PG_SUFFIX%%/seg.so +%%OPENSSL%%lib/postgresql%%PG_SUFFIX%%/sslinfo.so +lib/postgresql%%PG_SUFFIX%%/tablefunc.so +lib/postgresql%%PG_SUFFIX%%/tcn.so +lib/postgresql%%PG_SUFFIX%%/test_decoding.so +lib/postgresql%%PG_SUFFIX%%/timetravel.so +lib/postgresql%%PG_SUFFIX%%/tsm_system_rows.so +lib/postgresql%%PG_SUFFIX%%/tsm_system_time.so +lib/postgresql%%PG_SUFFIX%%/unaccent.so +lib/postgresql%%PG_SUFFIX%%/uuid-ossp.so %%PORTDOCS%%%%DOCSDIR%%/README-contrib %%PORTDOCS%%%%DOCSDIR%%/extension/README %%PORTDOCS%%%%DOCSDIR%%/extension/autoinc.example diff --git a/databases/postgresql11-server/pkg-plist-plperl b/databases/postgresql11-server/pkg-plist-plperl --- a/databases/postgresql11-server/pkg-plist-plperl +++ b/databases/postgresql11-server/pkg-plist-plperl @@ -1,6 +1,6 @@ -include/postgresql/server/plperl.h -include/postgresql/server/plperl_helpers.h -include/postgresql/server/ppport.h +include/postgresql%%PG_SUFFIX%%/server/plperl.h +include/postgresql%%PG_SUFFIX%%/server/plperl_helpers.h +include/postgresql%%PG_SUFFIX%%/server/ppport.h %%DATADIR%%/extension/plperlu--1.0.sql %%DATADIR%%/extension/plperl.control %%DATADIR%%/extension/plperl--1.0.sql @@ -8,9 +8,9 @@ %%DATADIR%%/extension/plperlu--unpackaged--1.0.sql %%DATADIR%%/extension/plperl--unpackaged--1.0.sql %%DOCSDIR%%/README-plperl -lib/postgresql/plperl.so -lib/postgresql/hstore_plperl.so -lib/postgresql/jsonb_plperl.so +lib/postgresql%%PG_SUFFIX%%/plperl.so +lib/postgresql%%PG_SUFFIX%%/hstore_plperl.so +lib/postgresql%%PG_SUFFIX%%/jsonb_plperl.so %%DATADIR%%/extension/hstore_plperl--1.0.sql %%DATADIR%%/extension/hstore_plperl.control %%DATADIR%%/extension/hstore_plperlu--1.0.sql diff --git a/databases/postgresql11-server/pkg-plist-plpython b/databases/postgresql11-server/pkg-plist-plpython --- a/databases/postgresql11-server/pkg-plist-plpython +++ b/databases/postgresql11-server/pkg-plist-plpython @@ -1,20 +1,20 @@ -include/postgresql/server/plpy_cursorobject.h -include/postgresql/server/plpy_elog.h -include/postgresql/server/plpy_exec.h -include/postgresql/server/plpy_main.h -include/postgresql/server/plpy_planobject.h -include/postgresql/server/plpy_plpymodule.h -include/postgresql/server/plpy_procedure.h -include/postgresql/server/plpy_resultobject.h -include/postgresql/server/plpy_spi.h -include/postgresql/server/plpy_subxactobject.h -include/postgresql/server/plpy_typeio.h -include/postgresql/server/plpy_util.h -include/postgresql/server/plpython.h -lib/postgresql/pgxs/src/pl/plpython/regress-python3-mangle.mk +include/postgresql%%PG_SUFFIX%%/server/plpy_cursorobject.h +include/postgresql%%PG_SUFFIX%%/server/plpy_elog.h +include/postgresql%%PG_SUFFIX%%/server/plpy_exec.h +include/postgresql%%PG_SUFFIX%%/server/plpy_main.h +include/postgresql%%PG_SUFFIX%%/server/plpy_planobject.h +include/postgresql%%PG_SUFFIX%%/server/plpy_plpymodule.h +include/postgresql%%PG_SUFFIX%%/server/plpy_procedure.h +include/postgresql%%PG_SUFFIX%%/server/plpy_resultobject.h +include/postgresql%%PG_SUFFIX%%/server/plpy_spi.h +include/postgresql%%PG_SUFFIX%%/server/plpy_subxactobject.h +include/postgresql%%PG_SUFFIX%%/server/plpy_typeio.h +include/postgresql%%PG_SUFFIX%%/server/plpy_util.h +include/postgresql%%PG_SUFFIX%%/server/plpython.h +lib/postgresql%%PG_SUFFIX%%/pgxs/src/pl/plpython/regress-python3-mangle.mk %%DOCSDIR%%/README-plpython -%%PYTHON2%%lib/postgresql/plpython2.so -%%PYTHON3%%lib/postgresql/plpython3.so +%%PYTHON2%%lib/postgresql%%PG_SUFFIX%%/plpython2.so +%%PYTHON3%%lib/postgresql%%PG_SUFFIX%%/plpython3.so %%PYTHON2%%%%DATADIR%%/extension/plpython2u--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpython2u--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpython2u.control @@ -24,9 +24,9 @@ %%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu.control -lib/postgresql/hstore_plpython3.so -lib/postgresql/jsonb_plpython3.so -lib/postgresql/ltree_plpython3.so +lib/postgresql%%PG_SUFFIX%%/hstore_plpython3.so +lib/postgresql%%PG_SUFFIX%%/jsonb_plpython3.so +lib/postgresql%%PG_SUFFIX%%/ltree_plpython3.so %%DATADIR%%/extension/hstore_plpython2u--1.0.sql %%DATADIR%%/extension/hstore_plpython2u.control %%DATADIR%%/extension/hstore_plpython3u--1.0.sql diff --git a/databases/postgresql11-server/pkg-plist-pltcl b/databases/postgresql11-server/pkg-plist-pltcl --- a/databases/postgresql11-server/pkg-plist-pltcl +++ b/databases/postgresql11-server/pkg-plist-pltcl @@ -5,4 +5,4 @@ %%DATADIR%%/extension/pltcl--unpackaged--1.0.sql %%DATADIR%%/extension/pltclu--unpackaged--1.0.sql %%DOCSDIR%%/README-pltcl -lib/postgresql/pltcl.so +lib/postgresql%%PG_SUFFIX%%/pltcl.so diff --git a/databases/postgresql11-server/pkg-plist-server b/databases/postgresql11-server/pkg-plist-server --- a/databases/postgresql11-server/pkg-plist-server +++ b/databases/postgresql11-server/pkg-plist-server @@ -1,706 +1,706 @@ -bin/initdb -bin/pg_archivecleanup -bin/pg_basebackup -bin/pg_controldata -bin/pg_ctl -bin/pg_receivewal -bin/pg_recvlogical -bin/pg_resetwal -bin/pg_rewind -bin/pg_test_fsync -bin/pg_test_timing -bin/pg_upgrade -bin/pg_waldump -bin/postgres -bin/postmaster -etc/periodic/daily/502.pgsql -include/postgresql/server/plpgsql.h -lib/postgresql/ascii_and_mic.so -lib/postgresql/cyrillic_and_mic.so -lib/postgresql/dict_snowball.so -lib/postgresql/euc2004_sjis2004.so -lib/postgresql/euc_cn_and_mic.so -lib/postgresql/euc_jp_and_sjis.so -lib/postgresql/euc_kr_and_mic.so -lib/postgresql/euc_tw_and_big5.so -lib/postgresql/latin2_and_win1250.so -lib/postgresql/latin_and_mic.so -lib/postgresql/libpqwalreceiver.so -lib/postgresql/pgoutput.so -lib/postgresql/plpgsql.so -lib/postgresql/utf8_and_ascii.so -lib/postgresql/utf8_and_big5.so -lib/postgresql/utf8_and_cyrillic.so -lib/postgresql/utf8_and_euc2004.so -lib/postgresql/utf8_and_euc_cn.so -lib/postgresql/utf8_and_euc_jp.so -lib/postgresql/utf8_and_euc_kr.so -lib/postgresql/utf8_and_euc_tw.so -lib/postgresql/utf8_and_gb18030.so -lib/postgresql/utf8_and_gbk.so -lib/postgresql/utf8_and_iso8859.so -lib/postgresql/utf8_and_iso8859_1.so -lib/postgresql/utf8_and_johab.so -lib/postgresql/utf8_and_sjis.so -lib/postgresql/utf8_and_sjis2004.so -lib/postgresql/utf8_and_uhc.so -lib/postgresql/utf8_and_win.so -%%LLVM%%lib/postgresql/llvmjit.so -%%LLVM%%lib/postgresql/llvmjit_types.bc -%%LLVM%%lib/postgresql/bitcode/postgres.index.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_inclusion.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_minmax.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_pageops.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_revmap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_tuple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_validate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_xlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/bufmask.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/heaptuple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/indextuple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/printsimple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/printtup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/reloptions.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/scankey.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/session.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/tupconvert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/tupdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginarrayproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginbtree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginbulk.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/gindatapage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginentrypage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginfast.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginget.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/gininsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginlogic.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginpostinglist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginutil.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginvacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginxlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistbuild.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistbuildbuffers.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistget.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistsplit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistutil.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistvacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistxlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hash_xlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashfunc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashinsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashovfl.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashpage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashsearch.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashsort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashutil.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/heapam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/hio.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/pruneheap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/rewriteheap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/syncscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/tuptoaster.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/visibilitymap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/index/amapi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/index/amvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/index/genam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/index/indexam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtcompare.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtinsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtpage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtsearch.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtsort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtxlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/brindesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/clogdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/committsdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/dbasedesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/genericdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/gindesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/gistdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/hashdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/heapdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/logicalmsgdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/mxactdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/nbtdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/relmapdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/replorigindesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/seqdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/smgrdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/spgdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/standbydesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/tblspcdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/xactdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/xlogdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgdoinsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spginsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgkdtreeproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgquadtreeproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgtextproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgvacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgxlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/tablesample/bernoulli.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/tablesample/system.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/tablesample/tablesample.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/clog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/commit_ts.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/generic_xlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/multixact.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/parallel.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/rmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/slru.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/subtrans.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/timeline.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/transam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/twophase.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/twophase_rmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/varsup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xact.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlogarchive.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlogfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xloginsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlogreader.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlogutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/bootstrap/bootparse.bc -%%LLVM%%lib/postgresql/bitcode/postgres/bootstrap/bootstrap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/aclchk.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/catalog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/dependency.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/heap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/index.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/indexing.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/namespace.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/objectaccess.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/objectaddress.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/partition.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_aggregate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_collation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_constraint.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_conversion.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_db_role_setting.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_depend.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_enum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_inherits.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_largeobject.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_namespace.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_operator.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_proc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_publication.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_range.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_shdepend.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_subscription.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_type.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/storage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/toasting.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/aggregatecmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/alter.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/amcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/analyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/async.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/cluster.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/collationcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/comment.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/constraint.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/conversioncmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/copy.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/createas.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/dbcommands.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/define.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/discard.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/dropcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/event_trigger.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/explain.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/extension.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/foreigncmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/functioncmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/indexcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/lockcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/matview.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/opclasscmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/operatorcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/policy.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/portalcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/prepare.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/proclang.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/publicationcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/schemacmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/seclabel.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/sequence.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/statscmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/subscriptioncmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/tablecmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/tablespace.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/trigger.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/tsearchcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/typecmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/user.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/vacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/vacuumlazy.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/variable.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/view.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execAmi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execCurrent.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execExpr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execExprInterp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execGrouping.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execIndexing.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execJunk.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execMain.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execParallel.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execPartition.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execProcnode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execReplication.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execSRF.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execScan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execTuples.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execUtils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/functions.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/instrument.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeAgg.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeAppend.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeBitmapAnd.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeBitmapHeapscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeBitmapIndexscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeBitmapOr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeCtescan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeCustom.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeForeignscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeFunctionscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeGather.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeGatherMerge.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeGroup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeHash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeHashjoin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeIndexonlyscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeIndexscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeLimit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeLockRows.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeMaterial.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeMergeAppend.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeMergejoin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeModifyTable.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeNamedtuplestorescan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeNestloop.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeProjectSet.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeRecursiveunion.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeResult.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSamplescan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSeqscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSetOp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSubplan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSubqueryscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeTableFuncscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeTidscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeUnique.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeValuesscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeWindowAgg.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeWorktablescan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/spi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/tqueue.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/tstoreReceiver.bc -%%LLVM%%lib/postgresql/bitcode/postgres/foreign/foreign.bc -%%LLVM%%lib/postgresql/bitcode/postgres/jit/jit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/binaryheap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/bipartite_match.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/bloomfilter.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/dshash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/hyperloglog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/ilist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/knapsack.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/pairingheap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/rbtree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/stringinfo.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/auth-scram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/auth.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/be-fsstubs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/be-secure-common.bc -%%LLVM%%%%SSL%%lib/postgresql/bitcode/postgres/libpq/be-secure-openssl.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/be-secure.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/crypt.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/hba.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/ifaddr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/pqcomm.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/pqformat.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/pqmq.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/pqsignal.bc -%%LLVM%%lib/postgresql/bitcode/postgres/main/main.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/bitmapset.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/copyfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/equalfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/extensible.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/list.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/makefuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/nodeFuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/nodes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/outfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/params.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/print.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/read.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/readfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/tidbitmap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/value.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_copy.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_cx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_erx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_eval.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_main.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_misc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_mutation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_ox1.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_ox2.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_pmx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_pool.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_px.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_random.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_recombination.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_selection.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/allpaths.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/clausesel.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/costsize.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/equivclass.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/indxpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/joinpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/joinrels.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/pathkeys.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/tidpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/analyzejoins.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/createplan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/initsplan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/planagg.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/planmain.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/planner.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/setrefs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/subselect.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/prep/prepjointree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/prep/prepqual.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/prep/preptlist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/prep/prepunion.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/clauses.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/joininfo.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/orclauses.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/paramassign.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/pathnode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/placeholder.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/plancat.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/predtest.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/relnode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/restrictinfo.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/tlist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/var.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/analyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/gram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_agg.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_clause.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_coerce.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_collate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_cte.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_enr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_expr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_func.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_node.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_oper.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_param.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_relation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_target.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_type.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_utilcmd.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/scan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/scansup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/partitioning/partbounds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/partitioning/partprune.bc -%%LLVM%%lib/postgresql/bitcode/postgres/port/atomics.bc -%%LLVM%%lib/postgresql/bitcode/postgres/port/dynloader.bc -%%LLVM%%lib/postgresql/bitcode/postgres/port/pg_sema.bc -%%LLVM%%lib/postgresql/bitcode/postgres/port/pg_shmem.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/autovacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/bgworker.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/bgwriter.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/checkpointer.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/fork_process.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/pgarch.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/pgstat.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/postmaster.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/startup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/syslogger.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/walwriter.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regcomp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regerror.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regexec.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regexport.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regfree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regprefix.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/basebackup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/decode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/launcher.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/logical.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/logicalfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/message.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/origin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/proto.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/relation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/reorderbuffer.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/snapbuild.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/tablesync.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/worker.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/repl_gram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/slot.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/slotfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/syncrep.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/syncrep_gram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/walreceiver.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/walreceiverfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/walsender.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteDefine.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteHandler.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteManip.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteRemove.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteSupport.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rowsecurity.bc -%%LLVM%%lib/postgresql/bitcode/postgres/statistics/dependencies.bc -%%LLVM%%lib/postgresql/bitcode/postgres/statistics/extended_stats.bc -%%LLVM%%lib/postgresql/bitcode/postgres/statistics/mvdistinct.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/buf_init.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/buf_table.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/bufmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/freelist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/localbuf.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/buffile.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/copydir.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/fd.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/reinit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/sharedfileset.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/freespace/freespace.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/freespace/fsmpage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/freespace/indexfsm.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/barrier.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/dsm.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/dsm_impl.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/ipc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/ipci.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/latch.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/pmsignal.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/procarray.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/procsignal.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/shm_mq.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/shm_toc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/shmem.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/shmqueue.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/sinval.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/sinvaladt.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/standby.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/large_object/inv_api.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/condition_variable.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/deadlock.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/lmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/lock.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/lwlock.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/lwlocknames.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/predicate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/proc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/s_lock.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/spin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/page/bufpage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/page/checksum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/page/itemptr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/smgr/md.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/smgr/smgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/smgr/smgrtype.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/dest.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/fastpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/postgres.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/pquery.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/utility.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict_ispell.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict_simple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict_synonym.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict_thesaurus.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/regis.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/spell.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/to_tsany.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_locale.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_parse.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_typanalyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_utils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/wparser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/wparser_def.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/acl.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/amutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/array_expanded.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/array_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/array_typanalyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/array_userfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/arrayfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/arrayutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/ascii.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/bool.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/cash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/char.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/cryptohashes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/date.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/datetime.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/datum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/dbsize.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/domains.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/encode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/enum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/expandeddatum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/expandedrecord.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/float.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/format_type.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/formatting.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/genfile.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/geo_ops.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/geo_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/geo_spgist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/inet_cidr_ntop.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/inet_net_pton.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/int.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/int8.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/json.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonb.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonb_gin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonb_op.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonb_util.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/like.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/lockfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/mac.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/mac8.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/misc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/nabstime.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/name.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/network.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/network_gist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/network_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/network_spgist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/numeric.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/numutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/oid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/oracle_compat.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/orderedsetaggs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pg_locale.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pg_lsn.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pg_upgrade_support.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pgstatfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pseudotypes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/quote.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes_gist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes_spgist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes_typanalyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/regexp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/regproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/ri_triggers.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rowtypes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/ruleutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/timestamp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/trigfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsginidx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsgistidx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_cleanup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_gist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_op.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_rewrite.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_util.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsrank.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsvector.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsvector_op.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsvector_parser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/txid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/uuid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/varbit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/varchar.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/varlena.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/version.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/windowfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/xid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/xml.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/attoptcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/catcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/evtcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/inval.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/lsyscache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/partcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/plancache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/relcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/relfilenodemap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/relmapper.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/spccache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/syscache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/ts_cache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/typcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/error/assert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/error/elog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/fmgr/dfmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/fmgr/fmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/fmgr/funcapi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/fmgrtab.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/hash/dynahash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/hash/hashfn.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/hash/pg_crc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/init/globals.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/init/miscinit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/init/postinit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/conv.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/encnames.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/mbutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/wchar.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/wstrcmp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/wstrncmp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/backend_random.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/guc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/help_config.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/pg_config.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/pg_controldata.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/pg_rusage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/ps_status.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/queryenvironment.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/rls.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/sampling.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/superuser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/timeout.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/tzparser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/aset.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/dsa.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/freepage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/generation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/mcxt.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/memdebug.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/portalmem.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/slab.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/resowner/resowner.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/logtape.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/sharedtuplestore.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/sortsupport.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/tuplesort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/tuplestore.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/time/combocid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/time/snapmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/time/tqual.bc -lib/libpgcommon.a +libexec/postgresql%%PG_SUFFIX%%/initdb +libexec/postgresql%%PG_SUFFIX%%/pg_archivecleanup +libexec/postgresql%%PG_SUFFIX%%/pg_basebackup +libexec/postgresql%%PG_SUFFIX%%/pg_controldata +libexec/postgresql%%PG_SUFFIX%%/pg_ctl +libexec/postgresql%%PG_SUFFIX%%/pg_receivewal +libexec/postgresql%%PG_SUFFIX%%/pg_recvlogical +libexec/postgresql%%PG_SUFFIX%%/pg_resetwal +libexec/postgresql%%PG_SUFFIX%%/pg_rewind +libexec/postgresql%%PG_SUFFIX%%/pg_test_fsync +libexec/postgresql%%PG_SUFFIX%%/pg_test_timing +libexec/postgresql%%PG_SUFFIX%%/pg_upgrade +libexec/postgresql%%PG_SUFFIX%%/pg_waldump +libexec/postgresql%%PG_SUFFIX%%/postgres +libexec/postgresql%%PG_SUFFIX%%/postmaster +etc/periodic/daily/502.postgresql%%PG_SUFFIX%% +include/postgresql%%PG_SUFFIX%%/server/plpgsql.h +lib/postgresql%%PG_SUFFIX%%/ascii_and_mic.so +lib/postgresql%%PG_SUFFIX%%/cyrillic_and_mic.so +lib/postgresql%%PG_SUFFIX%%/dict_snowball.so +lib/postgresql%%PG_SUFFIX%%/euc2004_sjis2004.so +lib/postgresql%%PG_SUFFIX%%/euc_cn_and_mic.so +lib/postgresql%%PG_SUFFIX%%/euc_jp_and_sjis.so +lib/postgresql%%PG_SUFFIX%%/euc_kr_and_mic.so +lib/postgresql%%PG_SUFFIX%%/euc_tw_and_big5.so +lib/postgresql%%PG_SUFFIX%%/latin2_and_win1250.so +lib/postgresql%%PG_SUFFIX%%/latin_and_mic.so +lib/postgresql%%PG_SUFFIX%%/libpqwalreceiver.so +lib/postgresql%%PG_SUFFIX%%/pgoutput.so +lib/postgresql%%PG_SUFFIX%%/plpgsql.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_ascii.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_big5.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_cyrillic.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc2004.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_cn.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_jp.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_kr.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_tw.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_gb18030.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_gbk.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_iso8859.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_iso8859_1.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_johab.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_sjis.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_sjis2004.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_uhc.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_win.so +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/llvmjit.so +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/llvmjit_types.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres.index.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_inclusion.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_minmax.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_pageops.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_revmap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_tuple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_validate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_xlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/bufmask.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/heaptuple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/indextuple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/printsimple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/printtup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/reloptions.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/scankey.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/session.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/tupconvert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/tupdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginarrayproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginbtree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginbulk.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/gindatapage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginentrypage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginfast.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginget.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/gininsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginlogic.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginpostinglist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginutil.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginvacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginxlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistbuild.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistbuildbuffers.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistget.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistsplit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistutil.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistvacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistxlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hash_xlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashfunc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashinsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashovfl.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashpage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashsearch.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashsort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashutil.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/heapam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/hio.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/pruneheap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/rewriteheap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/syncscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/tuptoaster.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/visibilitymap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/index/amapi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/index/amvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/index/genam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/index/indexam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtcompare.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtinsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtpage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtsearch.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtsort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtxlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/brindesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/clogdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/committsdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/dbasedesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/genericdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/gindesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/gistdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/hashdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/heapdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/logicalmsgdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/mxactdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/nbtdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/relmapdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/replorigindesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/seqdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/smgrdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/spgdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/standbydesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/tblspcdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/xactdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/xlogdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgdoinsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spginsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgkdtreeproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgquadtreeproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgtextproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgvacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgxlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/tablesample/bernoulli.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/tablesample/system.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/tablesample/tablesample.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/clog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/commit_ts.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/generic_xlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/multixact.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/parallel.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/rmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/slru.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/subtrans.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/timeline.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/transam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/twophase.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/twophase_rmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/varsup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xact.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlogarchive.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlogfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xloginsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlogreader.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlogutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/bootstrap/bootparse.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/bootstrap/bootstrap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/aclchk.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/catalog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/dependency.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/heap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/index.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/indexing.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/namespace.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/objectaccess.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/objectaddress.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/partition.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_aggregate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_collation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_constraint.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_conversion.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_db_role_setting.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_depend.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_enum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_inherits.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_largeobject.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_namespace.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_operator.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_proc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_publication.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_range.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_shdepend.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_subscription.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_type.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/storage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/toasting.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/aggregatecmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/alter.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/amcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/analyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/async.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/cluster.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/collationcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/comment.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/constraint.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/conversioncmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/copy.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/createas.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/dbcommands.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/define.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/discard.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/dropcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/event_trigger.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/explain.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/extension.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/foreigncmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/functioncmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/indexcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/lockcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/matview.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/opclasscmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/operatorcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/policy.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/portalcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/prepare.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/proclang.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/publicationcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/schemacmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/seclabel.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/sequence.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/statscmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/subscriptioncmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/tablecmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/tablespace.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/trigger.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/tsearchcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/typecmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/user.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/vacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/vacuumlazy.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/variable.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/view.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execAmi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execCurrent.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execExpr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execExprInterp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execGrouping.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execIndexing.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execJunk.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execMain.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execParallel.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execPartition.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execProcnode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execReplication.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execSRF.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execScan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execTuples.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execUtils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/functions.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/instrument.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeAgg.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeAppend.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeBitmapAnd.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeBitmapHeapscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeBitmapIndexscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeBitmapOr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeCtescan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeCustom.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeForeignscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeFunctionscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeGather.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeGatherMerge.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeGroup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeHash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeHashjoin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeIndexonlyscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeIndexscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeLimit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeLockRows.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeMaterial.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeMergeAppend.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeMergejoin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeModifyTable.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeNamedtuplestorescan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeNestloop.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeProjectSet.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeRecursiveunion.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeResult.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSamplescan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSeqscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSetOp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSubplan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSubqueryscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeTableFuncscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeTidscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeUnique.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeValuesscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeWindowAgg.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeWorktablescan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/spi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/tqueue.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/tstoreReceiver.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/foreign/foreign.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/jit/jit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/binaryheap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/bipartite_match.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/bloomfilter.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/dshash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/hyperloglog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/ilist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/knapsack.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/pairingheap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/rbtree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/stringinfo.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/auth-scram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/auth.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-fsstubs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-secure-common.bc +%%LLVM%%%%SSL%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-secure-openssl.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-secure.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/crypt.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/hba.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/ifaddr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/pqcomm.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/pqformat.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/pqmq.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/pqsignal.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/main/main.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/bitmapset.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/copyfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/equalfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/extensible.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/list.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/makefuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/nodeFuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/nodes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/outfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/params.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/print.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/read.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/readfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/tidbitmap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/value.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_copy.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_cx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_erx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_eval.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_main.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_misc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_mutation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_ox1.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_ox2.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_pmx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_pool.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_px.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_random.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_recombination.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_selection.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/allpaths.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/clausesel.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/costsize.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/equivclass.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/indxpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/joinpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/joinrels.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/pathkeys.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/tidpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/analyzejoins.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/createplan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/initsplan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/planagg.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/planmain.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/planner.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/setrefs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/subselect.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/prep/prepjointree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/prep/prepqual.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/prep/preptlist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/prep/prepunion.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/clauses.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/joininfo.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/orclauses.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/paramassign.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/pathnode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/placeholder.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/plancat.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/predtest.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/relnode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/restrictinfo.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/tlist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/var.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/analyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/gram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_agg.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_clause.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_coerce.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_collate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_cte.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_enr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_expr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_func.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_node.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_oper.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_param.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_relation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_target.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_type.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_utilcmd.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/scan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/scansup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/partitioning/partbounds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/partitioning/partprune.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/port/atomics.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/port/dynloader.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/port/pg_sema.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/port/pg_shmem.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/autovacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/bgworker.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/bgwriter.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/checkpointer.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/fork_process.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/pgarch.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/pgstat.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/postmaster.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/startup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/syslogger.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/walwriter.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regcomp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regerror.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regexec.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regexport.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regfree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regprefix.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/basebackup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/decode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/launcher.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/logical.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/logicalfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/message.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/origin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/proto.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/relation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/reorderbuffer.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/snapbuild.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/tablesync.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/worker.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/repl_gram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/slot.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/slotfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/syncrep.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/syncrep_gram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/walreceiver.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/walreceiverfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/walsender.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteDefine.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteHandler.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteManip.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteRemove.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteSupport.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rowsecurity.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/statistics/dependencies.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/statistics/extended_stats.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/statistics/mvdistinct.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/buf_init.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/buf_table.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/bufmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/freelist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/localbuf.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/buffile.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/copydir.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/fd.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/reinit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/sharedfileset.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/freespace/freespace.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/freespace/fsmpage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/freespace/indexfsm.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/barrier.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/dsm.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/dsm_impl.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/ipc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/ipci.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/latch.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/pmsignal.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/procarray.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/procsignal.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/shm_mq.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/shm_toc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/shmem.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/shmqueue.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/sinval.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/sinvaladt.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/standby.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/large_object/inv_api.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/condition_variable.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/deadlock.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/lmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/lock.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/lwlock.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/lwlocknames.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/predicate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/proc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/s_lock.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/spin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/page/bufpage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/page/checksum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/page/itemptr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/smgr/md.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/smgr/smgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/smgr/smgrtype.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/dest.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/fastpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/postgres.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/pquery.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/utility.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict_ispell.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict_simple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict_synonym.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict_thesaurus.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/regis.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/spell.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/to_tsany.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_locale.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_parse.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_typanalyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_utils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/wparser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/wparser_def.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/acl.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/amutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/array_expanded.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/array_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/array_typanalyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/array_userfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/arrayfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/arrayutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/ascii.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/bool.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/cash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/char.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/cryptohashes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/date.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/datetime.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/datum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/dbsize.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/domains.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/encode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/enum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/expandeddatum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/expandedrecord.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/float.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/format_type.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/formatting.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/genfile.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/geo_ops.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/geo_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/geo_spgist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/inet_cidr_ntop.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/inet_net_pton.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/int.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/int8.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/json.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonb.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonb_gin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonb_op.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonb_util.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/like.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/lockfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/mac.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/mac8.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/misc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/nabstime.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/name.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/network.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/network_gist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/network_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/network_spgist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/numeric.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/numutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/oid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/oracle_compat.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/orderedsetaggs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pg_locale.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pg_lsn.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pg_upgrade_support.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pgstatfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pseudotypes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/quote.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes_gist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes_spgist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes_typanalyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/regexp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/regproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/ri_triggers.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rowtypes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/ruleutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/timestamp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/trigfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsginidx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsgistidx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_cleanup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_gist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_op.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_rewrite.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_util.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsrank.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsvector.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsvector_op.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsvector_parser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/txid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/uuid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/varbit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/varchar.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/varlena.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/version.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/windowfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/xid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/xml.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/attoptcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/catcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/evtcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/inval.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/lsyscache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/partcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/plancache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/relcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/relfilenodemap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/relmapper.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/spccache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/syscache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/ts_cache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/typcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/error/assert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/error/elog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/fmgr/dfmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/fmgr/fmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/fmgr/funcapi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/fmgrtab.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/hash/dynahash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/hash/hashfn.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/hash/pg_crc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/init/globals.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/init/miscinit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/init/postinit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/conv.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/encnames.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/mbutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/wchar.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/wstrcmp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/wstrncmp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/backend_random.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/guc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/help_config.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/pg_config.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/pg_controldata.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/pg_rusage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/ps_status.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/queryenvironment.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/rls.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/sampling.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/superuser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/timeout.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/tzparser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/aset.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/dsa.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/freepage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/generation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/mcxt.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/memdebug.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/portalmem.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/slab.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/resowner/resowner.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/logtape.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/sharedtuplestore.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/sortsupport.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/tuplesort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/tuplestore.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/time/combocid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/time/snapmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/time/tqual.bc +lib/postgresql%%PG_SUFFIX%%/libpgcommon.a %%PORTDOCS%%%%DOCSDIR%%/README-server %%DATADIR%%/conversion_create.sql %%DATADIR%%/errcodes.txt @@ -717,169 +717,169 @@ %%DATADIR%%/extension/plpgsql--unpackaged--1.0.sql %%DATADIR%%/extension/plpgsql.control %%DATADIR%%/postgres.shdescription -%%NLS%%share/locale/cs/LC_MESSAGES/initdb-11.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_archivecleanup-11.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-11.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-11.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-11.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetwal-11.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-11.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_fsync-11.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_timing-11.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_upgrade-11.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_waldump-11.mo -%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-11.mo -%%NLS%%share/locale/de/LC_MESSAGES/initdb-11.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_archivecleanup-11.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-11.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-11.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-11.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_resetwal-11.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_rewind-11.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_test_fsync-11.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_test_timing-11.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_upgrade-11.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_waldump-11.mo -%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-11.mo -%%NLS%%share/locale/de/LC_MESSAGES/postgres-11.mo -%%NLS%%share/locale/es/LC_MESSAGES/initdb-11.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_archivecleanup-11.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-11.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-11.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-11.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_resetwal-11.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_rewind-11.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_test_fsync-11.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_test_timing-11.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_waldump-11.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_upgrade-11.mo -%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-11.mo -%%NLS%%share/locale/es/LC_MESSAGES/postgres-11.mo -%%NLS%%share/locale/fr/LC_MESSAGES/initdb-11.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_archivecleanup-11.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-11.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-11.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-11.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetwal-11.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-11.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_fsync-11.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_timing-11.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_upgrade-11.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_waldump-11.mo -%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-11.mo -%%NLS%%share/locale/fr/LC_MESSAGES/postgres-11.mo -%%NLS%%share/locale/he/LC_MESSAGES/initdb-11.mo -%%NLS%%share/locale/he/LC_MESSAGES/pg_basebackup-11.mo -%%NLS%%share/locale/he/LC_MESSAGES/pg_ctl-11.mo -%%NLS%%share/locale/it/LC_MESSAGES/initdb-11.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_basebackup-11.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-11.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-11.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_rewind-11.mo -%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-11.mo -%%NLS%%share/locale/it/LC_MESSAGES/postgres-11.mo -%%NLS%%share/locale/ja/LC_MESSAGES/initdb-11.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_archivecleanup-11.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_basebackup-11.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-11.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-11.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetwal-11.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_rewind-11.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_fsync-11.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_timing-11.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_upgrade-11.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_waldump-11.mo -%%NLS%%share/locale/ja/LC_MESSAGES/plpgsql-11.mo -%%NLS%%share/locale/ja/LC_MESSAGES/postgres-11.mo -%%NLS%%share/locale/ko/LC_MESSAGES/initdb-11.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_archivecleanup-11.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_basebackup-11.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_controldata-11.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_ctl-11.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_resetwal-11.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_rewind-11.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_fsync-11.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_timing-11.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_upgrade-11.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_waldump-11.mo -%%NLS%%share/locale/ko/LC_MESSAGES/plpgsql-11.mo -%%NLS%%share/locale/ko/LC_MESSAGES/postgres-11.mo -%%NLS%%share/locale/pl/LC_MESSAGES/initdb-11.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_archivecleanup-11.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_basebackup-11.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_controldata-11.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_ctl-11.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_rewind-11.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_fsync-11.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_timing-11.mo -%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-11.mo -%%NLS%%share/locale/pl/LC_MESSAGES/postgres-11.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/initdb-11.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_controldata-11.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_ctl-11.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_rewind-11.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-11.mo -%%NLS%%share/locale/ro/LC_MESSAGES/plpgsql-11.mo -%%NLS%%share/locale/ru/LC_MESSAGES/initdb-11.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_archivecleanup-11.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-11.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_controldata-11.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_ctl-11.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_resetwal-11.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_rewind-11.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_fsync-11.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_timing-11.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_upgrade-11.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_waldump-11.mo -%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-11.mo -%%NLS%%share/locale/ru/LC_MESSAGES/postgres-11.mo -%%NLS%%share/locale/sv/LC_MESSAGES/initdb-11.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_archivecleanup-11.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_basebackup-11.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_controldata-11.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-11.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_resetwal-11.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_rewind-11.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_fsync-11.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_timing-11.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_upgrade-11.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_waldump-11.mo -%%NLS%%share/locale/sv/LC_MESSAGES/plpgsql-11.mo -%%NLS%%share/locale/sv/LC_MESSAGES/postgres-11.mo -%%NLS%%share/locale/tr/LC_MESSAGES/initdb-11.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_archivecleanup-11.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_basebackup-11.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_controldata-11.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_ctl-11.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_resetwal-11.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_rewind-11.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_fsync-11.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_timing-11.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_upgrade-11.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_waldump-11.mo -%%NLS%%share/locale/tr/LC_MESSAGES/plpgsql-11.mo -%%NLS%%share/locale/tr/LC_MESSAGES/postgres-11.mo -%%NLS%%share/locale/vi/LC_MESSAGES/initdb-11.mo -%%NLS%%share/locale/vi/LC_MESSAGES/pg_archivecleanup-11.mo -%%NLS%%share/locale/vi/LC_MESSAGES/pg_basebackup-11.mo -%%NLS%%share/locale/vi/LC_MESSAGES/pg_controldata-11.mo -%%NLS%%share/locale/vi/LC_MESSAGES/pg_test_fsync-11.mo -%%NLS%%share/locale/vi/LC_MESSAGES/pg_test_timing-11.mo -%%NLS%%share/locale/vi/LC_MESSAGES/pg_waldump-11.mo -%%NLS%%share/locale/vi/LC_MESSAGES/plpgsql-11.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-11.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_archivecleanup-11.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-11.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-11.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-11.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_resetwal-11.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_rewind-11.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_fsync-11.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_timing-11.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_upgrade-11.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_waldump-11.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/plpgsql-11.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/postgres-11.mo +%%NLS%%share/locale/cs/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/he/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/he/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/he/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ro/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo %%DATADIR%%/snowball_create.sql %%TZDATA%%%%DATADIR%%/timezone/Africa/Abidjan %%TZDATA%%%%DATADIR%%/timezone/Africa/Accra diff --git a/databases/postgresql12-pgtcl/Makefile b/databases/postgresql12-pgtcl/Makefile deleted file mode 100644 --- a/databases/postgresql12-pgtcl/Makefile +++ /dev/null @@ -1,9 +0,0 @@ -PORTREVISION= 0 -PKGNAMESUFFIX= -postgresql12 - -CONFLICTS= pgtcl pgtcl-postgresql9[0123456] pgtcl-postgresql1[013-9]-* - -PGTCL_SLAVE= 12 -MASTERDIR= ${.CURDIR}/../pgtcl - -.include "${MASTERDIR}/Makefile" diff --git a/databases/postgresql12-plperl/Makefile b/databases/postgresql12-plperl/Makefile --- a/databases/postgresql12-plperl/Makefile +++ b/databases/postgresql12-plperl/Makefile @@ -1,29 +1,8 @@ # Created by: Palle Girgensohn -PORTNAME= postgresql -# Keep the ?=, this port is used as master by the other plperl. -PORTREVISION?= 0 -CATEGORIES= databases perl5 -PKGNAMESUFFIX?= ${WANT_PGSQL_VER:S/.//}${COMPONENT} - -MAINTAINER= pgsql@FreeBSD.org -COMMENT= Write SQL functions for PostgreSQL using Perl5 - -RUN_DEPENDS= postgres:databases/postgresql${WANT_PGSQL_VER:S/.//}-server - -MASTERDIR= ${.CURDIR}/../../databases/postgresql${WANT_PGSQL_VER:S/.//}-server - -WANT_PGSQL_VER?=12 - -USES+= perl5 readline -CONFIGURE_ARGS= --with-perl - -BUILD_DIRS= src/backend ${INSTALL_DIRS} -INSTALL_DIRS?= src/pl/plperl contrib/hstore_plperl contrib/jsonb_plperl -SLAVE_ONLY= yes -COMPONENT= -plperl +WANT_PGSQL_VER= 12 # this port fails to build in parallel MAKE_JOBS_UNSAFE= yes -.include "${MASTERDIR}/Makefile" +.include "${.CURDIR}/../postgresql14-plperl/Makefile" diff --git a/databases/postgresql12-plpython/Makefile b/databases/postgresql12-plpython/Makefile --- a/databases/postgresql12-plpython/Makefile +++ b/databases/postgresql12-plpython/Makefile @@ -1,28 +1,6 @@ -PORTNAME= postgresql -CATEGORIES= databases python -# Keep the ?=, it is used as master by the other plpython ports. -PORTREVISION?= 0 -PKGNAMESUFFIX?= ${WANT_PGSQL_VER:S/.//}${COMPONENT} - -MAINTAINER= pgsql@FreeBSD.org -COMMENT= Module for using Python to write SQL functions - -USES+= pgsql:${WANT_PGSQL_VER} ${WANT_PYTHON_USE} -WANT_PGSQL= server - -MASTERDIR= ${.CURDIR}/../postgresql${WANT_PGSQL_VER:S/.//}-server - -WANT_PGSQL_VER?= 12 -WANT_PYTHON_USE?= python - -CONFIGURE_ARGS= --with-python -COMPONENT= -plpython - -BUILD_DIRS= src/backend ${INSTALL_DIRS} -INSTALL_DIRS?= src/pl/plpython contrib/hstore_plpython contrib/jsonb_plpython contrib/ltree_plpython -SLAVE_ONLY= yes +WANT_PGSQL_VER= 12 # this port fails to build in parallel MAKE_JOBS_UNSAFE= yes -.include "${MASTERDIR}/Makefile" +.include "${.CURDIR}/../postgresql14-plpython/Makefile" diff --git a/databases/postgresql12-plpython/pkg-descr b/databases/postgresql12-plpython/pkg-descr deleted file mode 100644 --- a/databases/postgresql12-plpython/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -PL/Python allows one to write PostgeSQL stored functions and -procedures in Python (http://www.python.org/). - -This software is part of the standard PostgreSQL distribution. - -WWW: https://www.postgresql.org/ diff --git a/databases/postgresql12-pltcl/Makefile b/databases/postgresql12-pltcl/Makefile --- a/databases/postgresql12-pltcl/Makefile +++ b/databases/postgresql12-pltcl/Makefile @@ -1,34 +1,8 @@ # Created by: Palle Girgensohn -PORTNAME= postgresql -# Keep the ?=, it is used by the other pltcl ports. -PORTREVISION?= 0 -CATEGORIES= databases tcl -PKGNAMESUFFIX?= ${WANT_PGSQL_VER:S/.//}${COMPONENT} - -MAINTAINER= pgsql@FreeBSD.org -COMMENT= Module for using Tcl to write SQL functions - -MASTERDIR= ${.CURDIR}/../../databases/postgresql${WANT_PGSQL_VER:S/.//}-server - -WANT_PGSQL_VER?=12 - -USES+= tcl pgsql:${WANT_PGSQL_VER} -WANT_PGSQL= server - -CONFIGURE_ARGS= --with-tcl --without-tk \ - --with-tclconfig="${TCL_LIBDIR}" \ - --with-includes="${TCL_INCLUDEDIR}" - -CONFIGURE_ENV+= TCLSH="${TCLSH}" -MAKE_ENV+= TCL_INCDIR="${TCL_INCLUDEDIR}" - -BUILD_DIRS= src/backend src/pl/tcl -INSTALL_DIRS= src/pl/tcl -SLAVE_ONLY= yes -COMPONENT= -pltcl +WANT_PGSQL_VER= 12 # this port fails to build in parallel MAKE_JOBS_UNSAFE= yes -.include "${MASTERDIR}/Makefile" +.include "${.CURDIR}/../postgresql14-pltcl/Makefile" diff --git a/databases/postgresql12-server/files/502.pgsql.in b/databases/postgresql12-server/files/502.postgresql12.in rename from databases/postgresql12-server/files/502.pgsql.in rename to databases/postgresql12-server/files/502.postgresql12.in diff --git a/databases/postgresql12-server/files/dot.profile.in b/databases/postgresql12-server/files/dot.profile.in --- a/databases/postgresql12-server/files/dot.profile.in +++ b/databases/postgresql12-server/files/dot.profile.in @@ -5,7 +5,7 @@ export PATH PGLIB PGDATA -# if you use the periodic script from share/postgresql/502.pgsql, you +# if you use the periodic script from share/postgresql/502.postgresql%%PG_SUFFIX%%, you # can set these #PGDUMP_ARGS="-b -F c" #PGBACKUPDIR=${HOME}/backups diff --git a/databases/postgresql12-server/files/pkg-message-server.in b/databases/postgresql12-server/files/pkg-message-server.in --- a/databases/postgresql12-server/files/pkg-message-server.in +++ b/databases/postgresql12-server/files/pkg-message-server.in @@ -10,7 +10,7 @@ The port is set up to use autovacuum for new databases, but you might also want to vacuum and perhaps backup your database regularly. There -is a periodic script, %%PREFIX%%/etc/periodic/daily/502.pgsql, that +is a periodic script, %%PREFIX%%/etc/periodic/daily/502.postgresql%%PG_SUFFIX%%, that you may find useful. You can use it to backup and perform vacuum on all databases nightly. Per default, it performs `vacuum analyze'. See the script for instructions. For autovacuum settings, please review diff --git a/databases/postgresql12-server/files/pkgIndex.tcl.in b/databases/postgresql12-server/files/pkgIndex.tcl.in deleted file mode 100644 --- a/databases/postgresql12-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql12-server/files/postgresql.in b/databases/postgresql12-server/files/postgresql.in deleted file mode 100644 --- a/databases/postgresql12-server/files/postgresql.in +++ /dev/null @@ -1,115 +0,0 @@ -#!/bin/sh - -# PROVIDE: postgresql -# REQUIRE: DAEMON -# KEYWORD: shutdown -# -# Add the following line to /etc/rc.conf to enable PostgreSQL: -# -# postgresql_enable="YES" -# # optional -# postgresql_data="/var/db/%%PG_USER%%/data12" -# postgresql_flags="-w -s -m fast" -# postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C" -# postgresql_login_class="default" -# postgresql_profiles="" -# -# See %%PREFIX%%/share/doc/postgresql/README-server for more info -# -# This scripts takes one of the following commands: -# -# start stop restart reload status initdb -# -# For postmaster startup options, edit ${postgresql_data}/postgresql.conf - -command=%%PREFIX%%/bin/pg_ctl - -. /etc/rc.subr - -load_rc_config postgresql - -# set defaults -postgresql_enable=${postgresql_enable:-"NO"} -postgresql_flags=${postgresql_flags:-"-w -s -m fast"} -postgresql_user=${postgresql_user:-"%%PG_USER%%"} -eval postgresql_data=${postgresql_data:-"~${postgresql_user}/data12"} -postgresql_login_class=${postgresql_login_class:-"default"} -postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collate=C"} - -name=postgresql -rcvar=postgresql_enable -extra_commands="reload initdb" - -start_cmd="postgresql_command start" -stop_cmd="postgresql_command stop" -restart_cmd="postgresql_command restart" -reload_cmd="postgresql_command reload" -status_cmd="postgresql_command status" -promote_cmd="postgresql_command promote" - -initdb_cmd="postgresql_initdb" - -su_cmd="/usr/bin/su" - -if [ -n "$2" ]; then - profile="$2" - if [ "x${postgresql_profiles}" != "x" ]; then - eval postgresql_data="\${postgresql_${profile}_data:-}" - if [ "x${postgresql_data}" = "x" ]; then - echo "You must define a data directory (postgresql_${profile}_data)" - exit 1 - fi - eval postgresql_enable="\${postgresql_${profile}_enable:-${postgresql_enable}}" - eval postgresql_data="\${postgresql_${profile}_data:-${postgresql_data}}" - eval postgresql_flags="\${postgresql_${profile}_flags:-${postgresql_flags}}" - eval postgresql_initdb_flags="\${postgresql_${profile}_initdb_flags:-${postgresql_initdb_flags}}" - fi -else - if [ "x${postgresql_profiles}" != "x" -a "x$1" != "x" ]; then - for profile in ${postgresql_profiles}; do - eval _enable="\${postgresql_${profile}_enable}" - case "x${_enable:-${postgresql_enable}}" in - x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee]) - continue - ;; - x[Yy][Ee][Ss]) - ;; - *) - if test -z "$_enable"; then - _var=postgresql_enable - else - _var=postgresql_"${profile}"_enable - fi - echo "Bad value" \ - "'${_enable:-${postgresql_enable}}'" \ - "for ${_var}. " \ - "Profile ${profile} skipped." - continue - ;; - esac - echo "===> postgresql profile: ${profile}" - %%PREFIX%%/etc/rc.d/postgresql $1 ${profile} - retcode="$?" - if [ "0${retcode}" -ne 0 ]; then - failed="${profile} (${retcode}) ${failed:-}" - else - success="${profile} ${success:-}" - fi - done - exit 0 - fi -fi - -command_args="-D ${postgresql_data} ${postgresql_flags}" - -postgresql_command() -{ - ${su_cmd} -l ${postgresql_user} -c "exec ${command} ${command_args} ${rc_arg}" -} - -postgresql_initdb() -{ - ${su_cmd} -l -c ${postgresql_login_class} ${postgresql_user} -c "exec %%PREFIX%%/bin/initdb ${postgresql_initdb_flags} -D ${postgresql_data} -U ${postgresql_user}" -} - -run_rc_command "$1" diff --git a/databases/postgresql12-server/files/postgresql12.in b/databases/postgresql12-server/files/postgresql12.in new file mode 100644 --- /dev/null +++ b/databases/postgresql12-server/files/postgresql12.in @@ -0,0 +1,115 @@ +#!/bin/sh + +# PROVIDE: postgresql%%PG_SUFFIX%% +# REQUIRE: DAEMON +# KEYWORD: shutdown +# +# Add the following line to /etc/rc.conf to enable PostgreSQL: +# +# postgresql%%PG_SUFFIX%%_enable="YES" +# # optional +# postgresql%%PG_SUFFIX%%_data="/var/db/%%PG_USER%%/data%%PG_SUFFIX%%" +# postgresql%%PG_SUFFIX%%_flags="-w -s -m fast" +# postgresql%%PG_SUFFIX%%_initdb_flags="--encoding=utf-8 --lc-collate=C" +# postgresql%%PG_SUFFIX%%_login_class="default" +# postgresql%%PG_SUFFIX%%_profiles="" +# +# See %%PREFIX%%/share/doc/postgresql%%PG_SUFFIX%%/README-server for more info +# +# This scripts takes one of the following commands: +# +# start stop restart reload status initdb +# +# For postmaster startup options, edit ${postgresql%%PG_SUFFIX%%_data}/postgresql.conf + +command=%%PREFIX%%/libexec/postgresql%%PG_SUFFIX%%/pg_ctl + +. /etc/rc.subr + +load_rc_config postgresql%%PG_SUFFIX%% + +# set defaults +postgresql%%PG_SUFFIX%%_enable=${postgresql%%PG_SUFFIX%%_enable:-"NO"} +postgresql%%PG_SUFFIX%%_flags=${postgresql%%PG_SUFFIX%%_flags:-"-w -s -m fast"} +postgresql%%PG_SUFFIX%%_user=${postgresql%%PG_SUFFIX%%_user:-"%%PG_USER%%"} +eval postgresql%%PG_SUFFIX%%_data=${postgresql%%PG_SUFFIX%%_data:-"~${postgresql%%PG_SUFFIX%%_user}/data%%PG_SUFFIX%%"} +postgresql%%PG_SUFFIX%%_login_class=${postgresql%%PG_SUFFIX%%_login_class:-"default"} +postgresql%%PG_SUFFIX%%_initdb_flags=${postgresql%%PG_SUFFIX%%_initdb_flags:-"--encoding=utf-8 --lc-collate=C"} + +name=postgresql%%PG_SUFFIX%% +rcvar=${name}_enable +extra_commands="reload initdb" + +start_cmd="${name}_command start" +stop_cmd="${name}_command stop" +restart_cmd="${name}_command restart" +reload_cmd="${name}_command reload" +status_cmd="${name}_command status" +promote_cmd="${name}_command promote" + +initdb_cmd="${name}_initdb" + +su_cmd="/usr/bin/su" + +if [ -n "$2" ]; then + profile="$2" + if [ "x${postgresql%%PG_SUFFIX%%_profiles}" != "x" ]; then + eval ${name}_data="\${${name}_${profile}_data:-}" + if [ "x${postgresql%%PG_SUFFIX%%_data}" = "x" ]; then + echo "You must define a data directory (${name}_${profile}_data)" + exit 1 + fi + eval ${name}_enable="\${${name}_${profile}_enable:-\${${name}_enable}}" + eval ${name}_data="\${${name}_${profile}_data:-\${${name}_data}}" + eval ${name}_flags="\${${name}_${profile}_flags:-\${${name}_flags}}" + eval ${name}_initdb_flags="\${${name}_${profile}_initdb_flags:-\${${name}_initdb_flags}}" + fi +else + if [ "x${postgresql%%PG_SUFFIX%%_profiles}" != "x" -a "x$1" != "x" ]; then + for profile in ${postgresql%%PG_SUFFIX%%_profiles}; do + eval _enable="\${${name}_${profile}_enable}" + case "x${_enable:-${postgresql%%PG_SUFFIX%%_enable}}" in + x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee]) + continue + ;; + x[Yy][Ee][Ss]) + ;; + *) + if test -z "$_enable"; then + _var=${name}_enable + else + _var=${name}_"${profile}"_enable + fi + echo "Bad value" \ + "'${_enable:-${postgresql%%PG_SUFFIX%%_enable}}'" \ + "for ${_var}. " \ + "Profile ${profile} skipped." + continue + ;; + esac + echo "===> ${name} profile: ${profile}" + %%PREFIX%%/etc/rc.d/${name} $1 ${profile} + retcode="$?" + if [ "0${retcode}" -ne 0 ]; then + failed="${profile} (${retcode}) ${failed:-}" + else + success="${profile} ${success:-}" + fi + done + exit 0 + fi +fi + +command_args="-D ${postgresql%%PG_SUFFIX%%_data} ${postgresql%%PG_SUFFIX%%_flags}" + +postgresql%%PG_SUFFIX%%_command() +{ + ${su_cmd} -l ${postgresql%%PG_SUFFIX%%_user} -c "exec ${command} ${command_args} ${rc_arg}" +} + +postgresql%%PG_SUFFIX%%_initdb() +{ + ${su_cmd} -l -c ${postgresql%%PG_SUFFIX%%_login_class} ${postgresql%%PG_SUFFIX%%_user} -c "exec %%PREFIX%%/libexec/${name}/initdb ${postgresql%%PG_SUFFIX%%_initdb_flags} -D ${postgresql%%PG_SUFFIX%%_data} -U ${postgresql%%PG_SUFFIX%%_user}" +} + +run_rc_command "$1" diff --git a/databases/postgresql12-server/pkg-plist-contrib b/databases/postgresql12-server/pkg-plist-contrib --- a/databases/postgresql12-server/pkg-plist-contrib +++ b/databases/postgresql12-server/pkg-plist-contrib @@ -1,57 +1,57 @@ -bin/oid2name -bin/pg_standby -bin/vacuumlo -include/postgresql/server/extension/cube/cubedata.h -include/postgresql/server/extension/hstore/hstore.h -include/postgresql/server/extension/isn/isn.h -include/postgresql/server/extension/ltree/ltree.h -include/postgresql/server/extension/seg/segdata.h -lib/postgresql/_int.so -lib/postgresql/adminpack.so -lib/postgresql/amcheck.so -lib/postgresql/auth_delay.so -lib/postgresql/auto_explain.so -lib/postgresql/autoinc.so -lib/postgresql/bloom.so -lib/postgresql/btree_gin.so -lib/postgresql/btree_gist.so -lib/postgresql/citext.so -lib/postgresql/cube.so -lib/postgresql/dblink.so -lib/postgresql/dict_int.so -lib/postgresql/dict_xsyn.so -lib/postgresql/earthdistance.so -lib/postgresql/file_fdw.so -lib/postgresql/fuzzystrmatch.so -lib/postgresql/hstore.so -lib/postgresql/insert_username.so -lib/postgresql/isn.so -lib/postgresql/lo.so -lib/postgresql/ltree.so -lib/postgresql/moddatetime.so -lib/postgresql/pageinspect.so -lib/postgresql/passwordcheck.so -lib/postgresql/pg_buffercache.so -lib/postgresql/pg_freespacemap.so -lib/postgresql/pg_prewarm.so -lib/postgresql/pg_stat_statements.so -lib/postgresql/pg_trgm.so -lib/postgresql/pg_visibility.so -lib/postgresql/pgcrypto.so -lib/postgresql/pgrowlocks.so -lib/postgresql/pgstattuple.so -%%XML%%lib/postgresql/pgxml.so -lib/postgresql/postgres_fdw.so -lib/postgresql/refint.so -lib/postgresql/seg.so -%%OPENSSL%%lib/postgresql/sslinfo.so -lib/postgresql/tablefunc.so -lib/postgresql/tcn.so -lib/postgresql/test_decoding.so -lib/postgresql/tsm_system_rows.so -lib/postgresql/tsm_system_time.so -lib/postgresql/unaccent.so -lib/postgresql/uuid-ossp.so +libexec/postgresql%%PG_SUFFIX%%/oid2name +libexec/postgresql%%PG_SUFFIX%%/pg_standby +libexec/postgresql%%PG_SUFFIX%%/vacuumlo +include/postgresql%%PG_SUFFIX%%/server/extension/cube/cubedata.h +include/postgresql%%PG_SUFFIX%%/server/extension/hstore/hstore.h +include/postgresql%%PG_SUFFIX%%/server/extension/isn/isn.h +include/postgresql%%PG_SUFFIX%%/server/extension/ltree/ltree.h +include/postgresql%%PG_SUFFIX%%/server/extension/seg/segdata.h +lib/postgresql%%PG_SUFFIX%%/_int.so +lib/postgresql%%PG_SUFFIX%%/adminpack.so +lib/postgresql%%PG_SUFFIX%%/amcheck.so +lib/postgresql%%PG_SUFFIX%%/auth_delay.so +lib/postgresql%%PG_SUFFIX%%/auto_explain.so +lib/postgresql%%PG_SUFFIX%%/autoinc.so +lib/postgresql%%PG_SUFFIX%%/bloom.so +lib/postgresql%%PG_SUFFIX%%/btree_gin.so +lib/postgresql%%PG_SUFFIX%%/btree_gist.so +lib/postgresql%%PG_SUFFIX%%/citext.so +lib/postgresql%%PG_SUFFIX%%/cube.so +lib/postgresql%%PG_SUFFIX%%/dblink.so +lib/postgresql%%PG_SUFFIX%%/dict_int.so +lib/postgresql%%PG_SUFFIX%%/dict_xsyn.so +lib/postgresql%%PG_SUFFIX%%/earthdistance.so +lib/postgresql%%PG_SUFFIX%%/file_fdw.so +lib/postgresql%%PG_SUFFIX%%/fuzzystrmatch.so +lib/postgresql%%PG_SUFFIX%%/hstore.so +lib/postgresql%%PG_SUFFIX%%/insert_username.so +lib/postgresql%%PG_SUFFIX%%/isn.so +lib/postgresql%%PG_SUFFIX%%/lo.so +lib/postgresql%%PG_SUFFIX%%/ltree.so +lib/postgresql%%PG_SUFFIX%%/moddatetime.so +lib/postgresql%%PG_SUFFIX%%/pageinspect.so +lib/postgresql%%PG_SUFFIX%%/passwordcheck.so +lib/postgresql%%PG_SUFFIX%%/pg_buffercache.so +lib/postgresql%%PG_SUFFIX%%/pg_freespacemap.so +lib/postgresql%%PG_SUFFIX%%/pg_prewarm.so +lib/postgresql%%PG_SUFFIX%%/pg_stat_statements.so +lib/postgresql%%PG_SUFFIX%%/pg_trgm.so +lib/postgresql%%PG_SUFFIX%%/pg_visibility.so +lib/postgresql%%PG_SUFFIX%%/pgcrypto.so +lib/postgresql%%PG_SUFFIX%%/pgrowlocks.so +lib/postgresql%%PG_SUFFIX%%/pgstattuple.so +%%XML%%lib/postgresql%%PG_SUFFIX%%/pgxml.so +lib/postgresql%%PG_SUFFIX%%/postgres_fdw.so +lib/postgresql%%PG_SUFFIX%%/refint.so +lib/postgresql%%PG_SUFFIX%%/seg.so +%%OPENSSL%%lib/postgresql%%PG_SUFFIX%%/sslinfo.so +lib/postgresql%%PG_SUFFIX%%/tablefunc.so +lib/postgresql%%PG_SUFFIX%%/tcn.so +lib/postgresql%%PG_SUFFIX%%/test_decoding.so +lib/postgresql%%PG_SUFFIX%%/tsm_system_rows.so +lib/postgresql%%PG_SUFFIX%%/tsm_system_time.so +lib/postgresql%%PG_SUFFIX%%/unaccent.so +lib/postgresql%%PG_SUFFIX%%/uuid-ossp.so %%PORTDOCS%%%%DOCSDIR%%/README-contrib %%PORTDOCS%%%%DOCSDIR%%/extension/README %%PORTDOCS%%%%DOCSDIR%%/extension/autoinc.example diff --git a/databases/postgresql12-server/pkg-plist-plperl b/databases/postgresql12-server/pkg-plist-plperl --- a/databases/postgresql12-server/pkg-plist-plperl +++ b/databases/postgresql12-server/pkg-plist-plperl @@ -1,6 +1,6 @@ -include/postgresql/server/plperl.h -include/postgresql/server/plperl_helpers.h -include/postgresql/server/ppport.h +include/postgresql%%PG_SUFFIX%%/server/plperl.h +include/postgresql%%PG_SUFFIX%%/server/plperl_helpers.h +include/postgresql%%PG_SUFFIX%%/server/ppport.h %%DATADIR%%/extension/plperlu--1.0.sql %%DATADIR%%/extension/plperl.control %%DATADIR%%/extension/plperl--1.0.sql @@ -8,9 +8,9 @@ %%DATADIR%%/extension/plperlu--unpackaged--1.0.sql %%DATADIR%%/extension/plperl--unpackaged--1.0.sql %%DOCSDIR%%/README-plperl -lib/postgresql/plperl.so -lib/postgresql/hstore_plperl.so -lib/postgresql/jsonb_plperl.so +lib/postgresql%%PG_SUFFIX%%/plperl.so +lib/postgresql%%PG_SUFFIX%%/hstore_plperl.so +lib/postgresql%%PG_SUFFIX%%/jsonb_plperl.so %%DATADIR%%/extension/hstore_plperl--1.0.sql %%DATADIR%%/extension/hstore_plperl.control %%DATADIR%%/extension/hstore_plperlu--1.0.sql diff --git a/databases/postgresql12-server/pkg-plist-plpython b/databases/postgresql12-server/pkg-plist-plpython --- a/databases/postgresql12-server/pkg-plist-plpython +++ b/databases/postgresql12-server/pkg-plist-plpython @@ -1,20 +1,20 @@ -include/postgresql/server/plpy_cursorobject.h -include/postgresql/server/plpy_elog.h -include/postgresql/server/plpy_exec.h -include/postgresql/server/plpy_main.h -include/postgresql/server/plpy_planobject.h -include/postgresql/server/plpy_plpymodule.h -include/postgresql/server/plpy_procedure.h -include/postgresql/server/plpy_resultobject.h -include/postgresql/server/plpy_spi.h -include/postgresql/server/plpy_subxactobject.h -include/postgresql/server/plpy_typeio.h -include/postgresql/server/plpy_util.h -include/postgresql/server/plpython.h -lib/postgresql/pgxs/src/pl/plpython/regress-python3-mangle.mk +include/postgresql%%PG_SUFFIX%%/server/plpy_cursorobject.h +include/postgresql%%PG_SUFFIX%%/server/plpy_elog.h +include/postgresql%%PG_SUFFIX%%/server/plpy_exec.h +include/postgresql%%PG_SUFFIX%%/server/plpy_main.h +include/postgresql%%PG_SUFFIX%%/server/plpy_planobject.h +include/postgresql%%PG_SUFFIX%%/server/plpy_plpymodule.h +include/postgresql%%PG_SUFFIX%%/server/plpy_procedure.h +include/postgresql%%PG_SUFFIX%%/server/plpy_resultobject.h +include/postgresql%%PG_SUFFIX%%/server/plpy_spi.h +include/postgresql%%PG_SUFFIX%%/server/plpy_subxactobject.h +include/postgresql%%PG_SUFFIX%%/server/plpy_typeio.h +include/postgresql%%PG_SUFFIX%%/server/plpy_util.h +include/postgresql%%PG_SUFFIX%%/server/plpython.h +lib/postgresql%%PG_SUFFIX%%/pgxs/src/pl/plpython/regress-python3-mangle.mk %%DOCSDIR%%/README-plpython -%%PYTHON2%%lib/postgresql/plpython2.so -%%PYTHON3%%lib/postgresql/plpython3.so +%%PYTHON2%%lib/postgresql%%PG_SUFFIX%%/plpython2.so +%%PYTHON3%%lib/postgresql%%PG_SUFFIX%%/plpython3.so %%PYTHON2%%%%DATADIR%%/extension/plpython2u--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpython2u--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpython2u.control @@ -24,9 +24,9 @@ %%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu.control -lib/postgresql/hstore_plpython3.so -lib/postgresql/jsonb_plpython3.so -lib/postgresql/ltree_plpython3.so +lib/postgresql%%PG_SUFFIX%%/hstore_plpython3.so +lib/postgresql%%PG_SUFFIX%%/jsonb_plpython3.so +lib/postgresql%%PG_SUFFIX%%/ltree_plpython3.so %%DATADIR%%/extension/hstore_plpython2u--1.0.sql %%DATADIR%%/extension/hstore_plpython2u.control %%DATADIR%%/extension/hstore_plpython3u--1.0.sql diff --git a/databases/postgresql12-server/pkg-plist-pltcl b/databases/postgresql12-server/pkg-plist-pltcl --- a/databases/postgresql12-server/pkg-plist-pltcl +++ b/databases/postgresql12-server/pkg-plist-pltcl @@ -5,4 +5,4 @@ %%DATADIR%%/extension/pltcl--unpackaged--1.0.sql %%DATADIR%%/extension/pltclu--unpackaged--1.0.sql %%DOCSDIR%%/README-pltcl -lib/postgresql/pltcl.so +lib/postgresql%%PG_SUFFIX%%/pltcl.so diff --git a/databases/postgresql12-server/pkg-plist-server b/databases/postgresql12-server/pkg-plist-server --- a/databases/postgresql12-server/pkg-plist-server +++ b/databases/postgresql12-server/pkg-plist-server @@ -1,725 +1,725 @@ -bin/initdb -bin/pg_archivecleanup -bin/pg_basebackup -bin/pg_checksums -bin/pg_controldata -bin/pg_ctl -bin/pg_receivewal -bin/pg_recvlogical -bin/pg_resetwal -bin/pg_rewind -bin/pg_test_fsync -bin/pg_test_timing -bin/pg_upgrade -bin/pg_waldump -bin/postgres -bin/postmaster -etc/periodic/daily/502.pgsql -include/postgresql/server/plpgsql.h -lib/libpgcommon_shlib.a -lib/postgresql/ascii_and_mic.so -lib/postgresql/cyrillic_and_mic.so -lib/postgresql/dict_snowball.so -lib/postgresql/euc2004_sjis2004.so -lib/postgresql/euc_cn_and_mic.so -lib/postgresql/euc_jp_and_sjis.so -lib/postgresql/euc_kr_and_mic.so -lib/postgresql/euc_tw_and_big5.so -lib/postgresql/latin2_and_win1250.so -lib/postgresql/latin_and_mic.so -lib/postgresql/libpqwalreceiver.so -lib/postgresql/pgoutput.so -lib/postgresql/plpgsql.so -lib/postgresql/utf8_and_ascii.so -lib/postgresql/utf8_and_big5.so -lib/postgresql/utf8_and_cyrillic.so -lib/postgresql/utf8_and_euc2004.so -lib/postgresql/utf8_and_euc_cn.so -lib/postgresql/utf8_and_euc_jp.so -lib/postgresql/utf8_and_euc_kr.so -lib/postgresql/utf8_and_euc_tw.so -lib/postgresql/utf8_and_gb18030.so -lib/postgresql/utf8_and_gbk.so -lib/postgresql/utf8_and_iso8859.so -lib/postgresql/utf8_and_iso8859_1.so -lib/postgresql/utf8_and_johab.so -lib/postgresql/utf8_and_sjis.so -lib/postgresql/utf8_and_sjis2004.so -lib/postgresql/utf8_and_uhc.so -lib/postgresql/utf8_and_win.so -%%LLVM%%lib/postgresql/bitcode/postgres.index.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_inclusion.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_minmax.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_pageops.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_revmap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_tuple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_validate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_xlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/bufmask.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/heaptuple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/indextuple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/printsimple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/printtup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/relation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/reloptions.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/scankey.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/session.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/tupconvert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/tupdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginarrayproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginbtree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginbulk.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/gindatapage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginentrypage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginfast.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginget.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/gininsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginlogic.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginpostinglist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginutil.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginvacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginxlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistbuild.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistbuildbuffers.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistget.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistsplit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistutil.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistvacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistxlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hash_xlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashfunc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashinsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashovfl.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashpage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashsearch.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashsort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashutil.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/heapam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/heapam_handler.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/heapam_visibility.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/hio.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/pruneheap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/rewriteheap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/syncscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/tuptoaster.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/vacuumlazy.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/visibilitymap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/index/amapi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/index/amvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/index/genam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/index/indexam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtcompare.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtinsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtpage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtsearch.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtsort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtsplitloc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtxlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/brindesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/clogdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/committsdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/dbasedesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/genericdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/gindesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/gistdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/hashdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/heapdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/logicalmsgdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/mxactdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/nbtdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/relmapdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/replorigindesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/seqdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/smgrdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/spgdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/standbydesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/tblspcdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/xactdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/xlogdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgdoinsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spginsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgkdtreeproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgquadtreeproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgtextproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgvacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgxlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/table/table.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/table/tableam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/table/tableamapi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/tablesample/bernoulli.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/tablesample/system.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/tablesample/tablesample.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/clog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/commit_ts.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/generic_xlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/multixact.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/parallel.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/rmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/slru.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/subtrans.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/timeline.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/transam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/twophase.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/twophase_rmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/varsup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xact.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlogarchive.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlogfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xloginsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlogreader.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlogutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/bootstrap/bootparse.bc -%%LLVM%%lib/postgresql/bitcode/postgres/bootstrap/bootstrap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/aclchk.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/catalog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/dependency.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/heap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/index.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/indexing.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/namespace.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/objectaccess.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/objectaddress.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/partition.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_aggregate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_collation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_constraint.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_conversion.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_db_role_setting.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_depend.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_enum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_inherits.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_largeobject.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_namespace.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_operator.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_proc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_publication.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_range.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_shdepend.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_subscription.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_type.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/storage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/toasting.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/aggregatecmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/alter.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/amcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/analyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/async.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/cluster.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/collationcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/comment.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/constraint.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/conversioncmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/copy.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/createas.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/dbcommands.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/define.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/discard.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/dropcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/event_trigger.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/explain.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/extension.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/foreigncmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/functioncmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/indexcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/lockcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/matview.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/opclasscmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/operatorcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/policy.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/portalcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/prepare.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/proclang.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/publicationcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/schemacmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/seclabel.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/sequence.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/statscmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/subscriptioncmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/tablecmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/tablespace.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/trigger.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/tsearchcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/typecmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/user.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/vacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/variable.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/view.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execAmi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execCurrent.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execExpr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execExprInterp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execGrouping.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execIndexing.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execJunk.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execMain.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execParallel.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execPartition.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execProcnode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execReplication.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execSRF.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execScan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execTuples.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execUtils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/functions.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/instrument.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeAgg.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeAppend.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeBitmapAnd.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeBitmapHeapscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeBitmapIndexscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeBitmapOr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeCtescan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeCustom.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeForeignscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeFunctionscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeGather.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeGatherMerge.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeGroup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeHash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeHashjoin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeIndexonlyscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeIndexscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeLimit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeLockRows.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeMaterial.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeMergeAppend.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeMergejoin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeModifyTable.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeNamedtuplestorescan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeNestloop.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeProjectSet.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeRecursiveunion.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeResult.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSamplescan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSeqscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSetOp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSubplan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSubqueryscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeTableFuncscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeTidscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeUnique.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeValuesscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeWindowAgg.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeWorktablescan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/spi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/tqueue.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/tstoreReceiver.bc -%%LLVM%%lib/postgresql/bitcode/postgres/foreign/foreign.bc -%%LLVM%%lib/postgresql/bitcode/postgres/jit/jit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/binaryheap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/bipartite_match.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/bloomfilter.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/dshash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/hyperloglog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/ilist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/integerset.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/knapsack.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/pairingheap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/rbtree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/stringinfo.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/auth-scram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/auth.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/be-fsstubs.bc -%%LLVM%%%%GSSAPI%%lib/postgresql/bitcode/postgres/libpq/be-gssapi-common.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/be-secure-common.bc -%%LLVM%%%%GSSAPI%%lib/postgresql/bitcode/postgres/libpq/be-secure-gssapi.bc -%%LLVM%%%%SSL%%lib/postgresql/bitcode/postgres/libpq/be-secure-openssl.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/be-secure.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/crypt.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/hba.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/ifaddr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/pqcomm.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/pqformat.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/pqmq.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/pqsignal.bc -%%LLVM%%lib/postgresql/bitcode/postgres/main/main.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/bitmapset.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/copyfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/equalfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/extensible.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/list.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/makefuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/nodeFuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/nodes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/outfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/params.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/print.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/read.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/readfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/tidbitmap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/value.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_copy.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_cx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_erx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_eval.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_main.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_misc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_mutation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_ox1.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_ox2.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_pmx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_pool.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_px.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_random.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_recombination.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_selection.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/allpaths.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/clausesel.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/costsize.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/equivclass.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/indxpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/joinpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/joinrels.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/pathkeys.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/tidpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/analyzejoins.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/createplan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/initsplan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/planagg.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/planmain.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/planner.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/setrefs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/subselect.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/prep/prepjointree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/prep/prepqual.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/prep/preptlist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/prep/prepunion.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/appendinfo.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/clauses.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/inherit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/joininfo.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/orclauses.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/paramassign.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/pathnode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/placeholder.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/plancat.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/predtest.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/relnode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/restrictinfo.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/tlist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/var.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/analyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/gram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_agg.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_clause.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_coerce.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_collate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_cte.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_enr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_expr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_func.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_node.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_oper.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_param.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_relation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_target.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_type.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_utilcmd.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/scan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/scansup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/partitioning/partbounds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/partitioning/partdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/partitioning/partprune.bc -%%LLVM%%lib/postgresql/bitcode/postgres/port/atomics.bc -%%LLVM%%lib/postgresql/bitcode/postgres/port/pg_sema.bc -%%LLVM%%lib/postgresql/bitcode/postgres/port/pg_shmem.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/autovacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/bgworker.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/bgwriter.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/checkpointer.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/fork_process.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/pgarch.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/pgstat.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/postmaster.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/startup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/syslogger.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/walwriter.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regcomp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regerror.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regexec.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regexport.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regfree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regprefix.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/basebackup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/decode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/launcher.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/logical.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/logicalfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/message.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/origin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/proto.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/relation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/reorderbuffer.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/snapbuild.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/tablesync.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/worker.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/repl_gram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/slot.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/slotfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/syncrep.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/syncrep_gram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/walreceiver.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/walreceiverfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/walsender.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteDefine.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteHandler.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteManip.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteRemove.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteSupport.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rowsecurity.bc -%%LLVM%%lib/postgresql/bitcode/postgres/statistics/dependencies.bc -%%LLVM%%lib/postgresql/bitcode/postgres/statistics/extended_stats.bc -%%LLVM%%lib/postgresql/bitcode/postgres/statistics/mcv.bc -%%LLVM%%lib/postgresql/bitcode/postgres/statistics/mvdistinct.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/buf_init.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/buf_table.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/bufmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/freelist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/localbuf.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/buffile.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/copydir.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/fd.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/reinit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/sharedfileset.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/freespace/freespace.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/freespace/fsmpage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/freespace/indexfsm.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/barrier.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/dsm.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/dsm_impl.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/ipc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/ipci.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/latch.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/pmsignal.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/procarray.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/procsignal.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/shm_mq.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/shm_toc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/shmem.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/shmqueue.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/signalfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/sinval.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/sinvaladt.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/standby.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/large_object/inv_api.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/condition_variable.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/deadlock.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/lmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/lock.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/lwlock.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/lwlocknames.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/predicate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/proc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/s_lock.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/spin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/page/bufpage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/page/checksum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/page/itemptr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/smgr/md.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/smgr/smgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/sync/sync.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/postgres.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/dest.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/fastpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/pquery.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/utility.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict_ispell.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict_simple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict_synonym.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict_thesaurus.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/regis.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/spell.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/to_tsany.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_locale.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_parse.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_typanalyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_utils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/wparser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/wparser_def.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/acl.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/amutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/array_expanded.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/array_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/array_typanalyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/array_userfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/arrayfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/arrayutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/ascii.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/bool.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/cash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/char.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/cryptohashes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/date.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/datetime.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/datum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/dbsize.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/domains.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/encode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/enum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/expandeddatum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/expandedrecord.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/float.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/format_type.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/formatting.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/genfile.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/geo_ops.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/geo_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/geo_spgist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/inet_cidr_ntop.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/inet_net_pton.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/int.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/int8.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/json.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonb.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonb_gin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonb_op.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonb_util.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonpath_exec.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonpath_gram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/like.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/like_support.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/lockfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/mac.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/mac8.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/misc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/name.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/network.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/network_gist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/network_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/network_spgist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/numeric.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/numutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/oid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/oracle_compat.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/orderedsetaggs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/partitionfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pg_locale.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pg_lsn.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pg_upgrade_support.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pgstatfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pseudotypes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/quote.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes_gist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes_spgist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes_typanalyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/regexp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/regproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/ri_triggers.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rowtypes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/ruleutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/timestamp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/trigfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsginidx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsgistidx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_cleanup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_gist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_op.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_rewrite.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_util.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsrank.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsvector.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsvector_op.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsvector_parser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/txid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/uuid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/varbit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/varchar.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/varlena.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/version.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/windowfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/xid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/xml.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/attoptcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/catcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/evtcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/inval.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/lsyscache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/partcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/plancache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/relcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/relfilenodemap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/relmapper.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/spccache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/syscache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/ts_cache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/typcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/error/assert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/error/elog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/fmgr/dfmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/fmgr/fmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/fmgr/funcapi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/fmgrtab.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/hash/dynahash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/hash/hashfn.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/hash/pg_crc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/init/globals.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/init/miscinit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/init/postinit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/conv.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/encnames.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/mbutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/wchar.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/wstrcmp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/wstrncmp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/guc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/help_config.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/pg_config.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/pg_controldata.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/pg_rusage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/ps_status.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/queryenvironment.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/rls.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/sampling.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/superuser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/timeout.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/tzparser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/aset.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/dsa.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/freepage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/generation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/mcxt.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/memdebug.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/portalmem.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/slab.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/resowner/resowner.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/logtape.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/sharedtuplestore.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/sortsupport.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/tuplesort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/tuplestore.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/time/combocid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/time/snapmgr.bc -%%LLVM%%lib/postgresql/llvmjit.so -%%LLVM%%lib/postgresql/llvmjit_types.bc -lib/libpgcommon.a +libexec/postgresql%%PG_SUFFIX%%/initdb +libexec/postgresql%%PG_SUFFIX%%/pg_archivecleanup +libexec/postgresql%%PG_SUFFIX%%/pg_basebackup +libexec/postgresql%%PG_SUFFIX%%/pg_checksums +libexec/postgresql%%PG_SUFFIX%%/pg_controldata +libexec/postgresql%%PG_SUFFIX%%/pg_ctl +libexec/postgresql%%PG_SUFFIX%%/pg_receivewal +libexec/postgresql%%PG_SUFFIX%%/pg_recvlogical +libexec/postgresql%%PG_SUFFIX%%/pg_resetwal +libexec/postgresql%%PG_SUFFIX%%/pg_rewind +libexec/postgresql%%PG_SUFFIX%%/pg_test_fsync +libexec/postgresql%%PG_SUFFIX%%/pg_test_timing +libexec/postgresql%%PG_SUFFIX%%/pg_upgrade +libexec/postgresql%%PG_SUFFIX%%/pg_waldump +libexec/postgresql%%PG_SUFFIX%%/postgres +libexec/postgresql%%PG_SUFFIX%%/postmaster +etc/periodic/daily/502.postgresql%%PG_SUFFIX%% +include/postgresql%%PG_SUFFIX%%/server/plpgsql.h +lib/postgresql%%PG_SUFFIX%%/libpgcommon_shlib.a +lib/postgresql%%PG_SUFFIX%%/ascii_and_mic.so +lib/postgresql%%PG_SUFFIX%%/cyrillic_and_mic.so +lib/postgresql%%PG_SUFFIX%%/dict_snowball.so +lib/postgresql%%PG_SUFFIX%%/euc2004_sjis2004.so +lib/postgresql%%PG_SUFFIX%%/euc_cn_and_mic.so +lib/postgresql%%PG_SUFFIX%%/euc_jp_and_sjis.so +lib/postgresql%%PG_SUFFIX%%/euc_kr_and_mic.so +lib/postgresql%%PG_SUFFIX%%/euc_tw_and_big5.so +lib/postgresql%%PG_SUFFIX%%/latin2_and_win1250.so +lib/postgresql%%PG_SUFFIX%%/latin_and_mic.so +lib/postgresql%%PG_SUFFIX%%/libpqwalreceiver.so +lib/postgresql%%PG_SUFFIX%%/pgoutput.so +lib/postgresql%%PG_SUFFIX%%/plpgsql.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_ascii.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_big5.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_cyrillic.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc2004.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_cn.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_jp.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_kr.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_tw.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_gb18030.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_gbk.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_iso8859.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_iso8859_1.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_johab.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_sjis.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_sjis2004.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_uhc.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_win.so +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres.index.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_inclusion.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_minmax.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_pageops.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_revmap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_tuple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_validate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_xlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/bufmask.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/heaptuple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/indextuple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/printsimple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/printtup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/relation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/reloptions.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/scankey.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/session.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/tupconvert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/tupdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginarrayproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginbtree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginbulk.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/gindatapage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginentrypage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginfast.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginget.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/gininsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginlogic.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginpostinglist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginutil.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginvacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginxlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistbuild.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistbuildbuffers.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistget.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistsplit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistutil.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistvacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistxlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hash_xlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashfunc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashinsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashovfl.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashpage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashsearch.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashsort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashutil.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/heapam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/heapam_handler.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/heapam_visibility.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/hio.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/pruneheap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/rewriteheap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/syncscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/tuptoaster.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/vacuumlazy.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/visibilitymap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/index/amapi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/index/amvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/index/genam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/index/indexam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtcompare.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtinsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtpage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtsearch.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtsort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtsplitloc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtxlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/brindesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/clogdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/committsdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/dbasedesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/genericdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/gindesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/gistdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/hashdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/heapdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/logicalmsgdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/mxactdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/nbtdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/relmapdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/replorigindesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/seqdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/smgrdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/spgdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/standbydesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/tblspcdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/xactdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/xlogdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgdoinsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spginsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgkdtreeproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgquadtreeproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgtextproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgvacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgxlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/table/table.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/table/tableam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/table/tableamapi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/tablesample/bernoulli.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/tablesample/system.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/tablesample/tablesample.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/clog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/commit_ts.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/generic_xlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/multixact.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/parallel.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/rmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/slru.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/subtrans.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/timeline.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/transam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/twophase.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/twophase_rmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/varsup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xact.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlogarchive.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlogfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xloginsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlogreader.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlogutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/bootstrap/bootparse.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/bootstrap/bootstrap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/aclchk.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/catalog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/dependency.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/heap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/index.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/indexing.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/namespace.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/objectaccess.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/objectaddress.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/partition.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_aggregate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_collation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_constraint.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_conversion.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_db_role_setting.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_depend.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_enum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_inherits.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_largeobject.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_namespace.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_operator.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_proc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_publication.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_range.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_shdepend.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_subscription.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_type.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/storage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/toasting.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/aggregatecmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/alter.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/amcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/analyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/async.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/cluster.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/collationcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/comment.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/constraint.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/conversioncmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/copy.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/createas.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/dbcommands.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/define.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/discard.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/dropcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/event_trigger.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/explain.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/extension.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/foreigncmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/functioncmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/indexcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/lockcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/matview.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/opclasscmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/operatorcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/policy.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/portalcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/prepare.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/proclang.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/publicationcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/schemacmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/seclabel.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/sequence.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/statscmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/subscriptioncmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/tablecmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/tablespace.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/trigger.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/tsearchcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/typecmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/user.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/vacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/variable.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/view.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execAmi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execCurrent.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execExpr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execExprInterp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execGrouping.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execIndexing.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execJunk.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execMain.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execParallel.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execPartition.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execProcnode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execReplication.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execSRF.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execScan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execTuples.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execUtils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/functions.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/instrument.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeAgg.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeAppend.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeBitmapAnd.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeBitmapHeapscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeBitmapIndexscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeBitmapOr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeCtescan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeCustom.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeForeignscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeFunctionscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeGather.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeGatherMerge.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeGroup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeHash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeHashjoin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeIndexonlyscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeIndexscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeLimit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeLockRows.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeMaterial.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeMergeAppend.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeMergejoin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeModifyTable.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeNamedtuplestorescan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeNestloop.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeProjectSet.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeRecursiveunion.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeResult.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSamplescan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSeqscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSetOp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSubplan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSubqueryscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeTableFuncscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeTidscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeUnique.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeValuesscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeWindowAgg.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeWorktablescan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/spi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/tqueue.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/tstoreReceiver.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/foreign/foreign.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/jit/jit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/binaryheap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/bipartite_match.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/bloomfilter.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/dshash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/hyperloglog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/ilist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/integerset.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/knapsack.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/pairingheap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/rbtree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/stringinfo.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/auth-scram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/auth.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-fsstubs.bc +%%LLVM%%%%GSSAPI%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-gssapi-common.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-secure-common.bc +%%LLVM%%%%GSSAPI%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-secure-gssapi.bc +%%LLVM%%%%SSL%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-secure-openssl.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-secure.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/crypt.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/hba.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/ifaddr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/pqcomm.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/pqformat.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/pqmq.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/pqsignal.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/main/main.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/bitmapset.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/copyfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/equalfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/extensible.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/list.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/makefuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/nodeFuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/nodes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/outfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/params.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/print.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/read.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/readfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/tidbitmap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/value.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_copy.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_cx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_erx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_eval.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_main.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_misc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_mutation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_ox1.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_ox2.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_pmx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_pool.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_px.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_random.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_recombination.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_selection.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/allpaths.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/clausesel.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/costsize.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/equivclass.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/indxpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/joinpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/joinrels.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/pathkeys.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/tidpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/analyzejoins.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/createplan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/initsplan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/planagg.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/planmain.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/planner.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/setrefs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/subselect.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/prep/prepjointree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/prep/prepqual.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/prep/preptlist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/prep/prepunion.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/appendinfo.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/clauses.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/inherit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/joininfo.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/orclauses.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/paramassign.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/pathnode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/placeholder.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/plancat.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/predtest.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/relnode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/restrictinfo.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/tlist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/var.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/analyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/gram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_agg.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_clause.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_coerce.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_collate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_cte.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_enr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_expr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_func.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_node.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_oper.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_param.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_relation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_target.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_type.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_utilcmd.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/scan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/scansup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/partitioning/partbounds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/partitioning/partdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/partitioning/partprune.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/port/atomics.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/port/pg_sema.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/port/pg_shmem.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/autovacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/bgworker.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/bgwriter.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/checkpointer.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/fork_process.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/pgarch.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/pgstat.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/postmaster.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/startup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/syslogger.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/walwriter.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regcomp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regerror.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regexec.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regexport.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regfree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regprefix.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/basebackup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/decode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/launcher.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/logical.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/logicalfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/message.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/origin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/proto.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/relation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/reorderbuffer.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/snapbuild.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/tablesync.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/worker.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/repl_gram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/slot.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/slotfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/syncrep.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/syncrep_gram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/walreceiver.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/walreceiverfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/walsender.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteDefine.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteHandler.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteManip.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteRemove.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteSupport.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rowsecurity.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/statistics/dependencies.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/statistics/extended_stats.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/statistics/mcv.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/statistics/mvdistinct.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/buf_init.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/buf_table.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/bufmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/freelist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/localbuf.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/buffile.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/copydir.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/fd.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/reinit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/sharedfileset.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/freespace/freespace.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/freespace/fsmpage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/freespace/indexfsm.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/barrier.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/dsm.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/dsm_impl.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/ipc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/ipci.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/latch.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/pmsignal.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/procarray.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/procsignal.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/shm_mq.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/shm_toc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/shmem.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/shmqueue.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/signalfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/sinval.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/sinvaladt.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/standby.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/large_object/inv_api.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/condition_variable.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/deadlock.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/lmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/lock.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/lwlock.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/lwlocknames.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/predicate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/proc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/s_lock.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/spin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/page/bufpage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/page/checksum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/page/itemptr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/smgr/md.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/smgr/smgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/sync/sync.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/postgres.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/dest.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/fastpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/pquery.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/utility.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict_ispell.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict_simple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict_synonym.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict_thesaurus.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/regis.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/spell.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/to_tsany.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_locale.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_parse.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_typanalyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_utils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/wparser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/wparser_def.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/acl.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/amutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/array_expanded.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/array_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/array_typanalyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/array_userfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/arrayfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/arrayutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/ascii.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/bool.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/cash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/char.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/cryptohashes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/date.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/datetime.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/datum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/dbsize.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/domains.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/encode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/enum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/expandeddatum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/expandedrecord.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/float.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/format_type.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/formatting.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/genfile.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/geo_ops.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/geo_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/geo_spgist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/inet_cidr_ntop.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/inet_net_pton.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/int.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/int8.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/json.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonb.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonb_gin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonb_op.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonb_util.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonpath_exec.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonpath_gram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/like.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/like_support.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/lockfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/mac.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/mac8.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/misc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/name.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/network.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/network_gist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/network_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/network_spgist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/numeric.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/numutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/oid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/oracle_compat.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/orderedsetaggs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/partitionfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pg_locale.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pg_lsn.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pg_upgrade_support.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pgstatfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pseudotypes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/quote.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes_gist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes_spgist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes_typanalyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/regexp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/regproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/ri_triggers.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rowtypes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/ruleutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/timestamp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/trigfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsginidx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsgistidx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_cleanup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_gist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_op.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_rewrite.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_util.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsrank.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsvector.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsvector_op.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsvector_parser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/txid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/uuid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/varbit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/varchar.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/varlena.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/version.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/windowfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/xid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/xml.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/attoptcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/catcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/evtcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/inval.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/lsyscache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/partcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/plancache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/relcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/relfilenodemap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/relmapper.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/spccache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/syscache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/ts_cache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/typcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/error/assert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/error/elog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/fmgr/dfmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/fmgr/fmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/fmgr/funcapi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/fmgrtab.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/hash/dynahash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/hash/hashfn.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/hash/pg_crc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/init/globals.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/init/miscinit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/init/postinit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/conv.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/encnames.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/mbutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/wchar.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/wstrcmp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/wstrncmp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/guc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/help_config.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/pg_config.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/pg_controldata.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/pg_rusage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/ps_status.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/queryenvironment.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/rls.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/sampling.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/superuser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/timeout.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/tzparser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/aset.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/dsa.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/freepage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/generation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/mcxt.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/memdebug.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/portalmem.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/slab.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/resowner/resowner.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/logtape.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/sharedtuplestore.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/sortsupport.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/tuplesort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/tuplestore.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/time/combocid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/time/snapmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/llvmjit.so +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/llvmjit_types.bc +lib/postgresql%%PG_SUFFIX%%/libpgcommon.a %%PORTDOCS%%%%DOCSDIR%%/README-server %%DATADIR%%/errcodes.txt %%DATADIR%%/information_schema.sql @@ -734,176 +734,176 @@ %%DATADIR%%/extension/plpgsql--unpackaged--1.0.sql %%DATADIR%%/extension/plpgsql.control %%DATADIR%%/postgres.shdescription -%%NLS%%share/locale/cs/LC_MESSAGES/initdb-12.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_archivecleanup-12.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-12.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_checksums-12.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-12.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-12.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetwal-12.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-12.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_fsync-12.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_timing-12.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_upgrade-12.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_waldump-12.mo -%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-12.mo -%%NLS%%share/locale/de/LC_MESSAGES/initdb-12.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_archivecleanup-12.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-12.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_checksums-12.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-12.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-12.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_resetwal-12.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_rewind-12.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_test_fsync-12.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_test_timing-12.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_upgrade-12.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_waldump-12.mo -%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-12.mo -%%NLS%%share/locale/de/LC_MESSAGES/postgres-12.mo -%%NLS%%share/locale/es/LC_MESSAGES/initdb-12.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_archivecleanup-12.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-12.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_checksums-12.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-12.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-12.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_resetwal-12.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_rewind-12.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_test_fsync-12.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_test_timing-12.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_upgrade-12.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_waldump-12.mo -%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-12.mo -%%NLS%%share/locale/es/LC_MESSAGES/postgres-12.mo -%%NLS%%share/locale/fr/LC_MESSAGES/initdb-12.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_archivecleanup-12.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-12.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_checksums-12.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-12.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-12.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetwal-12.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-12.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_fsync-12.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_timing-12.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_upgrade-12.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_waldump-12.mo -%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-12.mo -%%NLS%%share/locale/fr/LC_MESSAGES/postgres-12.mo -%%NLS%%share/locale/he/LC_MESSAGES/pg_ctl-12.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-12.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-12.mo -%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-12.mo -%%NLS%%share/locale/it/LC_MESSAGES/postgres-12.mo -%%NLS%%share/locale/ja/LC_MESSAGES/initdb-12.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_archivecleanup-12.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_basebackup-12.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_checksums-12.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-12.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-12.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetwal-12.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_rewind-12.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_fsync-12.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_timing-12.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_upgrade-12.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_waldump-12.mo -%%NLS%%share/locale/ja/LC_MESSAGES/plpgsql-12.mo -%%NLS%%share/locale/ja/LC_MESSAGES/postgres-12.mo -%%NLS%%share/locale/ko/LC_MESSAGES/initdb-12.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_archivecleanup-12.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_basebackup-12.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_checksums-12.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_controldata-12.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_ctl-12.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_resetwal-12.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_rewind-12.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_fsync-12.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_timing-12.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_upgrade-12.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_waldump-12.mo -%%NLS%%share/locale/ko/LC_MESSAGES/plpgsql-12.mo -%%NLS%%share/locale/ko/LC_MESSAGES/postgres-12.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_controldata-12.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_ctl-12.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_fsync-12.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_timing-12.mo -%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-12.mo -%%NLS%%share/locale/pl/LC_MESSAGES/postgres-12.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-12.mo -%%NLS%%share/locale/ru/LC_MESSAGES/initdb-12.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_archivecleanup-12.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-12.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_checksums-12.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_controldata-12.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_ctl-12.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_resetwal-12.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_rewind-12.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_fsync-12.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_timing-12.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_upgrade-12.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_waldump-12.mo -%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-12.mo -%%NLS%%share/locale/ru/LC_MESSAGES/postgres-12.mo -%%NLS%%share/locale/sv/LC_MESSAGES/initdb-12.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_archivecleanup-12.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_basebackup-12.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_checksums-12.mo +%%NLS%%share/locale/cs/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/he/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo %%DATADIR%%/snowball_create.sql -%%NLS%%share/locale/sv/LC_MESSAGES/pg_controldata-12.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-12.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_resetwal-12.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_rewind-12.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_fsync-12.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_timing-12.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_upgrade-12.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_waldump-12.mo -%%NLS%%share/locale/sv/LC_MESSAGES/plpgsql-12.mo -%%NLS%%share/locale/sv/LC_MESSAGES/postgres-12.mo -%%NLS%%share/locale/tr/LC_MESSAGES/initdb-12.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_archivecleanup-12.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_basebackup-12.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_checksums-12.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_controldata-12.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_ctl-12.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_resetwal-12.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_rewind-12.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_fsync-12.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_timing-12.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_upgrade-12.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_waldump-12.mo -%%NLS%%share/locale/tr/LC_MESSAGES/plpgsql-12.mo -%%NLS%%share/locale/tr/LC_MESSAGES/postgres-12.mo -%%NLS%%share/locale/uk/LC_MESSAGES/initdb-12.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_archivecleanup-12.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_basebackup-12.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_checksums-12.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_controldata-12.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_ctl-12.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_resetwal-12.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_rewind-12.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_test_fsync-12.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_test_timing-12.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_waldump-12.mo -%%NLS%%share/locale/uk/LC_MESSAGES/plpgsql-12.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_upgrade-12.mo -%%NLS%%share/locale/uk/LC_MESSAGES/postgres-12.mo -%%NLS%%share/locale/vi/LC_MESSAGES/pg_controldata-12.mo -%%NLS%%share/locale/vi/LC_MESSAGES/pg_test_fsync-12.mo -%%NLS%%share/locale/vi/LC_MESSAGES/pg_test_timing-12.mo -%%NLS%%share/locale/vi/LC_MESSAGES/plpgsql-12.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-12.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_archivecleanup-12.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-12.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_checksums-12.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-12.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-12.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_resetwal-12.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_rewind-12.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_fsync-12.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_timing-12.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_upgrade-12.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_waldump-12.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/plpgsql-12.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/postgres-12.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo %%TZDATA%%%%DATADIR%%/timezone/Africa/Abidjan %%TZDATA%%%%DATADIR%%/timezone/Africa/Accra %%TZDATA%%%%DATADIR%%/timezone/Africa/Addis_Ababa diff --git a/databases/postgresql13-pgtcl/Makefile b/databases/postgresql13-pgtcl/Makefile deleted file mode 100644 --- a/databases/postgresql13-pgtcl/Makefile +++ /dev/null @@ -1,9 +0,0 @@ -PORTREVISION= 0 -PKGNAMESUFFIX= -postgresql13 - -CONFLICTS= pgtcl pgtcl-postgresql9[0123456] pgtcl-postgresql1[012-49]-* - -PGTCL_SLAVE= 13 -MASTERDIR= ${.CURDIR}/../pgtcl - -.include "${MASTERDIR}/Makefile" diff --git a/databases/postgresql13-plperl/Makefile b/databases/postgresql13-plperl/Makefile --- a/databases/postgresql13-plperl/Makefile +++ b/databases/postgresql13-plperl/Makefile @@ -1,29 +1,8 @@ # Created by: Palle Girgensohn -PORTNAME= postgresql -# Keep the ?=, this port is used as master by the other plperl. -PORTREVISION?= 0 -CATEGORIES= databases perl5 -PKGNAMESUFFIX?= ${WANT_PGSQL_VER:S/.//}${COMPONENT} - -MAINTAINER= pgsql@FreeBSD.org -COMMENT= Write SQL functions for PostgreSQL using Perl5 - -RUN_DEPENDS= postgres:databases/postgresql${WANT_PGSQL_VER:S/.//}-server - -MASTERDIR= ${.CURDIR}/../../databases/postgresql${WANT_PGSQL_VER:S/.//}-server - -WANT_PGSQL_VER?=13 - -USES+= perl5 readline -CONFIGURE_ARGS= --with-perl - -BUILD_DIRS= src/backend ${INSTALL_DIRS} -INSTALL_DIRS?= src/pl/plperl contrib/bool_plperl contrib/hstore_plperl contrib/jsonb_plperl -SLAVE_ONLY= yes -COMPONENT= -plperl +WANT_PGSQL_VER= 13 # this port fails to build in parallel MAKE_JOBS_UNSAFE= yes -.include "${MASTERDIR}/Makefile" +.include "${.CURDIR}/../postgresql14-plperl/Makefile" diff --git a/databases/postgresql13-plpython/Makefile b/databases/postgresql13-plpython/Makefile --- a/databases/postgresql13-plpython/Makefile +++ b/databases/postgresql13-plpython/Makefile @@ -1,28 +1,6 @@ -PORTNAME= postgresql -CATEGORIES= databases python -# Keep the ?=, it is used as master by the other plpython ports. -PORTREVISION?= 0 -PKGNAMESUFFIX?= ${WANT_PGSQL_VER:S/.//}${COMPONENT} - -MAINTAINER= pgsql@FreeBSD.org -COMMENT= Module for using Python to write SQL functions - -USES+= pgsql:${WANT_PGSQL_VER} ${WANT_PYTHON_USE} -WANT_PGSQL= server - -MASTERDIR= ${.CURDIR}/../postgresql${WANT_PGSQL_VER:S/.//}-server - -WANT_PGSQL_VER?= 13 -WANT_PYTHON_USE?= python - -CONFIGURE_ARGS= --with-python -COMPONENT= -plpython - -BUILD_DIRS= src/backend ${INSTALL_DIRS} -INSTALL_DIRS?= src/pl/plpython contrib/hstore_plpython contrib/jsonb_plpython contrib/ltree_plpython -SLAVE_ONLY= yes +WANT_PGSQL_VER= 13 # this port fails to build in parallel MAKE_JOBS_UNSAFE= yes -.include "${MASTERDIR}/Makefile" +.include "${.CURDIR}/../postgresql14-plpython/Makefile" diff --git a/databases/postgresql13-plpython/pkg-descr b/databases/postgresql13-plpython/pkg-descr deleted file mode 100644 --- a/databases/postgresql13-plpython/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -PL/Python allows one to write PostgeSQL stored functions and -procedures in Python (http://www.python.org/). - -This software is part of the standard PostgreSQL distribution. - -WWW: https://www.postgresql.org/ diff --git a/databases/postgresql13-pltcl/Makefile b/databases/postgresql13-pltcl/Makefile --- a/databases/postgresql13-pltcl/Makefile +++ b/databases/postgresql13-pltcl/Makefile @@ -1,34 +1,8 @@ # Created by: Palle Girgensohn -PORTNAME= postgresql -# Keep the ?=, it is used by the other pltcl ports. -PORTREVISION?= 0 -CATEGORIES= databases tcl -PKGNAMESUFFIX?= ${WANT_PGSQL_VER:S/.//}${COMPONENT} - -MAINTAINER= pgsql@FreeBSD.org -COMMENT= Module for using Tcl to write SQL functions - -MASTERDIR= ${.CURDIR}/../../databases/postgresql${WANT_PGSQL_VER:S/.//}-server - -WANT_PGSQL_VER?=13 - -USES+= tcl pgsql:${WANT_PGSQL_VER} -WANT_PGSQL= server - -CONFIGURE_ARGS= --with-tcl --without-tk \ - --with-tclconfig="${TCL_LIBDIR}" \ - --with-includes="${TCL_INCLUDEDIR}" - -CONFIGURE_ENV+= TCLSH="${TCLSH}" -MAKE_ENV+= TCL_INCDIR="${TCL_INCLUDEDIR}" - -BUILD_DIRS= src/backend src/pl/tcl -INSTALL_DIRS= src/pl/tcl -SLAVE_ONLY= yes -COMPONENT= -pltcl +WANT_PGSQL_VER= 13 # this port fails to build in parallel MAKE_JOBS_UNSAFE= yes -.include "${MASTERDIR}/Makefile" +.include "${.CURDIR}/../postgresql14-pltcl/Makefile" diff --git a/databases/postgresql13-server/files/502.pgsql.in b/databases/postgresql13-server/files/502.postgresql13.in rename from databases/postgresql13-server/files/502.pgsql.in rename to databases/postgresql13-server/files/502.postgresql13.in diff --git a/databases/postgresql13-server/files/dot.profile.in b/databases/postgresql13-server/files/dot.profile.in --- a/databases/postgresql13-server/files/dot.profile.in +++ b/databases/postgresql13-server/files/dot.profile.in @@ -5,7 +5,7 @@ export PATH PGLIB PGDATA -# if you use the periodic script from share/postgresql/502.pgsql, you +# if you use the periodic script from share/postgresql/502.postgresql%%PG_SUFFIX%%, you # can set these #PGDUMP_ARGS="-b -F c" #PGBACKUPDIR=${HOME}/backups diff --git a/databases/postgresql13-server/files/pkg-message-server.in b/databases/postgresql13-server/files/pkg-message-server.in --- a/databases/postgresql13-server/files/pkg-message-server.in +++ b/databases/postgresql13-server/files/pkg-message-server.in @@ -10,7 +10,7 @@ The port is set up to use autovacuum for new databases, but you might also want to vacuum and perhaps backup your database regularly. There -is a periodic script, %%PREFIX%%/etc/periodic/daily/502.pgsql, that +is a periodic script, %%PREFIX%%/etc/periodic/daily/502.postgresql%%PG_SUFFIX%%, that you may find useful. You can use it to backup and perform vacuum on all databases nightly. Per default, it performs `vacuum analyze'. See the script for instructions. For autovacuum settings, please review diff --git a/databases/postgresql13-server/files/pkgIndex.tcl.in b/databases/postgresql13-server/files/pkgIndex.tcl.in deleted file mode 100644 --- a/databases/postgresql13-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql13-server/files/postgresql.in b/databases/postgresql13-server/files/postgresql.in deleted file mode 100644 --- a/databases/postgresql13-server/files/postgresql.in +++ /dev/null @@ -1,115 +0,0 @@ -#!/bin/sh - -# PROVIDE: postgresql -# REQUIRE: DAEMON -# KEYWORD: shutdown -# -# Add the following line to /etc/rc.conf to enable PostgreSQL: -# -# postgresql_enable="YES" -# # optional -# postgresql_data="/var/db/%%PG_USER%%/data13" -# postgresql_flags="-w -s -m fast" -# postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C" -# postgresql_login_class="default" -# postgresql_profiles="" -# -# See %%PREFIX%%/share/doc/postgresql/README-server for more info -# -# This scripts takes one of the following commands: -# -# start stop restart reload status initdb -# -# For postmaster startup options, edit ${postgresql_data}/postgresql.conf - -command=%%PREFIX%%/bin/pg_ctl - -. /etc/rc.subr - -load_rc_config postgresql - -# set defaults -postgresql_enable=${postgresql_enable:-"NO"} -postgresql_flags=${postgresql_flags:-"-w -s -m fast"} -postgresql_user=${postgresql_user:-"%%PG_USER%%"} -eval postgresql_data=${postgresql_data:-"~${postgresql_user}/data13"} -postgresql_login_class=${postgresql_login_class:-"default"} -postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collate=C"} - -name=postgresql -rcvar=postgresql_enable -extra_commands="reload initdb" - -start_cmd="postgresql_command start" -stop_cmd="postgresql_command stop" -restart_cmd="postgresql_command restart" -reload_cmd="postgresql_command reload" -status_cmd="postgresql_command status" -promote_cmd="postgresql_command promote" - -initdb_cmd="postgresql_initdb" - -su_cmd="/usr/bin/su" - -if [ -n "$2" ]; then - profile="$2" - if [ "x${postgresql_profiles}" != "x" ]; then - eval postgresql_data="\${postgresql_${profile}_data:-}" - if [ "x${postgresql_data}" = "x" ]; then - echo "You must define a data directory (postgresql_${profile}_data)" - exit 1 - fi - eval postgresql_enable="\${postgresql_${profile}_enable:-${postgresql_enable}}" - eval postgresql_data="\${postgresql_${profile}_data:-${postgresql_data}}" - eval postgresql_flags="\${postgresql_${profile}_flags:-${postgresql_flags}}" - eval postgresql_initdb_flags="\${postgresql_${profile}_initdb_flags:-${postgresql_initdb_flags}}" - fi -else - if [ "x${postgresql_profiles}" != "x" -a "x$1" != "x" ]; then - for profile in ${postgresql_profiles}; do - eval _enable="\${postgresql_${profile}_enable}" - case "x${_enable:-${postgresql_enable}}" in - x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee]) - continue - ;; - x[Yy][Ee][Ss]) - ;; - *) - if test -z "$_enable"; then - _var=postgresql_enable - else - _var=postgresql_"${profile}"_enable - fi - echo "Bad value" \ - "'${_enable:-${postgresql_enable}}'" \ - "for ${_var}. " \ - "Profile ${profile} skipped." - continue - ;; - esac - echo "===> postgresql profile: ${profile}" - %%PREFIX%%/etc/rc.d/postgresql $1 ${profile} - retcode="$?" - if [ "0${retcode}" -ne 0 ]; then - failed="${profile} (${retcode}) ${failed:-}" - else - success="${profile} ${success:-}" - fi - done - exit 0 - fi -fi - -command_args="-D ${postgresql_data} ${postgresql_flags}" - -postgresql_command() -{ - ${su_cmd} -l ${postgresql_user} -c "exec ${command} ${command_args} ${rc_arg}" -} - -postgresql_initdb() -{ - ${su_cmd} -l -c ${postgresql_login_class} ${postgresql_user} -c "exec %%PREFIX%%/bin/initdb ${postgresql_initdb_flags} -D ${postgresql_data} -U ${postgresql_user}" -} - -run_rc_command "$1" diff --git a/databases/postgresql13-server/files/postgresql13.in b/databases/postgresql13-server/files/postgresql13.in new file mode 100644 --- /dev/null +++ b/databases/postgresql13-server/files/postgresql13.in @@ -0,0 +1,115 @@ +#!/bin/sh + +# PROVIDE: postgresql%%PG_SUFFIX%% +# REQUIRE: DAEMON +# KEYWORD: shutdown +# +# Add the following line to /etc/rc.conf to enable PostgreSQL: +# +# postgresql%%PG_SUFFIX%%_enable="YES" +# # optional +# postgresql%%PG_SUFFIX%%_data="/var/db/%%PG_USER%%/data%%PG_SUFFIX%%" +# postgresql%%PG_SUFFIX%%_flags="-w -s -m fast" +# postgresql%%PG_SUFFIX%%_initdb_flags="--encoding=utf-8 --lc-collate=C" +# postgresql%%PG_SUFFIX%%_login_class="default" +# postgresql%%PG_SUFFIX%%_profiles="" +# +# See %%PREFIX%%/share/doc/postgresql%%PG_SUFFIX%%/README-server for more info +# +# This scripts takes one of the following commands: +# +# start stop restart reload status initdb +# +# For postmaster startup options, edit ${postgresql%%PG_SUFFIX%%_data}/postgresql.conf + +command=%%PREFIX%%/libexec/postgresql%%PG_SUFFIX%%/pg_ctl + +. /etc/rc.subr + +load_rc_config postgresql%%PG_SUFFIX%% + +# set defaults +postgresql%%PG_SUFFIX%%_enable=${postgresql%%PG_SUFFIX%%_enable:-"NO"} +postgresql%%PG_SUFFIX%%_flags=${postgresql%%PG_SUFFIX%%_flags:-"-w -s -m fast"} +postgresql%%PG_SUFFIX%%_user=${postgresql%%PG_SUFFIX%%_user:-"%%PG_USER%%"} +eval postgresql%%PG_SUFFIX%%_data=${postgresql%%PG_SUFFIX%%_data:-"~${postgresql%%PG_SUFFIX%%_user}/data%%PG_SUFFIX%%"} +postgresql%%PG_SUFFIX%%_login_class=${postgresql%%PG_SUFFIX%%_login_class:-"default"} +postgresql%%PG_SUFFIX%%_initdb_flags=${postgresql%%PG_SUFFIX%%_initdb_flags:-"--encoding=utf-8 --lc-collate=C"} + +name=postgresql%%PG_SUFFIX%% +rcvar=${name}_enable +extra_commands="reload initdb" + +start_cmd="${name}_command start" +stop_cmd="${name}_command stop" +restart_cmd="${name}_command restart" +reload_cmd="${name}_command reload" +status_cmd="${name}_command status" +promote_cmd="${name}_command promote" + +initdb_cmd="${name}_initdb" + +su_cmd="/usr/bin/su" + +if [ -n "$2" ]; then + profile="$2" + if [ "x${postgresql%%PG_SUFFIX%%_profiles}" != "x" ]; then + eval ${name}_data="\${${name}_${profile}_data:-}" + if [ "x${postgresql%%PG_SUFFIX%%_data}" = "x" ]; then + echo "You must define a data directory (${name}_${profile}_data)" + exit 1 + fi + eval ${name}_enable="\${${name}_${profile}_enable:-\${${name}_enable}}" + eval ${name}_data="\${${name}_${profile}_data:-\${${name}_data}}" + eval ${name}_flags="\${${name}_${profile}_flags:-\${${name}_flags}}" + eval ${name}_initdb_flags="\${${name}_${profile}_initdb_flags:-\${${name}_initdb_flags}}" + fi +else + if [ "x${postgresql%%PG_SUFFIX%%_profiles}" != "x" -a "x$1" != "x" ]; then + for profile in ${postgresql%%PG_SUFFIX%%_profiles}; do + eval _enable="\${${name}_${profile}_enable}" + case "x${_enable:-${postgresql%%PG_SUFFIX%%_enable}}" in + x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee]) + continue + ;; + x[Yy][Ee][Ss]) + ;; + *) + if test -z "$_enable"; then + _var=${name}_enable + else + _var=${name}_"${profile}"_enable + fi + echo "Bad value" \ + "'${_enable:-${postgresql%%PG_SUFFIX%%_enable}}'" \ + "for ${_var}. " \ + "Profile ${profile} skipped." + continue + ;; + esac + echo "===> ${name} profile: ${profile}" + %%PREFIX%%/etc/rc.d/${name} $1 ${profile} + retcode="$?" + if [ "0${retcode}" -ne 0 ]; then + failed="${profile} (${retcode}) ${failed:-}" + else + success="${profile} ${success:-}" + fi + done + exit 0 + fi +fi + +command_args="-D ${postgresql%%PG_SUFFIX%%_data} ${postgresql%%PG_SUFFIX%%_flags}" + +postgresql%%PG_SUFFIX%%_command() +{ + ${su_cmd} -l ${postgresql%%PG_SUFFIX%%_user} -c "exec ${command} ${command_args} ${rc_arg}" +} + +postgresql%%PG_SUFFIX%%_initdb() +{ + ${su_cmd} -l -c ${postgresql%%PG_SUFFIX%%_login_class} ${postgresql%%PG_SUFFIX%%_user} -c "exec %%PREFIX%%/libexec/${name}/initdb ${postgresql%%PG_SUFFIX%%_initdb_flags} -D ${postgresql%%PG_SUFFIX%%_data} -U ${postgresql%%PG_SUFFIX%%_user}" +} + +run_rc_command "$1" diff --git a/databases/postgresql13-server/pkg-plist-contrib b/databases/postgresql13-server/pkg-plist-contrib --- a/databases/postgresql13-server/pkg-plist-contrib +++ b/databases/postgresql13-server/pkg-plist-contrib @@ -1,57 +1,57 @@ -bin/oid2name -bin/pg_standby -bin/vacuumlo -include/postgresql/server/extension/cube/cubedata.h -include/postgresql/server/extension/hstore/hstore.h -include/postgresql/server/extension/isn/isn.h -include/postgresql/server/extension/ltree/ltree.h -include/postgresql/server/extension/seg/segdata.h -lib/postgresql/_int.so -lib/postgresql/adminpack.so -lib/postgresql/amcheck.so -lib/postgresql/auth_delay.so -lib/postgresql/auto_explain.so -lib/postgresql/autoinc.so -lib/postgresql/bloom.so -lib/postgresql/btree_gin.so -lib/postgresql/btree_gist.so -lib/postgresql/citext.so -lib/postgresql/cube.so -lib/postgresql/dblink.so -lib/postgresql/dict_int.so -lib/postgresql/dict_xsyn.so -lib/postgresql/earthdistance.so -lib/postgresql/file_fdw.so -lib/postgresql/fuzzystrmatch.so -lib/postgresql/hstore.so -lib/postgresql/insert_username.so -lib/postgresql/isn.so -lib/postgresql/lo.so -lib/postgresql/ltree.so -lib/postgresql/moddatetime.so -lib/postgresql/pageinspect.so -lib/postgresql/passwordcheck.so -lib/postgresql/pg_buffercache.so -lib/postgresql/pg_freespacemap.so -lib/postgresql/pg_prewarm.so -lib/postgresql/pg_stat_statements.so -lib/postgresql/pg_trgm.so -lib/postgresql/pg_visibility.so -lib/postgresql/pgcrypto.so -lib/postgresql/pgrowlocks.so -lib/postgresql/pgstattuple.so -%%XML%%lib/postgresql/pgxml.so -lib/postgresql/postgres_fdw.so -lib/postgresql/refint.so -lib/postgresql/seg.so -%%OPENSSL%%lib/postgresql/sslinfo.so -lib/postgresql/tablefunc.so -lib/postgresql/tcn.so -lib/postgresql/test_decoding.so -lib/postgresql/tsm_system_rows.so -lib/postgresql/tsm_system_time.so -lib/postgresql/unaccent.so -lib/postgresql/uuid-ossp.so +libexec/postgresql%%PG_SUFFIX%%/oid2name +libexec/postgresql%%PG_SUFFIX%%/pg_standby +libexec/postgresql%%PG_SUFFIX%%/vacuumlo +include/postgresql%%PG_SUFFIX%%/server/extension/cube/cubedata.h +include/postgresql%%PG_SUFFIX%%/server/extension/hstore/hstore.h +include/postgresql%%PG_SUFFIX%%/server/extension/isn/isn.h +include/postgresql%%PG_SUFFIX%%/server/extension/ltree/ltree.h +include/postgresql%%PG_SUFFIX%%/server/extension/seg/segdata.h +lib/postgresql%%PG_SUFFIX%%/_int.so +lib/postgresql%%PG_SUFFIX%%/adminpack.so +lib/postgresql%%PG_SUFFIX%%/amcheck.so +lib/postgresql%%PG_SUFFIX%%/auth_delay.so +lib/postgresql%%PG_SUFFIX%%/auto_explain.so +lib/postgresql%%PG_SUFFIX%%/autoinc.so +lib/postgresql%%PG_SUFFIX%%/bloom.so +lib/postgresql%%PG_SUFFIX%%/btree_gin.so +lib/postgresql%%PG_SUFFIX%%/btree_gist.so +lib/postgresql%%PG_SUFFIX%%/citext.so +lib/postgresql%%PG_SUFFIX%%/cube.so +lib/postgresql%%PG_SUFFIX%%/dblink.so +lib/postgresql%%PG_SUFFIX%%/dict_int.so +lib/postgresql%%PG_SUFFIX%%/dict_xsyn.so +lib/postgresql%%PG_SUFFIX%%/earthdistance.so +lib/postgresql%%PG_SUFFIX%%/file_fdw.so +lib/postgresql%%PG_SUFFIX%%/fuzzystrmatch.so +lib/postgresql%%PG_SUFFIX%%/hstore.so +lib/postgresql%%PG_SUFFIX%%/insert_username.so +lib/postgresql%%PG_SUFFIX%%/isn.so +lib/postgresql%%PG_SUFFIX%%/lo.so +lib/postgresql%%PG_SUFFIX%%/ltree.so +lib/postgresql%%PG_SUFFIX%%/moddatetime.so +lib/postgresql%%PG_SUFFIX%%/pageinspect.so +lib/postgresql%%PG_SUFFIX%%/passwordcheck.so +lib/postgresql%%PG_SUFFIX%%/pg_buffercache.so +lib/postgresql%%PG_SUFFIX%%/pg_freespacemap.so +lib/postgresql%%PG_SUFFIX%%/pg_prewarm.so +lib/postgresql%%PG_SUFFIX%%/pg_stat_statements.so +lib/postgresql%%PG_SUFFIX%%/pg_trgm.so +lib/postgresql%%PG_SUFFIX%%/pg_visibility.so +lib/postgresql%%PG_SUFFIX%%/pgcrypto.so +lib/postgresql%%PG_SUFFIX%%/pgrowlocks.so +lib/postgresql%%PG_SUFFIX%%/pgstattuple.so +%%XML%%lib/postgresql%%PG_SUFFIX%%/pgxml.so +lib/postgresql%%PG_SUFFIX%%/postgres_fdw.so +lib/postgresql%%PG_SUFFIX%%/refint.so +lib/postgresql%%PG_SUFFIX%%/seg.so +%%OPENSSL%%lib/postgresql%%PG_SUFFIX%%/sslinfo.so +lib/postgresql%%PG_SUFFIX%%/tablefunc.so +lib/postgresql%%PG_SUFFIX%%/tcn.so +lib/postgresql%%PG_SUFFIX%%/test_decoding.so +lib/postgresql%%PG_SUFFIX%%/tsm_system_rows.so +lib/postgresql%%PG_SUFFIX%%/tsm_system_time.so +lib/postgresql%%PG_SUFFIX%%/unaccent.so +lib/postgresql%%PG_SUFFIX%%/uuid-ossp.so %%PORTDOCS%%%%DOCSDIR%%/README-contrib %%PORTDOCS%%%%DOCSDIR%%/extension/README %%PORTDOCS%%%%DOCSDIR%%/extension/autoinc.example diff --git a/databases/postgresql13-server/pkg-plist-plperl b/databases/postgresql13-server/pkg-plist-plperl --- a/databases/postgresql13-server/pkg-plist-plperl +++ b/databases/postgresql13-server/pkg-plist-plperl @@ -1,15 +1,15 @@ -include/postgresql/server/plperl.h -include/postgresql/server/plperl_helpers.h -include/postgresql/server/ppport.h +include/postgresql%%PG_SUFFIX%%/server/plperl.h +include/postgresql%%PG_SUFFIX%%/server/plperl_helpers.h +include/postgresql%%PG_SUFFIX%%/server/ppport.h %%DATADIR%%/extension/plperlu--1.0.sql %%DATADIR%%/extension/plperl.control %%DATADIR%%/extension/plperl--1.0.sql %%DATADIR%%/extension/plperlu.control %%DOCSDIR%%/README-plperl -lib/postgresql/bool_plperl.so -lib/postgresql/hstore_plperl.so -lib/postgresql/jsonb_plperl.so -lib/postgresql/plperl.so +lib/postgresql%%PG_SUFFIX%%/bool_plperl.so +lib/postgresql%%PG_SUFFIX%%/hstore_plperl.so +lib/postgresql%%PG_SUFFIX%%/jsonb_plperl.so +lib/postgresql%%PG_SUFFIX%%/plperl.so %%DATADIR%%/extension/bool_plperl--1.0.sql %%DATADIR%%/extension/bool_plperl.control %%DATADIR%%/extension/bool_plperlu--1.0.sql diff --git a/databases/postgresql13-server/pkg-plist-plpython b/databases/postgresql13-server/pkg-plist-plpython --- a/databases/postgresql13-server/pkg-plist-plpython +++ b/databases/postgresql13-server/pkg-plist-plpython @@ -1,29 +1,29 @@ -include/postgresql/server/plpy_cursorobject.h -include/postgresql/server/plpy_elog.h -include/postgresql/server/plpy_exec.h -include/postgresql/server/plpy_main.h -include/postgresql/server/plpy_planobject.h -include/postgresql/server/plpy_plpymodule.h -include/postgresql/server/plpy_procedure.h -include/postgresql/server/plpy_resultobject.h -include/postgresql/server/plpy_spi.h -include/postgresql/server/plpy_subxactobject.h -include/postgresql/server/plpy_typeio.h -include/postgresql/server/plpy_util.h -include/postgresql/server/plpython.h -lib/postgresql/pgxs/src/pl/plpython/regress-python3-mangle.mk +include/postgresql%%PG_SUFFIX%%/server/plpy_cursorobject.h +include/postgresql%%PG_SUFFIX%%/server/plpy_elog.h +include/postgresql%%PG_SUFFIX%%/server/plpy_exec.h +include/postgresql%%PG_SUFFIX%%/server/plpy_main.h +include/postgresql%%PG_SUFFIX%%/server/plpy_planobject.h +include/postgresql%%PG_SUFFIX%%/server/plpy_plpymodule.h +include/postgresql%%PG_SUFFIX%%/server/plpy_procedure.h +include/postgresql%%PG_SUFFIX%%/server/plpy_resultobject.h +include/postgresql%%PG_SUFFIX%%/server/plpy_spi.h +include/postgresql%%PG_SUFFIX%%/server/plpy_subxactobject.h +include/postgresql%%PG_SUFFIX%%/server/plpy_typeio.h +include/postgresql%%PG_SUFFIX%%/server/plpy_util.h +include/postgresql%%PG_SUFFIX%%/server/plpython.h +lib/postgresql%%PG_SUFFIX%%/pgxs/src/pl/plpython/regress-python3-mangle.mk %%DOCSDIR%%/README-plpython -%%PYTHON2%%lib/postgresql/plpython2.so -%%PYTHON3%%lib/postgresql/plpython3.so +%%PYTHON2%%lib/postgresql%%PG_SUFFIX%%/plpython2.so +%%PYTHON3%%lib/postgresql%%PG_SUFFIX%%/plpython3.so %%PYTHON2%%%%DATADIR%%/extension/plpython2u--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpython2u.control %%PYTHON3%%%%DATADIR%%/extension/plpython3u--1.0.sql %%PYTHON3%%%%DATADIR%%/extension/plpython3u.control %%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu.control -lib/postgresql/hstore_plpython3.so -lib/postgresql/jsonb_plpython3.so -lib/postgresql/ltree_plpython3.so +lib/postgresql%%PG_SUFFIX%%/hstore_plpython3.so +lib/postgresql%%PG_SUFFIX%%/jsonb_plpython3.so +lib/postgresql%%PG_SUFFIX%%/ltree_plpython3.so %%DATADIR%%/extension/hstore_plpython2u--1.0.sql %%DATADIR%%/extension/hstore_plpython2u.control %%DATADIR%%/extension/hstore_plpython3u--1.0.sql diff --git a/databases/postgresql13-server/pkg-plist-pltcl b/databases/postgresql13-server/pkg-plist-pltcl --- a/databases/postgresql13-server/pkg-plist-pltcl +++ b/databases/postgresql13-server/pkg-plist-pltcl @@ -3,4 +3,4 @@ %%DATADIR%%/extension/pltclu.control %%DATADIR%%/extension/pltclu--1.0.sql %%DOCSDIR%%/README-pltcl -lib/postgresql/pltcl.so +lib/postgresql%%PG_SUFFIX%%/pltcl.so diff --git a/databases/postgresql13-server/pkg-plist-server b/databases/postgresql13-server/pkg-plist-server --- a/databases/postgresql13-server/pkg-plist-server +++ b/databases/postgresql13-server/pkg-plist-server @@ -1,730 +1,730 @@ -bin/initdb -bin/pg_archivecleanup -bin/pg_basebackup -bin/pg_checksums -bin/pg_controldata -bin/pg_ctl -bin/pg_receivewal -bin/pg_recvlogical -bin/pg_resetwal -bin/pg_rewind -bin/pg_test_fsync -bin/pg_test_timing -bin/pg_upgrade -bin/pg_waldump -bin/postgres -bin/postmaster -etc/periodic/daily/502.pgsql -include/postgresql/server/plpgsql.h -lib/libpgcommon.a -lib/libpgcommon_shlib.a -lib/postgresql/cyrillic_and_mic.so -lib/postgresql/dict_snowball.so -lib/postgresql/euc2004_sjis2004.so -lib/postgresql/euc_cn_and_mic.so -lib/postgresql/euc_jp_and_sjis.so -lib/postgresql/euc_kr_and_mic.so -lib/postgresql/euc_tw_and_big5.so -lib/postgresql/latin2_and_win1250.so -lib/postgresql/latin_and_mic.so -lib/postgresql/libpqwalreceiver.so -lib/postgresql/pgoutput.so -lib/postgresql/plpgsql.so -lib/postgresql/utf8_and_big5.so -lib/postgresql/utf8_and_cyrillic.so -lib/postgresql/utf8_and_euc2004.so -lib/postgresql/utf8_and_euc_cn.so -lib/postgresql/utf8_and_euc_jp.so -lib/postgresql/utf8_and_euc_kr.so -lib/postgresql/utf8_and_euc_tw.so -lib/postgresql/utf8_and_gb18030.so -lib/postgresql/utf8_and_gbk.so -lib/postgresql/utf8_and_iso8859.so -lib/postgresql/utf8_and_iso8859_1.so -lib/postgresql/utf8_and_johab.so -lib/postgresql/utf8_and_sjis.so -lib/postgresql/utf8_and_sjis2004.so -lib/postgresql/utf8_and_uhc.so -lib/postgresql/utf8_and_win.so -%%LLVM%%lib/postgresql/bitcode/postgres.index.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_inclusion.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_minmax.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_pageops.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_revmap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_tuple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_validate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_xlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/attmap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/bufmask.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/detoast.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/heaptuple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/indextuple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/printsimple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/printtup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/relation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/reloptions.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/scankey.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/session.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/toast_internals.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/tupconvert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/tupdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginarrayproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginbtree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginbulk.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/gindatapage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginentrypage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginfast.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginget.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/gininsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginlogic.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginpostinglist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginutil.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginvacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginxlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistbuild.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistbuildbuffers.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistget.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistsplit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistutil.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistvacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistxlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hash_xlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashfunc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashinsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashovfl.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashpage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashsearch.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashsort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashutil.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/heapam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/heapam_handler.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/heapam_visibility.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/heaptoast.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/hio.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/pruneheap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/rewriteheap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/syncscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/vacuumlazy.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/visibilitymap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/index/amapi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/index/amvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/index/genam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/index/indexam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtcompare.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtdedup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtinsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtpage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtsearch.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtsort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtsplitloc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtxlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/brindesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/clogdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/committsdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/dbasedesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/genericdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/gindesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/gistdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/hashdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/heapdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/logicalmsgdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/mxactdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/nbtdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/relmapdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/replorigindesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/seqdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/smgrdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/spgdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/standbydesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/tblspcdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/xactdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/xlogdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgdoinsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spginsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgkdtreeproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgquadtreeproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgtextproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgvacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgxlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/table/table.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/table/tableam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/table/tableamapi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/table/toast_helper.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/tablesample/bernoulli.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/tablesample/system.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/tablesample/tablesample.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/clog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/commit_ts.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/generic_xlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/multixact.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/parallel.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/rmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/slru.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/subtrans.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/timeline.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/transam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/twophase.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/twophase_rmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/varsup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xact.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlogarchive.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlogfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xloginsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlogreader.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlogutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/bootstrap/bootparse.bc -%%LLVM%%lib/postgresql/bitcode/postgres/bootstrap/bootstrap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/aclchk.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/catalog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/dependency.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/heap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/index.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/indexing.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/namespace.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/objectaccess.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/objectaddress.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/partition.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_aggregate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_cast.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_collation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_constraint.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_conversion.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_db_role_setting.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_depend.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_enum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_inherits.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_largeobject.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_namespace.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_operator.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_proc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_publication.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_range.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_shdepend.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_subscription.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_type.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/storage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/toasting.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/aggregatecmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/alter.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/amcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/analyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/async.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/cluster.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/collationcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/comment.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/constraint.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/conversioncmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/copy.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/createas.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/dbcommands.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/define.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/discard.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/dropcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/event_trigger.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/explain.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/extension.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/foreigncmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/functioncmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/indexcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/lockcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/matview.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/opclasscmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/operatorcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/policy.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/portalcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/prepare.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/proclang.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/publicationcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/schemacmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/seclabel.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/sequence.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/statscmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/subscriptioncmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/tablecmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/tablespace.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/trigger.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/tsearchcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/typecmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/user.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/vacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/variable.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/view.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execAmi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execCurrent.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execExpr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execExprInterp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execGrouping.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execIndexing.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execJunk.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execMain.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execParallel.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execPartition.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execProcnode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execReplication.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execSRF.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execScan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execTuples.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execUtils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/functions.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/instrument.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeAgg.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeAppend.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeBitmapAnd.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeBitmapHeapscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeBitmapIndexscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeBitmapOr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeCtescan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeCustom.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeForeignscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeFunctionscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeGather.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeGatherMerge.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeGroup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeHash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeHashjoin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeIncrementalSort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeIndexonlyscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeIndexscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeLimit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeLockRows.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeMaterial.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeMergeAppend.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeMergejoin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeModifyTable.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeNamedtuplestorescan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeNestloop.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeProjectSet.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeRecursiveunion.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeResult.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSamplescan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSeqscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSetOp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSubplan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSubqueryscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeTableFuncscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeTidscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeUnique.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeValuesscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeWindowAgg.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeWorktablescan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/spi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/tqueue.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/tstoreReceiver.bc -%%LLVM%%lib/postgresql/bitcode/postgres/foreign/foreign.bc -%%LLVM%%lib/postgresql/bitcode/postgres/jit/jit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/binaryheap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/bipartite_match.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/bloomfilter.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/dshash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/hyperloglog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/ilist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/integerset.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/knapsack.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/pairingheap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/rbtree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/auth-scram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/auth.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/be-fsstubs.bc -%%LLVM%%%%GSSAPI%%lib/postgresql/bitcode/postgres/libpq/be-gssapi-common.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/be-secure-common.bc -%%LLVM%%%%GSSAPI%%lib/postgresql/bitcode/postgres/libpq/be-secure-gssapi.bc -%%LLVM%%%%SSL%%lib/postgresql/bitcode/postgres/libpq/be-secure-openssl.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/be-secure.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/crypt.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/hba.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/ifaddr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/pqcomm.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/pqformat.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/pqmq.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/pqsignal.bc -%%LLVM%%lib/postgresql/bitcode/postgres/main/main.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/bitmapset.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/copyfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/equalfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/extensible.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/list.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/makefuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/nodeFuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/nodes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/outfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/params.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/print.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/read.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/readfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/tidbitmap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/value.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_copy.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_cx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_erx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_eval.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_main.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_misc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_mutation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_ox1.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_ox2.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_pmx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_pool.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_px.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_random.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_recombination.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_selection.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/allpaths.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/clausesel.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/costsize.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/equivclass.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/indxpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/joinpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/joinrels.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/pathkeys.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/tidpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/analyzejoins.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/createplan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/initsplan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/planagg.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/planmain.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/planner.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/setrefs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/subselect.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/prep/prepjointree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/prep/prepqual.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/prep/preptlist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/prep/prepunion.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/appendinfo.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/clauses.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/inherit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/joininfo.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/orclauses.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/paramassign.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/pathnode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/placeholder.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/plancat.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/predtest.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/relnode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/restrictinfo.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/tlist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/var.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/analyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/gram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_agg.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_clause.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_coerce.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_collate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_cte.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_enr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_expr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_func.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_node.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_oper.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_param.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_relation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_target.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_type.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_utilcmd.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/scan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/scansup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/partitioning/partbounds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/partitioning/partdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/partitioning/partprune.bc -%%LLVM%%lib/postgresql/bitcode/postgres/port/atomics.bc -%%LLVM%%lib/postgresql/bitcode/postgres/port/pg_sema.bc -%%LLVM%%lib/postgresql/bitcode/postgres/port/pg_shmem.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/autovacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/bgworker.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/bgwriter.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/checkpointer.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/fork_process.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/interrupt.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/pgarch.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/pgstat.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/postmaster.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/startup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/syslogger.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/walwriter.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regcomp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regerror.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regexec.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regexport.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regfree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regprefix.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/backup_manifest.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/basebackup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/decode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/launcher.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/logical.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/logicalfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/message.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/origin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/proto.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/relation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/reorderbuffer.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/snapbuild.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/tablesync.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/worker.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/repl_gram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/slot.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/slotfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/syncrep.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/syncrep_gram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/walreceiver.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/walreceiverfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/walsender.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteDefine.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteHandler.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteManip.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteRemove.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteSupport.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rowsecurity.bc -%%LLVM%%lib/postgresql/bitcode/postgres/statistics/dependencies.bc -%%LLVM%%lib/postgresql/bitcode/postgres/statistics/extended_stats.bc -%%LLVM%%lib/postgresql/bitcode/postgres/statistics/mcv.bc -%%LLVM%%lib/postgresql/bitcode/postgres/statistics/mvdistinct.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/buf_init.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/buf_table.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/bufmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/freelist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/localbuf.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/buffile.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/copydir.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/fd.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/reinit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/sharedfileset.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/freespace/freespace.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/freespace/fsmpage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/freespace/indexfsm.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/barrier.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/dsm.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/dsm_impl.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/ipc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/ipci.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/latch.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/pmsignal.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/procarray.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/procsignal.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/shm_mq.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/shm_toc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/shmem.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/shmqueue.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/signalfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/sinval.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/sinvaladt.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/standby.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/large_object/inv_api.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/condition_variable.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/deadlock.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/lmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/lock.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/lwlock.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/lwlocknames.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/predicate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/proc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/s_lock.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/spin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/page/bufpage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/page/checksum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/page/itemptr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/smgr/md.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/smgr/smgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/sync/sync.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/cmdtag.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/dest.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/fastpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/postgres.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/pquery.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/utility.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict_ispell.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict_simple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict_synonym.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict_thesaurus.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/regis.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/spell.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/to_tsany.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_locale.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_parse.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_typanalyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_utils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/wparser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/wparser_def.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/acl.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/amutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/array_expanded.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/array_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/array_typanalyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/array_userfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/arrayfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/arrayutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/ascii.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/bool.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/cash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/char.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/cryptohashes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/date.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/datetime.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/datum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/dbsize.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/domains.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/encode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/enum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/expandeddatum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/expandedrecord.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/float.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/format_type.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/formatting.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/genfile.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/geo_ops.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/geo_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/geo_spgist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/inet_cidr_ntop.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/inet_net_pton.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/int.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/int8.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/json.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonb.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonb_gin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonb_op.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonb_util.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonpath_exec.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonpath_gram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/like.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/like_support.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/lockfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/mac.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/mac8.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/misc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/name.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/network.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/network_gist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/network_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/network_spgist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/numeric.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/numutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/oid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/oracle_compat.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/orderedsetaggs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/partitionfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pg_locale.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pg_lsn.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pg_upgrade_support.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pgstatfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pseudotypes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/quote.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes_gist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes_spgist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes_typanalyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/regexp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/regproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/ri_triggers.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rowtypes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/ruleutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/timestamp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/trigfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsginidx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsgistidx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_cleanup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_gist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_op.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_rewrite.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_util.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsrank.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsvector.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsvector_op.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsvector_parser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/uuid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/varbit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/varchar.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/varlena.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/version.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/windowfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/xid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/xid8funcs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/xml.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/attoptcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/catcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/evtcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/inval.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/lsyscache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/partcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/plancache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/relcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/relfilenodemap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/relmapper.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/spccache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/syscache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/ts_cache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/typcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/error/assert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/error/elog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/fmgr/dfmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/fmgr/fmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/fmgr/funcapi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/fmgrtab.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/hash/dynahash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/hash/pg_crc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/init/globals.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/init/miscinit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/init/postinit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/conv.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/mbutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/stringinfo_mb.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/wstrcmp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/wstrncmp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/guc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/help_config.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/pg_config.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/pg_controldata.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/pg_rusage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/ps_status.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/queryenvironment.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/rls.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/sampling.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/superuser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/timeout.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/tzparser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/aset.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/dsa.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/freepage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/generation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/mcxt.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/memdebug.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/portalmem.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/slab.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/resowner/resowner.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/logtape.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/sharedtuplestore.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/sortsupport.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/tuplesort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/tuplestore.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/time/combocid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/time/snapmgr.bc -%%LLVM%%lib/postgresql/llvmjit.so -%%LLVM%%lib/postgresql/llvmjit_types.bc +libexec/postgresql%%PG_SUFFIX%%/initdb +libexec/postgresql%%PG_SUFFIX%%/pg_archivecleanup +libexec/postgresql%%PG_SUFFIX%%/pg_basebackup +libexec/postgresql%%PG_SUFFIX%%/pg_checksums +libexec/postgresql%%PG_SUFFIX%%/pg_controldata +libexec/postgresql%%PG_SUFFIX%%/pg_ctl +libexec/postgresql%%PG_SUFFIX%%/pg_receivewal +libexec/postgresql%%PG_SUFFIX%%/pg_recvlogical +libexec/postgresql%%PG_SUFFIX%%/pg_resetwal +libexec/postgresql%%PG_SUFFIX%%/pg_rewind +libexec/postgresql%%PG_SUFFIX%%/pg_test_fsync +libexec/postgresql%%PG_SUFFIX%%/pg_test_timing +libexec/postgresql%%PG_SUFFIX%%/pg_upgrade +libexec/postgresql%%PG_SUFFIX%%/pg_waldump +libexec/postgresql%%PG_SUFFIX%%/postgres +libexec/postgresql%%PG_SUFFIX%%/postmaster +etc/periodic/daily/502.postgresql%%PG_SUFFIX%% +include/postgresql%%PG_SUFFIX%%/server/plpgsql.h +lib/postgresql%%PG_SUFFIX%%/libpgcommon.a +lib/postgresql%%PG_SUFFIX%%/libpgcommon_shlib.a +lib/postgresql%%PG_SUFFIX%%/cyrillic_and_mic.so +lib/postgresql%%PG_SUFFIX%%/dict_snowball.so +lib/postgresql%%PG_SUFFIX%%/euc2004_sjis2004.so +lib/postgresql%%PG_SUFFIX%%/euc_cn_and_mic.so +lib/postgresql%%PG_SUFFIX%%/euc_jp_and_sjis.so +lib/postgresql%%PG_SUFFIX%%/euc_kr_and_mic.so +lib/postgresql%%PG_SUFFIX%%/euc_tw_and_big5.so +lib/postgresql%%PG_SUFFIX%%/latin2_and_win1250.so +lib/postgresql%%PG_SUFFIX%%/latin_and_mic.so +lib/postgresql%%PG_SUFFIX%%/libpqwalreceiver.so +lib/postgresql%%PG_SUFFIX%%/pgoutput.so +lib/postgresql%%PG_SUFFIX%%/plpgsql.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_big5.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_cyrillic.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc2004.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_cn.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_jp.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_kr.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_tw.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_gb18030.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_gbk.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_iso8859.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_iso8859_1.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_johab.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_sjis.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_sjis2004.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_uhc.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_win.so +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres.index.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_inclusion.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_minmax.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_pageops.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_revmap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_tuple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_validate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_xlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/attmap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/bufmask.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/detoast.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/heaptuple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/indextuple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/printsimple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/printtup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/relation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/reloptions.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/scankey.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/session.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/toast_internals.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/tupconvert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/tupdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginarrayproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginbtree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginbulk.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/gindatapage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginentrypage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginfast.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginget.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/gininsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginlogic.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginpostinglist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginutil.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginvacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginxlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistbuild.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistbuildbuffers.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistget.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistsplit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistutil.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistvacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistxlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hash_xlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashfunc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashinsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashovfl.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashpage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashsearch.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashsort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashutil.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/heapam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/heapam_handler.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/heapam_visibility.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/heaptoast.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/hio.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/pruneheap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/rewriteheap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/syncscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/vacuumlazy.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/visibilitymap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/index/amapi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/index/amvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/index/genam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/index/indexam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtcompare.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtdedup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtinsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtpage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtsearch.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtsort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtsplitloc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtxlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/brindesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/clogdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/committsdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/dbasedesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/genericdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/gindesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/gistdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/hashdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/heapdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/logicalmsgdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/mxactdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/nbtdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/relmapdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/replorigindesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/seqdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/smgrdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/spgdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/standbydesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/tblspcdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/xactdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/xlogdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgdoinsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spginsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgkdtreeproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgquadtreeproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgtextproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgvacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgxlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/table/table.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/table/tableam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/table/tableamapi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/table/toast_helper.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/tablesample/bernoulli.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/tablesample/system.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/tablesample/tablesample.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/clog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/commit_ts.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/generic_xlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/multixact.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/parallel.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/rmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/slru.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/subtrans.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/timeline.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/transam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/twophase.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/twophase_rmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/varsup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xact.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlogarchive.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlogfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xloginsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlogreader.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlogutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/bootstrap/bootparse.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/bootstrap/bootstrap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/aclchk.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/catalog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/dependency.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/heap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/index.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/indexing.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/namespace.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/objectaccess.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/objectaddress.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/partition.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_aggregate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_cast.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_collation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_constraint.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_conversion.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_db_role_setting.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_depend.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_enum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_inherits.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_largeobject.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_namespace.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_operator.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_proc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_publication.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_range.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_shdepend.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_subscription.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_type.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/storage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/toasting.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/aggregatecmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/alter.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/amcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/analyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/async.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/cluster.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/collationcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/comment.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/constraint.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/conversioncmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/copy.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/createas.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/dbcommands.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/define.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/discard.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/dropcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/event_trigger.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/explain.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/extension.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/foreigncmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/functioncmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/indexcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/lockcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/matview.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/opclasscmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/operatorcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/policy.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/portalcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/prepare.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/proclang.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/publicationcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/schemacmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/seclabel.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/sequence.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/statscmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/subscriptioncmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/tablecmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/tablespace.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/trigger.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/tsearchcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/typecmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/user.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/vacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/variable.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/view.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execAmi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execCurrent.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execExpr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execExprInterp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execGrouping.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execIndexing.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execJunk.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execMain.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execParallel.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execPartition.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execProcnode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execReplication.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execSRF.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execScan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execTuples.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execUtils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/functions.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/instrument.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeAgg.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeAppend.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeBitmapAnd.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeBitmapHeapscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeBitmapIndexscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeBitmapOr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeCtescan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeCustom.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeForeignscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeFunctionscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeGather.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeGatherMerge.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeGroup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeHash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeHashjoin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeIncrementalSort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeIndexonlyscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeIndexscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeLimit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeLockRows.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeMaterial.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeMergeAppend.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeMergejoin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeModifyTable.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeNamedtuplestorescan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeNestloop.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeProjectSet.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeRecursiveunion.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeResult.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSamplescan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSeqscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSetOp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSubplan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSubqueryscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeTableFuncscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeTidscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeUnique.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeValuesscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeWindowAgg.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeWorktablescan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/spi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/tqueue.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/tstoreReceiver.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/foreign/foreign.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/jit/jit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/binaryheap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/bipartite_match.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/bloomfilter.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/dshash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/hyperloglog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/ilist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/integerset.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/knapsack.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/pairingheap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/rbtree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/auth-scram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/auth.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-fsstubs.bc +%%LLVM%%%%GSSAPI%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-gssapi-common.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-secure-common.bc +%%LLVM%%%%GSSAPI%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-secure-gssapi.bc +%%LLVM%%%%SSL%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-secure-openssl.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-secure.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/crypt.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/hba.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/ifaddr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/pqcomm.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/pqformat.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/pqmq.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/pqsignal.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/main/main.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/bitmapset.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/copyfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/equalfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/extensible.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/list.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/makefuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/nodeFuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/nodes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/outfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/params.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/print.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/read.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/readfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/tidbitmap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/value.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_copy.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_cx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_erx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_eval.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_main.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_misc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_mutation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_ox1.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_ox2.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_pmx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_pool.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_px.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_random.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_recombination.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_selection.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/allpaths.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/clausesel.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/costsize.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/equivclass.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/indxpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/joinpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/joinrels.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/pathkeys.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/tidpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/analyzejoins.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/createplan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/initsplan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/planagg.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/planmain.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/planner.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/setrefs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/subselect.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/prep/prepjointree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/prep/prepqual.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/prep/preptlist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/prep/prepunion.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/appendinfo.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/clauses.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/inherit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/joininfo.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/orclauses.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/paramassign.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/pathnode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/placeholder.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/plancat.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/predtest.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/relnode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/restrictinfo.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/tlist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/var.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/analyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/gram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_agg.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_clause.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_coerce.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_collate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_cte.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_enr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_expr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_func.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_node.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_oper.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_param.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_relation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_target.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_type.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_utilcmd.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/scan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/scansup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/partitioning/partbounds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/partitioning/partdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/partitioning/partprune.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/port/atomics.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/port/pg_sema.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/port/pg_shmem.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/autovacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/bgworker.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/bgwriter.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/checkpointer.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/fork_process.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/interrupt.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/pgarch.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/pgstat.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/postmaster.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/startup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/syslogger.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/walwriter.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regcomp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regerror.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regexec.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regexport.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regfree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regprefix.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/backup_manifest.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/basebackup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/decode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/launcher.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/logical.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/logicalfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/message.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/origin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/proto.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/relation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/reorderbuffer.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/snapbuild.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/tablesync.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/worker.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/repl_gram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/slot.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/slotfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/syncrep.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/syncrep_gram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/walreceiver.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/walreceiverfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/walsender.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteDefine.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteHandler.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteManip.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteRemove.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteSupport.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rowsecurity.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/statistics/dependencies.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/statistics/extended_stats.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/statistics/mcv.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/statistics/mvdistinct.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/buf_init.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/buf_table.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/bufmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/freelist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/localbuf.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/buffile.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/copydir.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/fd.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/reinit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/sharedfileset.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/freespace/freespace.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/freespace/fsmpage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/freespace/indexfsm.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/barrier.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/dsm.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/dsm_impl.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/ipc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/ipci.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/latch.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/pmsignal.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/procarray.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/procsignal.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/shm_mq.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/shm_toc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/shmem.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/shmqueue.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/signalfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/sinval.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/sinvaladt.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/standby.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/large_object/inv_api.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/condition_variable.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/deadlock.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/lmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/lock.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/lwlock.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/lwlocknames.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/predicate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/proc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/s_lock.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/spin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/page/bufpage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/page/checksum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/page/itemptr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/smgr/md.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/smgr/smgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/sync/sync.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/cmdtag.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/dest.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/fastpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/postgres.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/pquery.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/utility.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict_ispell.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict_simple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict_synonym.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict_thesaurus.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/regis.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/spell.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/to_tsany.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_locale.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_parse.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_typanalyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_utils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/wparser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/wparser_def.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/acl.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/amutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/array_expanded.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/array_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/array_typanalyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/array_userfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/arrayfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/arrayutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/ascii.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/bool.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/cash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/char.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/cryptohashes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/date.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/datetime.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/datum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/dbsize.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/domains.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/encode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/enum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/expandeddatum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/expandedrecord.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/float.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/format_type.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/formatting.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/genfile.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/geo_ops.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/geo_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/geo_spgist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/inet_cidr_ntop.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/inet_net_pton.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/int.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/int8.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/json.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonb.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonb_gin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonb_op.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonb_util.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonpath_exec.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonpath_gram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/like.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/like_support.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/lockfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/mac.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/mac8.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/misc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/name.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/network.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/network_gist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/network_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/network_spgist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/numeric.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/numutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/oid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/oracle_compat.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/orderedsetaggs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/partitionfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pg_locale.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pg_lsn.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pg_upgrade_support.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pgstatfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pseudotypes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/quote.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes_gist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes_spgist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes_typanalyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/regexp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/regproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/ri_triggers.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rowtypes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/ruleutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/timestamp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/trigfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsginidx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsgistidx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_cleanup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_gist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_op.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_rewrite.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_util.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsrank.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsvector.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsvector_op.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsvector_parser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/uuid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/varbit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/varchar.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/varlena.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/version.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/windowfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/xid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/xid8funcs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/xml.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/attoptcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/catcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/evtcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/inval.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/lsyscache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/partcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/plancache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/relcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/relfilenodemap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/relmapper.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/spccache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/syscache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/ts_cache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/typcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/error/assert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/error/elog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/fmgr/dfmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/fmgr/fmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/fmgr/funcapi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/fmgrtab.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/hash/dynahash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/hash/pg_crc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/init/globals.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/init/miscinit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/init/postinit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/conv.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/mbutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/stringinfo_mb.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/wstrcmp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/wstrncmp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/guc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/help_config.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/pg_config.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/pg_controldata.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/pg_rusage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/ps_status.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/queryenvironment.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/rls.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/sampling.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/superuser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/timeout.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/tzparser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/aset.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/dsa.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/freepage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/generation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/mcxt.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/memdebug.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/portalmem.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/slab.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/resowner/resowner.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/logtape.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/sharedtuplestore.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/sortsupport.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/tuplesort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/tuplestore.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/time/combocid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/time/snapmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/llvmjit.so +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/llvmjit_types.bc %%PORTDOCS%%%%DOCSDIR%%/README-server %%DATADIR%%/errcodes.txt %%DATADIR%%/extension/plpgsql--1.0.sql @@ -737,178 +737,178 @@ %%DATADIR%%/snowball_create.sql %%DATADIR%%/sql_features.txt %%DATADIR%%/system_views.sql -%%NLS%%share/locale/cs/LC_MESSAGES/initdb-13.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_archivecleanup-13.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-13.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_checksums-13.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-13.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-13.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetwal-13.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-13.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_fsync-13.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_timing-13.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_upgrade-13.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_waldump-13.mo -%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-13.mo -%%NLS%%share/locale/de/LC_MESSAGES/initdb-13.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_archivecleanup-13.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-13.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_checksums-13.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-13.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-13.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_resetwal-13.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_rewind-13.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_test_fsync-13.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_test_timing-13.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_upgrade-13.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_waldump-13.mo -%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-13.mo -%%NLS%%share/locale/de/LC_MESSAGES/postgres-13.mo -%%NLS%%share/locale/es/LC_MESSAGES/initdb-13.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_archivecleanup-13.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-13.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_checksums-13.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-13.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-13.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_resetwal-13.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_rewind-13.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_test_fsync-13.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_test_timing-13.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_upgrade-13.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_waldump-13.mo -%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-13.mo -%%NLS%%share/locale/es/LC_MESSAGES/postgres-13.mo -%%NLS%%share/locale/fr/LC_MESSAGES/initdb-13.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_archivecleanup-13.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-13.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_checksums-13.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-13.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-13.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetwal-13.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-13.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_fsync-13.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_timing-13.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_upgrade-13.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_waldump-13.mo -%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-13.mo -%%NLS%%share/locale/fr/LC_MESSAGES/postgres-13.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-13.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-13.mo -%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-13.mo -%%NLS%%share/locale/it/LC_MESSAGES/postgres-13.mo -%%NLS%%share/locale/ja/LC_MESSAGES/initdb-13.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_archivecleanup-13.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_basebackup-13.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_checksums-13.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-13.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-13.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetwal-13.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_rewind-13.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_fsync-13.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_timing-13.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_upgrade-13.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_waldump-13.mo -%%NLS%%share/locale/ja/LC_MESSAGES/plpgsql-13.mo -%%NLS%%share/locale/ja/LC_MESSAGES/postgres-13.mo -%%NLS%%share/locale/ko/LC_MESSAGES/initdb-13.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_archivecleanup-13.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_basebackup-13.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_checksums-13.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_controldata-13.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_ctl-13.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_resetwal-13.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_rewind-13.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_fsync-13.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_timing-13.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_upgrade-13.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_waldump-13.mo -%%NLS%%share/locale/ko/LC_MESSAGES/plpgsql-13.mo -%%NLS%%share/locale/ko/LC_MESSAGES/postgres-13.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_fsync-13.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_timing-13.mo -%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-13.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/initdb-13.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_archivecleanup-13.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_checksums-13.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_controldata-13.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_ctl-13.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_resetwal-13.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_test_fsync-13.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_test_timing-13.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-13.mo -%%NLS%%share/locale/ru/LC_MESSAGES/initdb-13.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_archivecleanup-13.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-13.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_checksums-13.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_controldata-13.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_ctl-13.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_resetwal-13.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_rewind-13.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_fsync-13.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_timing-13.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_upgrade-13.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_waldump-13.mo -%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-13.mo -%%NLS%%share/locale/ru/LC_MESSAGES/postgres-13.mo -%%NLS%%share/locale/sv/LC_MESSAGES/initdb-13.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_archivecleanup-13.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_basebackup-13.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_checksums-13.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_controldata-13.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-13.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_resetwal-13.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_rewind-13.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_fsync-13.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_timing-13.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_upgrade-13.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_waldump-13.mo -%%NLS%%share/locale/sv/LC_MESSAGES/plpgsql-13.mo -%%NLS%%share/locale/sv/LC_MESSAGES/postgres-13.mo -%%NLS%%share/locale/tr/LC_MESSAGES/initdb-13.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_archivecleanup-13.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_basebackup-13.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_checksums-13.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_controldata-13.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_ctl-13.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_resetwal-13.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_rewind-13.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_fsync-13.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_timing-13.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_upgrade-13.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_waldump-13.mo -%%NLS%%share/locale/tr/LC_MESSAGES/plpgsql-13.mo -%%NLS%%share/locale/tr/LC_MESSAGES/postgres-13.mo -%%NLS%%share/locale/uk/LC_MESSAGES/initdb-13.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_archivecleanup-13.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_basebackup-13.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_checksums-13.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_controldata-13.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_ctl-13.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_resetwal-13.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_rewind-13.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_test_fsync-13.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_test_timing-13.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_upgrade-13.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_waldump-13.mo -%%NLS%%share/locale/uk/LC_MESSAGES/plpgsql-13.mo -%%NLS%%share/locale/uk/LC_MESSAGES/postgres-13.mo -%%NLS%%share/locale/vi/LC_MESSAGES/pg_test_fsync-13.mo -%%NLS%%share/locale/vi/LC_MESSAGES/pg_test_timing-13.mo -%%NLS%%share/locale/vi/LC_MESSAGES/plpgsql-13.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-13.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_archivecleanup-13.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-13.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_checksums-13.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-13.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-13.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_resetwal-13.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_rewind-13.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_fsync-13.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_timing-13.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_upgrade-13.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_waldump-13.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/plpgsql-13.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/postgres-13.mo +%%NLS%%share/locale/cs/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo %%TZDATA%%%%DATADIR%%/timezone/Africa/Abidjan %%TZDATA%%%%DATADIR%%/timezone/Africa/Accra %%TZDATA%%%%DATADIR%%/timezone/Africa/Addis_Ababa diff --git a/databases/postgresql14-pgtcl/Makefile b/databases/postgresql14-pgtcl/Makefile deleted file mode 100644 --- a/databases/postgresql14-pgtcl/Makefile +++ /dev/null @@ -1,9 +0,0 @@ -PORTREVISION= 0 -PKGNAMESUFFIX= -postgresql14 - -CONFLICTS= pgtcl pgtcl-postgresql9[0123456] pgtcl-postgresql1[0123-56789]-* - -PGTCL_SLAVE= 14 -MASTERDIR= ${.CURDIR}/../pgtcl - -.include "${MASTERDIR}/Makefile" diff --git a/databases/postgresql14-plperl/Makefile b/databases/postgresql14-plperl/Makefile --- a/databases/postgresql14-plperl/Makefile +++ b/databases/postgresql14-plperl/Makefile @@ -9,7 +9,8 @@ MAINTAINER= pgsql@FreeBSD.org COMMENT= Write SQL functions for PostgreSQL using Perl5 -RUN_DEPENDS= postgres:databases/postgresql${WANT_PGSQL_VER:S/.//}-server +USES+= pgsql:${WANT_PGSQL_VER} +WANT_PGSQL= server MASTERDIR= ${.CURDIR}/../../databases/postgresql${WANT_PGSQL_VER:S/.//}-server diff --git a/databases/postgresql14-plpython/pkg-descr b/databases/postgresql14-plpython/pkg-descr deleted file mode 100644 --- a/databases/postgresql14-plpython/pkg-descr +++ /dev/null @@ -1,6 +0,0 @@ -PL/Python allows one to write PostgeSQL stored functions and -procedures in Python (http://www.python.org/). - -This software is part of the standard PostgreSQL distribution. - -WWW: https://www.postgresql.org/ diff --git a/databases/postgresql14-server/Makefile b/databases/postgresql14-server/Makefile --- a/databases/postgresql14-server/Makefile +++ b/databases/postgresql14-server/Makefile @@ -14,11 +14,13 @@ LICENSE= PostgreSQL +.if defined(CLIENT_ONLY) .if ${DISTVERSION:C/([0-9]*).*/\1/} >= 10 CONFLICTS+= ${PORTNAME}9* ${PORTNAME}1[^${PORTVERSION:R:C/.*([0-9]$)/\\1/}]* .else CONFLICTS+= ${PORTNAME}9[^${PORTVERSION:R:E}]* ${PORTNAME}1[0-9]* .endif +.endif WRKSRC= ${WRKDIR}/postgresql-${DISTVERSION} DIST_SUBDIR= postgresql @@ -36,11 +38,21 @@ PG_GROUP?= postgres PG_UID?= 770 +PG_SUFFIX= ${PORTVERSION:R} LDFLAGS+= -L${LOCALBASE}/lib INCLUDES+= -I${LOCALBASE}/include -CONFIGURE_ARGS+=--with-libraries=${PREFIX}/lib \ - --with-includes=${PREFIX}/include \ - --enable-thread-safety +CONFIGURE_ARGS+=--enable-thread-safety +.if !defined(CLIENT_ONLY) +CONFIGURE_ARGS+=--with-libraries=${PREFIX}/lib/postgresql${PG_SUFFIX} \ + --with-includes=${PREFIX}/include/postgresql${PG_SUFFIX} \ + --bindir=${PREFIX}/libexec/postgresql${PG_SUFFIX} \ + --includedir=${PREFIX}/include/postgresql${PG_SUFFIX} \ + --libdir=${PREFIX}/lib/postgresql${PG_SUFFIX} \ + --datadir=${DATADIR} \ + --docdir=${DOCSDIR} +DATADIR= ${PREFIX}/share/postgresql${PG_SUFFIX} +DOCSDIR= ${PREFIX}/share/doc/postgresql${PG_SUFFIX} +.endif CONFIGURE_ENV+= INCLUDES="${INCLUDES}" \ PTHREAD_LIBS="-lpthread" \ LDFLAGS_SL="${LDFLAGS_SL}" @@ -49,7 +61,7 @@ PLIST= ${PKGDIR}/pkg-plist${COMPONENT} -INSTALL_DIRS?= src/common src/timezone src/backend \ +INSTALL_DIRS?= src/timezone src/backend \ src/backend/utils/mb/conversion_procs \ src/backend/snowball src/backend/replication/libpqwalreceiver \ src/backend/replication/pgoutput \ @@ -62,27 +74,21 @@ src/bin/pg_waldump src/bin/pg_upgrade BUILD_DIRS?= src/port ${INSTALL_DIRS} -INSTALL_TARGET?=install-strip .if !defined(CLIENT_ONLY) && !defined(SLAVE_ONLY) SERVER_ONLY= yes COMPONENT= -server -USE_RC_SUBR= postgresql -USES+= pgsql:${DISTVERSION:C/([0-9]\.?[0-9]).*/\1/g} +USE_RC_SUBR= postgresql${PG_SUFFIX} +USES+= pgsql USERS= ${PG_USER} GROUPS= ${PG_GROUP} -SUB_FILES+= 502.pgsql +SUB_FILES+= 502.postgresql${PG_SUFFIX} .endif -OPTIONS_SUB= yes - -.if defined(CLIENT_ONLY) -OPTIONS_DEFINE+=LIBEDIT DOCS -LIBEDIT_DESC= Use non-GPL libedit instead of readline -.else +#.if !defined(CLIENT_ONLY) MAKE_ENV+= PATH=${PREFIX}/bin:${PATH} CONFIGURE_ENV+= PATH=${PREFIX}/bin:${PATH} -.endif +#.endif .if defined(SERVER_ONLY) OPTIONS_DEFINE= DTRACE LDAP INTDATE TZDATA XML DOCS @@ -129,10 +135,6 @@ .if !defined(SLAVE_ONLY) OPTIONS_DEFINE+= NLS PAM GSSAPI OPTIMIZED_CFLAGS DEBUG DOCS -. if ${DISTVERSION:R} == 9.2 || ${DISTVERSION:R} == 9.3 - OPTIONS_RADIO= KRB5 - OPTIONS_RADIO_KRB5= MIT_KRB5 HEIMDAL_KRB5 -. endif KRB5_DESC= Build with kerberos provider support NLS_DESC= Use internationalized messages @@ -151,7 +153,10 @@ .endif # !SLAVE_ONLY .if defined(CLIENT_ONLY) -LIBEDIT_CONFIGURE_ON+=--with-libedit-preferred +OPTIONS_DEFINE+=LIBEDIT DOCS + +LIBEDIT_DESC= Use non-GPL libedit instead of readline +LIBEDIT_CONFIGURE_ON+= --with-libedit-preferred LIBEDIT_USES= libedit LIBEDIT_USES_OFF= readline .endif # CLIENT_ONLY @@ -178,11 +183,13 @@ DEBUG_CONFIGURE_ENABLE= debug -PLIST_SUB+= PG_USER=${PG_USER} \ +PLIST_SUB+= PG_SUFFIX=${PG_SUFFIX} \ + PG_USER=${PG_USER} \ PG_USER_regex=[[:<:]]${PG_USER}[[:>:]] \ PG_GROUP=${PG_GROUP} \ PG_GROUP_regex=[[:<:]]${PG_GROUP}[[:>:]] -SUB_LIST+= PG_GROUP=${PG_GROUP} \ +SUB_LIST+= PG_SUFFIX=${PG_SUFFIX} \ + PG_GROUP=${PG_GROUP} \ PG_USER=${PG_USER} \ PG_UID=${PG_UID} @@ -325,9 +332,8 @@ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${INSTALL_TARGET}; \ done . if defined(SERVER_ONLY) - @ ${MKDIR} ${STAGEDIR}${PREFIX}/share/postgresql ;\ - ${MKDIR} ${STAGEDIR}${PREFIX}/etc/periodic/daily ;\ - ${INSTALL_SCRIPT} ${WRKDIR}/502.pgsql \ + @ ${MKDIR} ${STAGEDIR}${PREFIX}/etc/periodic/daily ;\ + ${INSTALL_SCRIPT} ${WRKDIR}/502.postgresql${PG_SUFFIX} \ ${STAGEDIR}${PREFIX}/etc/periodic/daily . endif # SERVER_ONLY . if defined(CLIENT_ONLY) diff --git a/databases/postgresql14-server/TODO b/databases/postgresql14-server/TODO new file mode 100644 --- /dev/null +++ b/databases/postgresql14-server/TODO @@ -0,0 +1,7 @@ +libpgcommon är tydligen delvis för client (två av dem) och en för server +installera manuellt verkar rimligt? tyvärr... + + +annars, enkelt att bara låta client vara i stort sett som den är. förutom +möjligen då include-filerna... hmmm... och någon annan justering. i övrigt +borde det räcka långt att serverbitarna delas upp per version. diff --git a/databases/postgresql14-server/files/502.pgsql.in b/databases/postgresql14-server/files/502.postgresql14.in rename from databases/postgresql14-server/files/502.pgsql.in rename to databases/postgresql14-server/files/502.postgresql14.in diff --git a/databases/postgresql14-server/files/dot.profile.in b/databases/postgresql14-server/files/dot.profile.in --- a/databases/postgresql14-server/files/dot.profile.in +++ b/databases/postgresql14-server/files/dot.profile.in @@ -5,7 +5,7 @@ export PATH PGLIB PGDATA -# if you use the periodic script from share/postgresql/502.pgsql, you +# if you use the periodic script from share/postgresql/502.postgresql%%PG_SUFFIX%%, you # can set these #PGDUMP_ARGS="-b -F c" #PGBACKUPDIR=${HOME}/backups diff --git a/databases/postgresql14-server/files/pkg-message-server.in b/databases/postgresql14-server/files/pkg-message-server.in --- a/databases/postgresql14-server/files/pkg-message-server.in +++ b/databases/postgresql14-server/files/pkg-message-server.in @@ -10,7 +10,7 @@ The port is set up to use autovacuum for new databases, but you might also want to vacuum and perhaps backup your database regularly. There -is a periodic script, %%PREFIX%%/etc/periodic/daily/502.pgsql, that +is a periodic script, %%PREFIX%%/etc/periodic/daily/502.postgresql%%PG_SUFFIX%%, that you may find useful. You can use it to backup and perform vacuum on all databases nightly. Per default, it performs `vacuum analyze'. See the script for instructions. For autovacuum settings, please review diff --git a/databases/postgresql14-server/files/pkgIndex.tcl.in b/databases/postgresql14-server/files/pkgIndex.tcl.in deleted file mode 100644 --- a/databases/postgresql14-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql14-server/files/postgresql.in b/databases/postgresql14-server/files/postgresql.in deleted file mode 100644 --- a/databases/postgresql14-server/files/postgresql.in +++ /dev/null @@ -1,115 +0,0 @@ -#!/bin/sh - -# PROVIDE: postgresql -# REQUIRE: DAEMON -# KEYWORD: shutdown -# -# Add the following line to /etc/rc.conf to enable PostgreSQL: -# -# postgresql_enable="YES" -# # optional -# postgresql_data="/var/db/%%PG_USER%%/data14" -# postgresql_flags="-w -s -m fast" -# postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C" -# postgresql_login_class="default" -# postgresql_profiles="" -# -# See %%PREFIX%%/share/doc/postgresql/README-server for more info -# -# This scripts takes one of the following commands: -# -# start stop restart reload status initdb -# -# For postmaster startup options, edit ${postgresql_data}/postgresql.conf - -command=%%PREFIX%%/bin/pg_ctl - -. /etc/rc.subr - -load_rc_config postgresql - -# set defaults -postgresql_enable=${postgresql_enable:-"NO"} -postgresql_flags=${postgresql_flags:-"-w -s -m fast"} -postgresql_user=${postgresql_user:-"%%PG_USER%%"} -eval postgresql_data=${postgresql_data:-"~${postgresql_user}/data14"} -postgresql_login_class=${postgresql_login_class:-"default"} -postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collate=C"} - -name=postgresql -rcvar=postgresql_enable -extra_commands="reload initdb" - -start_cmd="postgresql_command start" -stop_cmd="postgresql_command stop" -restart_cmd="postgresql_command restart" -reload_cmd="postgresql_command reload" -status_cmd="postgresql_command status" -promote_cmd="postgresql_command promote" - -initdb_cmd="postgresql_initdb" - -su_cmd="/usr/bin/su" - -if [ -n "$2" ]; then - profile="$2" - if [ "x${postgresql_profiles}" != "x" ]; then - eval postgresql_data="\${postgresql_${profile}_data:-}" - if [ "x${postgresql_data}" = "x" ]; then - echo "You must define a data directory (postgresql_${profile}_data)" - exit 1 - fi - eval postgresql_enable="\${postgresql_${profile}_enable:-${postgresql_enable}}" - eval postgresql_data="\${postgresql_${profile}_data:-${postgresql_data}}" - eval postgresql_flags="\${postgresql_${profile}_flags:-${postgresql_flags}}" - eval postgresql_initdb_flags="\${postgresql_${profile}_initdb_flags:-${postgresql_initdb_flags}}" - fi -else - if [ "x${postgresql_profiles}" != "x" -a "x$1" != "x" ]; then - for profile in ${postgresql_profiles}; do - eval _enable="\${postgresql_${profile}_enable}" - case "x${_enable:-${postgresql_enable}}" in - x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee]) - continue - ;; - x[Yy][Ee][Ss]) - ;; - *) - if test -z "$_enable"; then - _var=postgresql_enable - else - _var=postgresql_"${profile}"_enable - fi - echo "Bad value" \ - "'${_enable:-${postgresql_enable}}'" \ - "for ${_var}. " \ - "Profile ${profile} skipped." - continue - ;; - esac - echo "===> postgresql profile: ${profile}" - %%PREFIX%%/etc/rc.d/postgresql $1 ${profile} - retcode="$?" - if [ "0${retcode}" -ne 0 ]; then - failed="${profile} (${retcode}) ${failed:-}" - else - success="${profile} ${success:-}" - fi - done - exit 0 - fi -fi - -command_args="-D ${postgresql_data} ${postgresql_flags}" - -postgresql_command() -{ - ${su_cmd} -l ${postgresql_user} -c "exec ${command} ${command_args} ${rc_arg}" -} - -postgresql_initdb() -{ - ${su_cmd} -l -c ${postgresql_login_class} ${postgresql_user} -c "exec %%PREFIX%%/bin/initdb ${postgresql_initdb_flags} -D ${postgresql_data} -U ${postgresql_user}" -} - -run_rc_command "$1" diff --git a/databases/postgresql14-server/files/postgresql14.in b/databases/postgresql14-server/files/postgresql14.in new file mode 100644 --- /dev/null +++ b/databases/postgresql14-server/files/postgresql14.in @@ -0,0 +1,115 @@ +#!/bin/sh + +# PROVIDE: postgresql%%PG_SUFFIX%% +# REQUIRE: DAEMON +# KEYWORD: shutdown +# +# Add the following line to /etc/rc.conf to enable PostgreSQL: +# +# postgresql%%PG_SUFFIX%%_enable="YES" +# # optional +# postgresql%%PG_SUFFIX%%_data="/var/db/%%PG_USER%%/data%%PG_SUFFIX%%" +# postgresql%%PG_SUFFIX%%_flags="-w -s -m fast" +# postgresql%%PG_SUFFIX%%_initdb_flags="--encoding=utf-8 --lc-collate=C" +# postgresql%%PG_SUFFIX%%_login_class="default" +# postgresql%%PG_SUFFIX%%_profiles="" +# +# See %%PREFIX%%/share/doc/postgresql%%PG_SUFFIX%%/README-server for more info +# +# This scripts takes one of the following commands: +# +# start stop restart reload status initdb +# +# For postmaster startup options, edit ${postgresql%%PG_SUFFIX%%_data}/postgresql.conf + +command=%%PREFIX%%/libexec/postgresql%%PG_SUFFIX%%/pg_ctl + +. /etc/rc.subr + +load_rc_config postgresql%%PG_SUFFIX%% + +# set defaults +postgresql%%PG_SUFFIX%%_enable=${postgresql%%PG_SUFFIX%%_enable:-"NO"} +postgresql%%PG_SUFFIX%%_flags=${postgresql%%PG_SUFFIX%%_flags:-"-w -s -m fast"} +postgresql%%PG_SUFFIX%%_user=${postgresql%%PG_SUFFIX%%_user:-"%%PG_USER%%"} +eval postgresql%%PG_SUFFIX%%_data=${postgresql%%PG_SUFFIX%%_data:-"~${postgresql%%PG_SUFFIX%%_user}/data%%PG_SUFFIX%%"} +postgresql%%PG_SUFFIX%%_login_class=${postgresql%%PG_SUFFIX%%_login_class:-"default"} +postgresql%%PG_SUFFIX%%_initdb_flags=${postgresql%%PG_SUFFIX%%_initdb_flags:-"--encoding=utf-8 --lc-collate=C"} + +name=postgresql%%PG_SUFFIX%% +rcvar=${name}_enable +extra_commands="reload initdb" + +start_cmd="${name}_command start" +stop_cmd="${name}_command stop" +restart_cmd="${name}_command restart" +reload_cmd="${name}_command reload" +status_cmd="${name}_command status" +promote_cmd="${name}_command promote" + +initdb_cmd="${name}_initdb" + +su_cmd="/usr/bin/su" + +if [ -n "$2" ]; then + profile="$2" + if [ "x${postgresql%%PG_SUFFIX%%_profiles}" != "x" ]; then + eval ${name}_data="\${${name}_${profile}_data:-}" + if [ "x${postgresql%%PG_SUFFIX%%_data}" = "x" ]; then + echo "You must define a data directory (${name}_${profile}_data)" + exit 1 + fi + eval ${name}_enable="\${${name}_${profile}_enable:-\${${name}_enable}}" + eval ${name}_data="\${${name}_${profile}_data:-\${${name}_data}}" + eval ${name}_flags="\${${name}_${profile}_flags:-\${${name}_flags}}" + eval ${name}_initdb_flags="\${${name}_${profile}_initdb_flags:-\${${name}_initdb_flags}}" + fi +else + if [ "x${postgresql%%PG_SUFFIX%%_profiles}" != "x" -a "x$1" != "x" ]; then + for profile in ${postgresql%%PG_SUFFIX%%_profiles}; do + eval _enable="\${${name}_${profile}_enable}" + case "x${_enable:-${postgresql%%PG_SUFFIX%%_enable}}" in + x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee]) + continue + ;; + x[Yy][Ee][Ss]) + ;; + *) + if test -z "$_enable"; then + _var=${name}_enable + else + _var=${name}_"${profile}"_enable + fi + echo "Bad value" \ + "'${_enable:-${postgresql%%PG_SUFFIX%%_enable}}'" \ + "for ${_var}. " \ + "Profile ${profile} skipped." + continue + ;; + esac + echo "===> ${name} profile: ${profile}" + %%PREFIX%%/etc/rc.d/${name} $1 ${profile} + retcode="$?" + if [ "0${retcode}" -ne 0 ]; then + failed="${profile} (${retcode}) ${failed:-}" + else + success="${profile} ${success:-}" + fi + done + exit 0 + fi +fi + +command_args="-D ${postgresql%%PG_SUFFIX%%_data} ${postgresql%%PG_SUFFIX%%_flags}" + +postgresql%%PG_SUFFIX%%_command() +{ + ${su_cmd} -l ${postgresql%%PG_SUFFIX%%_user} -c "exec ${command} ${command_args} ${rc_arg}" +} + +postgresql%%PG_SUFFIX%%_initdb() +{ + ${su_cmd} -l -c ${postgresql%%PG_SUFFIX%%_login_class} ${postgresql%%PG_SUFFIX%%_user} -c "exec %%PREFIX%%/libexec/${name}/initdb ${postgresql%%PG_SUFFIX%%_initdb_flags} -D ${postgresql%%PG_SUFFIX%%_data} -U ${postgresql%%PG_SUFFIX%%_user}" +} + +run_rc_command "$1" diff --git a/databases/postgresql14-server/pkg-plist-client b/databases/postgresql14-server/pkg-plist-client --- a/databases/postgresql14-server/pkg-plist-client +++ b/databases/postgresql14-server/pkg-plist-client @@ -869,6 +869,8 @@ lib/libpq.a lib/libpq.so lib/libpq.so.5 +lib/libpgcommon.a +lib/libpgcommon_shlib.a lib/postgresql/pgxs/config/install-sh lib/postgresql/pgxs/config/missing lib/postgresql/pgxs/src/Makefile.global @@ -1176,103 +1178,103 @@ man/man7/VALUES.7.gz man/man7/WITH.7.gz %%PORTDOCS%%%%DOCSDIR%%/README-client -%%NLS%%share/locale/cs/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/he/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/it/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/it/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/it/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/pl/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/pl/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/vi/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/vi/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/vi/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpg-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpglib6-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/libpq5-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_config-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_dump-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pgscripts-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/psql-14.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/ecpg-14.mo +%%NLS%%share/locale/cs/LC_MESSAGES/ecpg-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/ecpglib6-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/libpq5-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_config-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_dump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pgscripts-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/psql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/ecpg-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/ecpglib6-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/libpq5-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_config-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_dump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pgscripts-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/psql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/ecpg-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/ecpglib6-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/libpq5-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_config-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_dump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pgscripts-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/psql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/ecpg-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/ecpglib6-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/libpq5-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_config-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_dump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pgscripts-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/psql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/ecpg-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/ecpglib6-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/libpq5-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_config-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_dump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pgscripts-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/psql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/he/LC_MESSAGES/pg_config-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/ecpg-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/ecpglib6-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_config-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/psql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/ecpg-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/ecpglib6-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/libpq5-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_config-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_dump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pgscripts-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/psql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/ecpg-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/ecpglib6-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/libpq5-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_config-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_dump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pgscripts-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/psql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/ecpg-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/ecpglib6-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_config-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpg-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/ecpglib6-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_config-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/ecpg-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/ecpglib6-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/libpq5-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_config-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_dump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pgscripts-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/psql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/ecpg-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/ecpglib6-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/libpq5-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_config-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_dump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pgscripts-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/psql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/ecpg-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/ecpglib6-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_config-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_dump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pgscripts-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/psql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/ecpg-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/ecpglib6-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/libpq5-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_config-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_dump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pgscripts-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/psql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/ecpg-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/ecpglib6-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/pg_config-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpg-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/ecpglib6-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/libpq5-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_config-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_dump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pgscripts-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/psql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/ecpg-%%PG_SUFFIX%%.mo %%DATADIR%%/pg_service.conf.sample %%DATADIR%%/psqlrc.sample diff --git a/databases/postgresql14-server/pkg-plist-contrib b/databases/postgresql14-server/pkg-plist-contrib --- a/databases/postgresql14-server/pkg-plist-contrib +++ b/databases/postgresql14-server/pkg-plist-contrib @@ -1,58 +1,58 @@ -bin/oid2name -bin/vacuumlo -include/postgresql/server/extension/cube/cubedata.h -include/postgresql/server/extension/hstore/hstore.h -include/postgresql/server/extension/isn/isn.h -include/postgresql/server/extension/ltree/ltree.h -include/postgresql/server/extension/seg/segdata.h -lib/postgresql/_int.so -lib/postgresql/adminpack.so -lib/postgresql/amcheck.so -lib/postgresql/auth_delay.so -lib/postgresql/auto_explain.so -lib/postgresql/autoinc.so -lib/postgresql/bloom.so -lib/postgresql/btree_gin.so -lib/postgresql/btree_gist.so -lib/postgresql/citext.so -lib/postgresql/cube.so -lib/postgresql/dblink.so -lib/postgresql/dict_int.so -lib/postgresql/dict_xsyn.so -lib/postgresql/earthdistance.so -lib/postgresql/file_fdw.so -lib/postgresql/fuzzystrmatch.so -lib/postgresql/hstore.so -lib/postgresql/insert_username.so -lib/postgresql/isn.so -lib/postgresql/lo.so -lib/postgresql/ltree.so -lib/postgresql/moddatetime.so -lib/postgresql/old_snapshot.so -lib/postgresql/pageinspect.so -lib/postgresql/passwordcheck.so -lib/postgresql/pg_buffercache.so -lib/postgresql/pg_freespacemap.so -lib/postgresql/pg_prewarm.so -lib/postgresql/pg_stat_statements.so -lib/postgresql/pg_surgery.so -lib/postgresql/pg_trgm.so -lib/postgresql/pg_visibility.so -lib/postgresql/pgcrypto.so -lib/postgresql/pgrowlocks.so -lib/postgresql/pgstattuple.so -%%XML%%lib/postgresql/pgxml.so -lib/postgresql/postgres_fdw.so -lib/postgresql/refint.so -lib/postgresql/seg.so -%%OPENSSL%%lib/postgresql/sslinfo.so -lib/postgresql/tablefunc.so -lib/postgresql/tcn.so -lib/postgresql/test_decoding.so -lib/postgresql/tsm_system_rows.so -lib/postgresql/tsm_system_time.so -lib/postgresql/unaccent.so -lib/postgresql/uuid-ossp.so +libexec/postgresql%%PG_SUFFIX%%/oid2name +libexec/postgresql%%PG_SUFFIX%%/vacuumlo +include/postgresql%%PG_SUFFIX%%/server/extension/cube/cubedata.h +include/postgresql%%PG_SUFFIX%%/server/extension/hstore/hstore.h +include/postgresql%%PG_SUFFIX%%/server/extension/isn/isn.h +include/postgresql%%PG_SUFFIX%%/server/extension/ltree/ltree.h +include/postgresql%%PG_SUFFIX%%/server/extension/seg/segdata.h +lib/postgresql%%PG_SUFFIX%%/_int.so +lib/postgresql%%PG_SUFFIX%%/adminpack.so +lib/postgresql%%PG_SUFFIX%%/amcheck.so +lib/postgresql%%PG_SUFFIX%%/auth_delay.so +lib/postgresql%%PG_SUFFIX%%/auto_explain.so +lib/postgresql%%PG_SUFFIX%%/autoinc.so +lib/postgresql%%PG_SUFFIX%%/bloom.so +lib/postgresql%%PG_SUFFIX%%/btree_gin.so +lib/postgresql%%PG_SUFFIX%%/btree_gist.so +lib/postgresql%%PG_SUFFIX%%/citext.so +lib/postgresql%%PG_SUFFIX%%/cube.so +lib/postgresql%%PG_SUFFIX%%/dblink.so +lib/postgresql%%PG_SUFFIX%%/dict_int.so +lib/postgresql%%PG_SUFFIX%%/dict_xsyn.so +lib/postgresql%%PG_SUFFIX%%/earthdistance.so +lib/postgresql%%PG_SUFFIX%%/file_fdw.so +lib/postgresql%%PG_SUFFIX%%/fuzzystrmatch.so +lib/postgresql%%PG_SUFFIX%%/hstore.so +lib/postgresql%%PG_SUFFIX%%/insert_username.so +lib/postgresql%%PG_SUFFIX%%/isn.so +lib/postgresql%%PG_SUFFIX%%/lo.so +lib/postgresql%%PG_SUFFIX%%/ltree.so +lib/postgresql%%PG_SUFFIX%%/moddatetime.so +lib/postgresql%%PG_SUFFIX%%/old_snapshot.so +lib/postgresql%%PG_SUFFIX%%/pageinspect.so +lib/postgresql%%PG_SUFFIX%%/passwordcheck.so +lib/postgresql%%PG_SUFFIX%%/pg_buffercache.so +lib/postgresql%%PG_SUFFIX%%/pg_freespacemap.so +lib/postgresql%%PG_SUFFIX%%/pg_prewarm.so +lib/postgresql%%PG_SUFFIX%%/pg_stat_statements.so +lib/postgresql%%PG_SUFFIX%%/pg_surgery.so +lib/postgresql%%PG_SUFFIX%%/pg_trgm.so +lib/postgresql%%PG_SUFFIX%%/pg_visibility.so +lib/postgresql%%PG_SUFFIX%%/pgcrypto.so +lib/postgresql%%PG_SUFFIX%%/pgrowlocks.so +lib/postgresql%%PG_SUFFIX%%/pgstattuple.so +%%XML%%lib/postgresql%%PG_SUFFIX%%/pgxml.so +lib/postgresql%%PG_SUFFIX%%/postgres_fdw.so +lib/postgresql%%PG_SUFFIX%%/refint.so +lib/postgresql%%PG_SUFFIX%%/seg.so +%%OPENSSL%%lib/postgresql%%PG_SUFFIX%%/sslinfo.so +lib/postgresql%%PG_SUFFIX%%/tablefunc.so +lib/postgresql%%PG_SUFFIX%%/tcn.so +lib/postgresql%%PG_SUFFIX%%/test_decoding.so +lib/postgresql%%PG_SUFFIX%%/tsm_system_rows.so +lib/postgresql%%PG_SUFFIX%%/tsm_system_time.so +lib/postgresql%%PG_SUFFIX%%/unaccent.so +lib/postgresql%%PG_SUFFIX%%/uuid-ossp.so %%PORTDOCS%%%%DOCSDIR%%/README-contrib %%PORTDOCS%%%%DOCSDIR%%/extension/README %%PORTDOCS%%%%DOCSDIR%%/extension/autoinc.example diff --git a/databases/postgresql14-server/pkg-plist-plperl b/databases/postgresql14-server/pkg-plist-plperl --- a/databases/postgresql14-server/pkg-plist-plperl +++ b/databases/postgresql14-server/pkg-plist-plperl @@ -1,15 +1,15 @@ -include/postgresql/server/plperl.h -include/postgresql/server/plperl_helpers.h -include/postgresql/server/ppport.h +include/postgresql%%PG_SUFFIX%%/server/plperl.h +include/postgresql%%PG_SUFFIX%%/server/plperl_helpers.h +include/postgresql%%PG_SUFFIX%%/server/ppport.h %%DATADIR%%/extension/plperlu--1.0.sql %%DATADIR%%/extension/plperl.control %%DATADIR%%/extension/plperl--1.0.sql %%DATADIR%%/extension/plperlu.control %%DOCSDIR%%/README-plperl -lib/postgresql/bool_plperl.so -lib/postgresql/hstore_plperl.so -lib/postgresql/jsonb_plperl.so -lib/postgresql/plperl.so +lib/postgresql%%PG_SUFFIX%%/bool_plperl.so +lib/postgresql%%PG_SUFFIX%%/hstore_plperl.so +lib/postgresql%%PG_SUFFIX%%/jsonb_plperl.so +lib/postgresql%%PG_SUFFIX%%/plperl.so %%DATADIR%%/extension/bool_plperl--1.0.sql %%DATADIR%%/extension/bool_plperl.control %%DATADIR%%/extension/bool_plperlu--1.0.sql diff --git a/databases/postgresql14-server/pkg-plist-plpython b/databases/postgresql14-server/pkg-plist-plpython --- a/databases/postgresql14-server/pkg-plist-plpython +++ b/databases/postgresql14-server/pkg-plist-plpython @@ -1,29 +1,29 @@ -include/postgresql/server/plpy_cursorobject.h -include/postgresql/server/plpy_elog.h -include/postgresql/server/plpy_exec.h -include/postgresql/server/plpy_main.h -include/postgresql/server/plpy_planobject.h -include/postgresql/server/plpy_plpymodule.h -include/postgresql/server/plpy_procedure.h -include/postgresql/server/plpy_resultobject.h -include/postgresql/server/plpy_spi.h -include/postgresql/server/plpy_subxactobject.h -include/postgresql/server/plpy_typeio.h -include/postgresql/server/plpy_util.h -include/postgresql/server/plpython.h -lib/postgresql/pgxs/src/pl/plpython/regress-python3-mangle.mk +include/postgresql%%PG_SUFFIX%%/server/plpy_cursorobject.h +include/postgresql%%PG_SUFFIX%%/server/plpy_elog.h +include/postgresql%%PG_SUFFIX%%/server/plpy_exec.h +include/postgresql%%PG_SUFFIX%%/server/plpy_main.h +include/postgresql%%PG_SUFFIX%%/server/plpy_planobject.h +include/postgresql%%PG_SUFFIX%%/server/plpy_plpymodule.h +include/postgresql%%PG_SUFFIX%%/server/plpy_procedure.h +include/postgresql%%PG_SUFFIX%%/server/plpy_resultobject.h +include/postgresql%%PG_SUFFIX%%/server/plpy_spi.h +include/postgresql%%PG_SUFFIX%%/server/plpy_subxactobject.h +include/postgresql%%PG_SUFFIX%%/server/plpy_typeio.h +include/postgresql%%PG_SUFFIX%%/server/plpy_util.h +include/postgresql%%PG_SUFFIX%%/server/plpython.h +lib/postgresql%%PG_SUFFIX%%/pgxs/src/pl/plpython/regress-python3-mangle.mk %%DOCSDIR%%/README-plpython -%%PYTHON2%%lib/postgresql/plpython2.so -%%PYTHON3%%lib/postgresql/plpython3.so +%%PYTHON2%%lib/postgresql%%PG_SUFFIX%%/plpython2.so +%%PYTHON3%%lib/postgresql%%PG_SUFFIX%%/plpython3.so %%PYTHON2%%%%DATADIR%%/extension/plpython2u--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpython2u.control %%PYTHON3%%%%DATADIR%%/extension/plpython3u--1.0.sql %%PYTHON3%%%%DATADIR%%/extension/plpython3u.control %%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu.control -lib/postgresql/hstore_plpython3.so -lib/postgresql/jsonb_plpython3.so -lib/postgresql/ltree_plpython3.so +lib/postgresql%%PG_SUFFIX%%/hstore_plpython3.so +lib/postgresql%%PG_SUFFIX%%/jsonb_plpython3.so +lib/postgresql%%PG_SUFFIX%%/ltree_plpython3.so %%DATADIR%%/extension/hstore_plpython2u--1.0.sql %%DATADIR%%/extension/hstore_plpython2u.control %%DATADIR%%/extension/hstore_plpython3u--1.0.sql diff --git a/databases/postgresql14-server/pkg-plist-pltcl b/databases/postgresql14-server/pkg-plist-pltcl --- a/databases/postgresql14-server/pkg-plist-pltcl +++ b/databases/postgresql14-server/pkg-plist-pltcl @@ -3,4 +3,4 @@ %%DATADIR%%/extension/pltclu.control %%DATADIR%%/extension/pltclu--1.0.sql %%DOCSDIR%%/README-pltcl -lib/postgresql/pltcl.so +lib/postgresql%%PG_SUFFIX%%/pltcl.so diff --git a/databases/postgresql14-server/pkg-plist-server b/databases/postgresql14-server/pkg-plist-server --- a/databases/postgresql14-server/pkg-plist-server +++ b/databases/postgresql14-server/pkg-plist-server @@ -1,750 +1,748 @@ -bin/initdb -bin/pg_archivecleanup -bin/pg_basebackup -bin/pg_checksums -bin/pg_controldata -bin/pg_ctl -bin/pg_receivewal -bin/pg_recvlogical -bin/pg_resetwal -bin/pg_rewind -bin/pg_test_fsync -bin/pg_test_timing -bin/pg_upgrade -bin/pg_waldump -bin/postgres -bin/postmaster -etc/periodic/daily/502.pgsql -include/postgresql/server/plpgsql.h -lib/libpgcommon.a -lib/libpgcommon_shlib.a -lib/postgresql/cyrillic_and_mic.so -lib/postgresql/dict_snowball.so -lib/postgresql/euc2004_sjis2004.so -lib/postgresql/euc_cn_and_mic.so -lib/postgresql/euc_jp_and_sjis.so -lib/postgresql/euc_kr_and_mic.so -lib/postgresql/euc_tw_and_big5.so -lib/postgresql/latin2_and_win1250.so -lib/postgresql/latin_and_mic.so -lib/postgresql/libpqwalreceiver.so -lib/postgresql/pgoutput.so -lib/postgresql/plpgsql.so -lib/postgresql/utf8_and_big5.so -lib/postgresql/utf8_and_cyrillic.so -lib/postgresql/utf8_and_euc2004.so -lib/postgresql/utf8_and_euc_cn.so -lib/postgresql/utf8_and_euc_jp.so -lib/postgresql/utf8_and_euc_kr.so -lib/postgresql/utf8_and_euc_tw.so -lib/postgresql/utf8_and_gb18030.so -lib/postgresql/utf8_and_gbk.so -lib/postgresql/utf8_and_iso8859.so -lib/postgresql/utf8_and_iso8859_1.so -lib/postgresql/utf8_and_johab.so -lib/postgresql/utf8_and_sjis.so -lib/postgresql/utf8_and_sjis2004.so -lib/postgresql/utf8_and_uhc.so -lib/postgresql/utf8_and_win.so -%%LLVM%%lib/postgresql/bitcode/postgres.index.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_bloom.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_inclusion.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_minmax.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_minmax_multi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_pageops.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_revmap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_tuple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_validate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/brin/brin_xlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/attmap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/bufmask.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/detoast.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/heaptuple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/indextuple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/printsimple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/printtup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/relation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/reloptions.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/scankey.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/session.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/syncscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/toast_compression.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/toast_internals.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/tupconvert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/common/tupdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginarrayproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginbtree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginbulk.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/gindatapage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginentrypage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginfast.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginget.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/gininsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginlogic.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginpostinglist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginutil.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginvacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gin/ginxlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistbuild.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistbuildbuffers.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistget.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistsplit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistutil.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistvacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/gist/gistxlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hash_xlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashfunc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashinsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashovfl.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashpage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashsearch.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashsort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashutil.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/hash/hashvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/heapam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/heapam_handler.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/heapam_visibility.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/heaptoast.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/hio.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/pruneheap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/rewriteheap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/vacuumlazy.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/heap/visibilitymap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/index/amapi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/index/amvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/index/genam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/index/indexam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtcompare.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtdedup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtinsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtpage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtsearch.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtsort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtsplitloc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/nbtree/nbtxlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/brindesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/clogdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/committsdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/dbasedesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/genericdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/gindesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/gistdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/hashdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/heapdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/logicalmsgdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/mxactdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/nbtdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/relmapdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/replorigindesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/seqdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/smgrdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/spgdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/standbydesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/tblspcdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/xactdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/rmgrdesc/xlogdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgdoinsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spginsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgkdtreeproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgquadtreeproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgtextproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgvacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgvalidate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/spgist/spgxlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/table/table.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/table/tableam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/table/tableamapi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/table/toast_helper.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/tablesample/bernoulli.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/tablesample/system.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/tablesample/tablesample.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/clog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/commit_ts.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/generic_xlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/multixact.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/parallel.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/rmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/slru.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/subtrans.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/timeline.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/transam.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/twophase.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/twophase_rmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/varsup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xact.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlogarchive.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlogfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xloginsert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlogreader.bc -%%LLVM%%lib/postgresql/bitcode/postgres/access/transam/xlogutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/bootstrap/bootparse.bc -%%LLVM%%lib/postgresql/bitcode/postgres/bootstrap/bootstrap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/aclchk.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/catalog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/dependency.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/heap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/index.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/indexing.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/namespace.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/objectaccess.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/objectaddress.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/partition.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_aggregate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_cast.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_collation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_constraint.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_conversion.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_db_role_setting.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_depend.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_enum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_inherits.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_largeobject.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_namespace.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_operator.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_proc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_publication.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_range.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_shdepend.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_subscription.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/pg_type.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/storage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/catalog/toasting.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/aggregatecmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/alter.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/amcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/analyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/async.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/cluster.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/collationcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/comment.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/constraint.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/conversioncmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/copy.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/copyfrom.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/copyfromparse.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/copyto.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/createas.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/dbcommands.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/define.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/discard.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/dropcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/event_trigger.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/explain.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/extension.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/foreigncmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/functioncmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/indexcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/lockcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/matview.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/opclasscmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/operatorcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/policy.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/portalcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/prepare.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/proclang.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/publicationcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/schemacmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/seclabel.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/sequence.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/statscmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/subscriptioncmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/tablecmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/tablespace.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/trigger.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/tsearchcmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/typecmds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/user.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/vacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/variable.bc -%%LLVM%%lib/postgresql/bitcode/postgres/commands/view.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execAmi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execAsync.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execCurrent.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execExpr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execExprInterp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execGrouping.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execIndexing.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execJunk.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execMain.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execParallel.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execPartition.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execProcnode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execReplication.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execSRF.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execScan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execTuples.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/execUtils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/functions.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/instrument.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeAgg.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeAppend.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeBitmapAnd.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeBitmapHeapscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeBitmapIndexscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeBitmapOr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeCtescan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeCustom.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeForeignscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeFunctionscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeGather.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeGatherMerge.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeGroup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeHash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeHashjoin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeIncrementalSort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeIndexonlyscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeIndexscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeLimit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeLockRows.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeMaterial.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeMergeAppend.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeMergejoin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeModifyTable.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeNamedtuplestorescan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeNestloop.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeProjectSet.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeRecursiveunion.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeResult.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeMemoize.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSamplescan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSeqscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSetOp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSubplan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeSubqueryscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeTableFuncscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeTidrangescan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeTidscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeUnique.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeValuesscan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeWindowAgg.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/nodeWorktablescan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/spi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/tqueue.bc -%%LLVM%%lib/postgresql/bitcode/postgres/executor/tstoreReceiver.bc -%%LLVM%%lib/postgresql/bitcode/postgres/foreign/foreign.bc -%%LLVM%%lib/postgresql/bitcode/postgres/jit/jit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/binaryheap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/bipartite_match.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/bloomfilter.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/dshash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/hyperloglog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/ilist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/integerset.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/knapsack.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/pairingheap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/lib/rbtree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/auth-scram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/auth.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/be-fsstubs.bc -%%LLVM%%%%GSSAPI%%lib/postgresql/bitcode/postgres/libpq/be-gssapi-common.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/be-secure-common.bc -%%LLVM%%%%GSSAPI%%lib/postgresql/bitcode/postgres/libpq/be-secure-gssapi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/be-secure.bc -%%LLVM%%%%SSL%%lib/postgresql/bitcode/postgres/libpq/be-secure-openssl.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/crypt.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/hba.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/ifaddr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/pqcomm.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/pqformat.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/pqmq.bc -%%LLVM%%lib/postgresql/bitcode/postgres/libpq/pqsignal.bc -%%LLVM%%lib/postgresql/bitcode/postgres/main/main.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/bitmapset.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/copyfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/equalfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/extensible.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/list.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/makefuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/nodeFuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/nodes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/outfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/params.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/print.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/read.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/readfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/tidbitmap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/nodes/value.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_copy.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_cx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_erx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_eval.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_main.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_misc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_mutation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_ox1.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_ox2.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_pmx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_pool.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_px.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_random.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_recombination.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/geqo/geqo_selection.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/allpaths.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/clausesel.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/costsize.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/equivclass.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/indxpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/joinpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/joinrels.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/pathkeys.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/path/tidpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/analyzejoins.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/createplan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/initsplan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/planagg.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/planmain.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/planner.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/setrefs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/plan/subselect.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/prep/prepagg.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/prep/prepjointree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/prep/prepqual.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/prep/preptlist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/prep/prepunion.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/appendinfo.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/clauses.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/inherit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/joininfo.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/orclauses.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/paramassign.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/pathnode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/placeholder.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/plancat.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/predtest.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/relnode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/restrictinfo.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/tlist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/optimizer/util/var.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/analyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/gram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_agg.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_clause.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_coerce.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_collate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_cte.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_enr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_expr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_func.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_node.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_oper.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_param.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_relation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_target.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_type.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parse_utilcmd.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/parser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/scan.bc -%%LLVM%%lib/postgresql/bitcode/postgres/parser/scansup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/partitioning/partbounds.bc -%%LLVM%%lib/postgresql/bitcode/postgres/partitioning/partdesc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/partitioning/partprune.bc -%%LLVM%%lib/postgresql/bitcode/postgres/port/atomics.bc -%%LLVM%%lib/postgresql/bitcode/postgres/port/pg_sema.bc -%%LLVM%%lib/postgresql/bitcode/postgres/port/pg_shmem.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/autovacuum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/bgworker.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/bgwriter.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/checkpointer.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/fork_process.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/interrupt.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/pgarch.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/pgstat.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/postmaster.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/startup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/syslogger.bc -%%LLVM%%lib/postgresql/bitcode/postgres/postmaster/walwriter.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regcomp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regerror.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regexec.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regexport.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regfree.bc -%%LLVM%%lib/postgresql/bitcode/postgres/regex/regprefix.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/backup_manifest.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/basebackup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/decode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/launcher.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/logical.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/logicalfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/message.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/origin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/proto.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/relation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/reorderbuffer.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/snapbuild.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/tablesync.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/logical/worker.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/repl_gram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/slot.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/slotfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/syncrep.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/syncrep_gram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/walreceiver.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/walreceiverfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/replication/walsender.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteDefine.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteHandler.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteManip.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteRemove.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteSearchCycle.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rewriteSupport.bc -%%LLVM%%lib/postgresql/bitcode/postgres/rewrite/rowsecurity.bc -%%LLVM%%lib/postgresql/bitcode/postgres/statistics/dependencies.bc -%%LLVM%%lib/postgresql/bitcode/postgres/statistics/extended_stats.bc -%%LLVM%%lib/postgresql/bitcode/postgres/statistics/mcv.bc -%%LLVM%%lib/postgresql/bitcode/postgres/statistics/mvdistinct.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/buf_init.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/buf_table.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/bufmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/freelist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/buffer/localbuf.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/buffile.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/copydir.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/fd.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/reinit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/file/sharedfileset.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/freespace/freespace.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/freespace/fsmpage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/freespace/indexfsm.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/barrier.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/dsm.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/dsm_impl.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/ipc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/ipci.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/latch.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/pmsignal.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/procarray.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/procsignal.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/shm_mq.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/shm_toc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/shmem.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/shmqueue.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/signalfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/sinval.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/sinvaladt.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/ipc/standby.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/large_object/inv_api.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/condition_variable.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/deadlock.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/lmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/lock.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/lwlock.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/lwlocknames.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/predicate.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/proc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/s_lock.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/lmgr/spin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/page/bufpage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/page/checksum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/page/itemptr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/smgr/md.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/smgr/smgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/storage/sync/sync.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/cmdtag.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/dest.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/fastpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/postgres.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/pquery.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tcop/utility.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict_ispell.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict_simple.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict_synonym.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/dict_thesaurus.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/regis.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/spell.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/to_tsany.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_locale.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_parse.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_typanalyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/ts_utils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/wparser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/tsearch/wparser_def.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/activity/backend_progress.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/activity/backend_status.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/activity/wait_event.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/acl.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/amutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/array_expanded.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/array_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/array_typanalyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/array_userfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/arrayfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/arraysubs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/arrayutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/ascii.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/bool.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/cash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/char.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/cryptohashfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/date.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/datetime.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/datum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/dbsize.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/domains.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/encode.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/enum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/expandeddatum.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/expandedrecord.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/float.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/format_type.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/formatting.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/genfile.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/geo_ops.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/geo_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/geo_spgist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/inet_cidr_ntop.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/inet_net_pton.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/int.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/int8.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/json.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonb.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonb_gin.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonb_op.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonb_util.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonbsubs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonpath.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonpath_exec.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/jsonpath_gram.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/like.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/like_support.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/lockfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/mac.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/mac8.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/mcxtfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/misc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/multirangetypes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/multirangetypes_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/name.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/network.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/network_gist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/network_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/network_spgist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/numeric.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/numutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/oid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/oracle_compat.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/orderedsetaggs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/partitionfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pg_locale.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pg_lsn.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pg_upgrade_support.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pgstatfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/pseudotypes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/quote.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes_gist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes_selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes_spgist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rangetypes_typanalyze.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/regexp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/regproc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/ri_triggers.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/rowtypes.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/ruleutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/selfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/timestamp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/trigfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsginidx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsgistidx.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_cleanup.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_gist.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_op.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_rewrite.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsquery_util.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsrank.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsvector.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsvector_op.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/tsvector_parser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/uuid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/varbit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/varchar.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/varlena.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/version.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/windowfuncs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/xid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/xid8funcs.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/adt/xml.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/attoptcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/catcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/evtcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/inval.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/lsyscache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/partcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/plancache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/relcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/relfilenodemap.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/relmapper.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/spccache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/syscache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/ts_cache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/cache/typcache.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/error/assert.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/error/elog.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/fmgr/dfmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/fmgr/fmgr.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/fmgr/funcapi.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/fmgrtab.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/hash/dynahash.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/hash/pg_crc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/init/globals.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/init/miscinit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/init/postinit.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/conv.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/mbutils.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/stringinfo_mb.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/wstrcmp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mb/wstrncmp.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/guc.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/help_config.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/pg_config.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/pg_controldata.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/pg_rusage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/ps_status.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/queryenvironment.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/queryjumble.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/rls.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/sampling.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/superuser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/timeout.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/misc/tzparser.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/aset.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/dsa.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/freepage.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/generation.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/mcxt.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/memdebug.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/portalmem.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/mmgr/slab.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/resowner/resowner.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/logtape.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/sharedtuplestore.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/sortsupport.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/tuplesort.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/sort/tuplestore.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/time/combocid.bc -%%LLVM%%lib/postgresql/bitcode/postgres/utils/time/snapmgr.bc -%%LLVM%%lib/postgresql/llvmjit.so -%%LLVM%%lib/postgresql/llvmjit_types.bc +libexec/postgresql%%PG_SUFFIX%%/initdb +libexec/postgresql%%PG_SUFFIX%%/pg_archivecleanup +libexec/postgresql%%PG_SUFFIX%%/pg_basebackup +libexec/postgresql%%PG_SUFFIX%%/pg_checksums +libexec/postgresql%%PG_SUFFIX%%/pg_controldata +libexec/postgresql%%PG_SUFFIX%%/pg_ctl +libexec/postgresql%%PG_SUFFIX%%/pg_receivewal +libexec/postgresql%%PG_SUFFIX%%/pg_recvlogical +libexec/postgresql%%PG_SUFFIX%%/pg_resetwal +libexec/postgresql%%PG_SUFFIX%%/pg_rewind +libexec/postgresql%%PG_SUFFIX%%/pg_test_fsync +libexec/postgresql%%PG_SUFFIX%%/pg_test_timing +libexec/postgresql%%PG_SUFFIX%%/pg_upgrade +libexec/postgresql%%PG_SUFFIX%%/pg_waldump +libexec/postgresql%%PG_SUFFIX%%/postgres +libexec/postgresql%%PG_SUFFIX%%/postmaster +etc/periodic/daily/502.postgresql%%PG_SUFFIX%% +include/postgresql%%PG_SUFFIX%%/server/plpgsql.h +lib/postgresql%%PG_SUFFIX%%/cyrillic_and_mic.so +lib/postgresql%%PG_SUFFIX%%/dict_snowball.so +lib/postgresql%%PG_SUFFIX%%/euc2004_sjis2004.so +lib/postgresql%%PG_SUFFIX%%/euc_cn_and_mic.so +lib/postgresql%%PG_SUFFIX%%/euc_jp_and_sjis.so +lib/postgresql%%PG_SUFFIX%%/euc_kr_and_mic.so +lib/postgresql%%PG_SUFFIX%%/euc_tw_and_big5.so +lib/postgresql%%PG_SUFFIX%%/latin2_and_win1250.so +lib/postgresql%%PG_SUFFIX%%/latin_and_mic.so +lib/postgresql%%PG_SUFFIX%%/libpqwalreceiver.so +lib/postgresql%%PG_SUFFIX%%/pgoutput.so +lib/postgresql%%PG_SUFFIX%%/plpgsql.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_big5.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_cyrillic.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc2004.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_cn.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_jp.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_kr.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_tw.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_gb18030.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_gbk.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_iso8859.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_iso8859_1.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_johab.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_sjis.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_sjis2004.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_uhc.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_win.so +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres.index.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_bloom.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_inclusion.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_minmax.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_minmax_multi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_pageops.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_revmap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_tuple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_validate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/brin/brin_xlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/attmap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/bufmask.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/detoast.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/heaptuple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/indextuple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/printsimple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/printtup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/relation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/reloptions.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/scankey.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/session.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/syncscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/toast_compression.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/toast_internals.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/tupconvert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/common/tupdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginarrayproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginbtree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginbulk.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/gindatapage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginentrypage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginfast.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginget.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/gininsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginlogic.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginpostinglist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginutil.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginvacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gin/ginxlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistbuild.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistbuildbuffers.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistget.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistsplit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistutil.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistvacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/gist/gistxlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hash_xlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashfunc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashinsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashovfl.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashpage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashsearch.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashsort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashutil.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/hash/hashvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/heapam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/heapam_handler.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/heapam_visibility.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/heaptoast.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/hio.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/pruneheap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/rewriteheap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/vacuumlazy.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/heap/visibilitymap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/index/amapi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/index/amvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/index/genam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/index/indexam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtcompare.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtdedup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtinsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtpage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtsearch.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtsort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtsplitloc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/nbtree/nbtxlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/brindesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/clogdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/committsdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/dbasedesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/genericdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/gindesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/gistdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/hashdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/heapdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/logicalmsgdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/mxactdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/nbtdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/relmapdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/replorigindesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/seqdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/smgrdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/spgdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/standbydesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/tblspcdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/xactdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/rmgrdesc/xlogdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgdoinsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spginsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgkdtreeproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgquadtreeproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgtextproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgvacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgvalidate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/spgist/spgxlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/table/table.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/table/tableam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/table/tableamapi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/table/toast_helper.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/tablesample/bernoulli.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/tablesample/system.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/tablesample/tablesample.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/clog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/commit_ts.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/generic_xlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/multixact.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/parallel.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/rmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/slru.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/subtrans.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/timeline.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/transam.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/twophase.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/twophase_rmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/varsup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xact.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlogarchive.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlogfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xloginsert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlogreader.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/access/transam/xlogutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/bootstrap/bootparse.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/bootstrap/bootstrap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/aclchk.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/catalog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/dependency.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/heap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/index.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/indexing.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/namespace.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/objectaccess.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/objectaddress.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/partition.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_aggregate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_cast.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_collation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_constraint.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_conversion.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_db_role_setting.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_depend.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_enum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_inherits.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_largeobject.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_namespace.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_operator.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_proc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_publication.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_range.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_shdepend.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_subscription.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/pg_type.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/storage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/catalog/toasting.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/aggregatecmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/alter.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/amcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/analyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/async.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/cluster.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/collationcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/comment.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/constraint.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/conversioncmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/copy.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/copyfrom.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/copyfromparse.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/copyto.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/createas.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/dbcommands.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/define.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/discard.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/dropcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/event_trigger.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/explain.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/extension.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/foreigncmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/functioncmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/indexcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/lockcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/matview.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/opclasscmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/operatorcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/policy.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/portalcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/prepare.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/proclang.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/publicationcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/schemacmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/seclabel.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/sequence.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/statscmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/subscriptioncmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/tablecmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/tablespace.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/trigger.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/tsearchcmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/typecmds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/user.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/vacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/variable.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/commands/view.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execAmi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execAsync.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execCurrent.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execExpr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execExprInterp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execGrouping.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execIndexing.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execJunk.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execMain.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execParallel.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execPartition.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execProcnode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execReplication.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execSRF.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execScan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execTuples.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/execUtils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/functions.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/instrument.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeAgg.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeAppend.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeBitmapAnd.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeBitmapHeapscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeBitmapIndexscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeBitmapOr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeCtescan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeCustom.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeForeignscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeFunctionscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeGather.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeGatherMerge.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeGroup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeHash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeHashjoin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeIncrementalSort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeIndexonlyscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeIndexscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeLimit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeLockRows.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeMaterial.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeMergeAppend.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeMergejoin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeModifyTable.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeNamedtuplestorescan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeNestloop.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeProjectSet.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeRecursiveunion.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeResult.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeMemoize.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSamplescan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSeqscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSetOp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSubplan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeSubqueryscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeTableFuncscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeTidrangescan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeTidscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeUnique.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeValuesscan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeWindowAgg.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/nodeWorktablescan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/spi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/tqueue.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/executor/tstoreReceiver.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/foreign/foreign.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/jit/jit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/binaryheap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/bipartite_match.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/bloomfilter.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/dshash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/hyperloglog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/ilist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/integerset.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/knapsack.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/pairingheap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/lib/rbtree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/auth-scram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/auth.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-fsstubs.bc +%%LLVM%%%%GSSAPI%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-gssapi-common.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-secure-common.bc +%%LLVM%%%%GSSAPI%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-secure-gssapi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-secure.bc +%%LLVM%%%%SSL%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/be-secure-openssl.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/crypt.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/hba.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/ifaddr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/pqcomm.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/pqformat.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/pqmq.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/libpq/pqsignal.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/main/main.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/bitmapset.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/copyfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/equalfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/extensible.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/list.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/makefuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/nodeFuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/nodes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/outfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/params.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/print.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/read.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/readfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/tidbitmap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/nodes/value.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_copy.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_cx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_erx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_eval.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_main.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_misc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_mutation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_ox1.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_ox2.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_pmx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_pool.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_px.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_random.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_recombination.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/geqo/geqo_selection.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/allpaths.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/clausesel.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/costsize.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/equivclass.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/indxpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/joinpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/joinrels.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/pathkeys.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/path/tidpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/analyzejoins.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/createplan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/initsplan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/planagg.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/planmain.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/planner.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/setrefs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/plan/subselect.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/prep/prepagg.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/prep/prepjointree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/prep/prepqual.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/prep/preptlist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/prep/prepunion.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/appendinfo.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/clauses.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/inherit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/joininfo.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/orclauses.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/paramassign.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/pathnode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/placeholder.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/plancat.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/predtest.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/relnode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/restrictinfo.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/tlist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/optimizer/util/var.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/analyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/gram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_agg.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_clause.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_coerce.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_collate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_cte.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_enr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_expr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_func.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_node.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_oper.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_param.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_relation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_target.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_type.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parse_utilcmd.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/parser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/scan.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/parser/scansup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/partitioning/partbounds.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/partitioning/partdesc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/partitioning/partprune.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/port/atomics.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/port/pg_sema.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/port/pg_shmem.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/autovacuum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/bgworker.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/bgwriter.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/checkpointer.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/fork_process.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/interrupt.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/pgarch.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/pgstat.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/postmaster.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/startup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/syslogger.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/postmaster/walwriter.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regcomp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regerror.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regexec.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regexport.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regfree.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/regex/regprefix.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/backup_manifest.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/basebackup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/decode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/launcher.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/logical.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/logicalfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/message.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/origin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/proto.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/relation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/reorderbuffer.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/snapbuild.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/tablesync.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/logical/worker.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/repl_gram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/slot.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/slotfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/syncrep.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/syncrep_gram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/walreceiver.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/walreceiverfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/replication/walsender.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteDefine.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteHandler.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteManip.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteRemove.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteSearchCycle.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rewriteSupport.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/rewrite/rowsecurity.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/statistics/dependencies.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/statistics/extended_stats.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/statistics/mcv.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/statistics/mvdistinct.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/buf_init.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/buf_table.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/bufmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/freelist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/buffer/localbuf.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/buffile.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/copydir.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/fd.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/reinit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/file/sharedfileset.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/freespace/freespace.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/freespace/fsmpage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/freespace/indexfsm.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/barrier.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/dsm.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/dsm_impl.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/ipc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/ipci.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/latch.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/pmsignal.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/procarray.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/procsignal.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/shm_mq.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/shm_toc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/shmem.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/shmqueue.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/signalfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/sinval.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/sinvaladt.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/ipc/standby.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/large_object/inv_api.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/condition_variable.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/deadlock.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/lmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/lock.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/lwlock.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/lwlocknames.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/predicate.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/proc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/s_lock.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/lmgr/spin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/page/bufpage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/page/checksum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/page/itemptr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/smgr/md.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/smgr/smgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/storage/sync/sync.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/cmdtag.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/dest.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/fastpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/postgres.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/pquery.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tcop/utility.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict_ispell.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict_simple.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict_synonym.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/dict_thesaurus.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/regis.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/spell.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/to_tsany.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_locale.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_parse.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_typanalyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/ts_utils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/wparser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/tsearch/wparser_def.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/activity/backend_progress.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/activity/backend_status.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/activity/wait_event.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/acl.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/amutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/array_expanded.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/array_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/array_typanalyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/array_userfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/arrayfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/arraysubs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/arrayutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/ascii.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/bool.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/cash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/char.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/cryptohashfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/date.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/datetime.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/datum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/dbsize.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/domains.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/encode.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/enum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/expandeddatum.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/expandedrecord.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/float.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/format_type.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/formatting.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/genfile.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/geo_ops.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/geo_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/geo_spgist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/inet_cidr_ntop.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/inet_net_pton.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/int.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/int8.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/json.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonb.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonb_gin.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonb_op.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonb_util.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonbsubs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonpath.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonpath_exec.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/jsonpath_gram.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/like.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/like_support.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/lockfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/mac.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/mac8.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/mcxtfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/misc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/multirangetypes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/multirangetypes_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/name.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/network.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/network_gist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/network_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/network_spgist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/numeric.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/numutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/oid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/oracle_compat.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/orderedsetaggs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/partitionfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pg_locale.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pg_lsn.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pg_upgrade_support.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pgstatfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/pseudotypes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/quote.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes_gist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes_selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes_spgist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rangetypes_typanalyze.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/regexp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/regproc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/ri_triggers.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/rowtypes.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/ruleutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/selfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/timestamp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/trigfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsginidx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsgistidx.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_cleanup.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_gist.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_op.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_rewrite.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsquery_util.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsrank.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsvector.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsvector_op.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/tsvector_parser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/uuid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/varbit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/varchar.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/varlena.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/version.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/windowfuncs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/xid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/xid8funcs.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/adt/xml.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/attoptcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/catcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/evtcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/inval.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/lsyscache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/partcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/plancache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/relcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/relfilenodemap.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/relmapper.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/spccache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/syscache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/ts_cache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/cache/typcache.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/error/assert.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/error/elog.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/fmgr/dfmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/fmgr/fmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/fmgr/funcapi.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/fmgrtab.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/hash/dynahash.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/hash/pg_crc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/init/globals.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/init/miscinit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/init/postinit.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/conv.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/mbutils.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/stringinfo_mb.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/wstrcmp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mb/wstrncmp.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/guc.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/help_config.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/pg_config.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/pg_controldata.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/pg_rusage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/ps_status.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/queryenvironment.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/queryjumble.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/rls.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/sampling.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/superuser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/timeout.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/misc/tzparser.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/aset.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/dsa.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/freepage.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/generation.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/mcxt.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/memdebug.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/portalmem.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/mmgr/slab.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/resowner/resowner.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/logtape.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/sharedtuplestore.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/sortsupport.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/tuplesort.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/sort/tuplestore.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/time/combocid.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/bitcode/postgres/utils/time/snapmgr.bc +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/llvmjit.so +%%LLVM%%lib/postgresql%%PG_SUFFIX%%/llvmjit_types.bc %%PORTDOCS%%%%DOCSDIR%%/README-server %%DATADIR%%/errcodes.txt %%DATADIR%%/extension/plpgsql--1.0.sql @@ -759,172 +757,172 @@ %%DATADIR%%/system_constraints.sql %%DATADIR%%/system_functions.sql %%DATADIR%%/system_views.sql -%%NLS%%share/locale/cs/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_test_timing-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/de/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_test_timing-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/el/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_test_timing-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/es/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_timing-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/fr/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/it/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_timing-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/ja/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/ko/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_timing-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/ru/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/sv/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/tr/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_test_timing-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/uk/LC_MESSAGES/postgres-14.mo -%%NLS%%share/locale/vi/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/vi/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_archivecleanup-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_checksums-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_resetwal-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_rewind-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_fsync-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_timing-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_upgrade-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_waldump-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/plpgsql-14.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/postgres-14.mo +%%NLS%%share/locale/cs/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/el/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/uk/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/vi/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_archivecleanup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_checksums-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_resetwal-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_fsync-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_test_timing-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_upgrade-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_waldump-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo %%TZDATA%%%%DATADIR%%/timezone/Africa/Abidjan %%TZDATA%%%%DATADIR%%/timezone/Africa/Accra %%TZDATA%%%%DATADIR%%/timezone/Africa/Addis_Ababa diff --git a/databases/postgresql96-pgtcl/Makefile b/databases/postgresql96-pgtcl/Makefile deleted file mode 100644 --- a/databases/postgresql96-pgtcl/Makefile +++ /dev/null @@ -1,9 +0,0 @@ -PORTREVISION= 0 -PKGNAMESUFFIX= -postgresql96 - -CONFLICTS= pgtcl pgtcl-postgresql9[01234] - -PGTCL_SLAVE= 9.6 -MASTERDIR= ${.CURDIR}/../pgtcl - -.include "${MASTERDIR}/Makefile" diff --git a/databases/postgresql96-server/files/502.pgsql.in b/databases/postgresql96-server/files/502.postgresql9.6.in rename from databases/postgresql96-server/files/502.pgsql.in rename to databases/postgresql96-server/files/502.postgresql9.6.in diff --git a/databases/postgresql96-server/files/dot.profile.in b/databases/postgresql96-server/files/dot.profile.in --- a/databases/postgresql96-server/files/dot.profile.in +++ b/databases/postgresql96-server/files/dot.profile.in @@ -5,7 +5,7 @@ export PATH PGLIB PGDATA -# if you use the periodic script from share/postgresql/502.pgsql, you +# if you use the periodic script from share/postgresql/502.postgresql%%PG_SUFFIX%%, you # can set these #PGDUMP_ARGS="-b -F c" #PGBACKUPDIR=${HOME}/backups diff --git a/databases/postgresql96-server/files/pkg-message-server.in b/databases/postgresql96-server/files/pkg-message-server.in --- a/databases/postgresql96-server/files/pkg-message-server.in +++ b/databases/postgresql96-server/files/pkg-message-server.in @@ -10,7 +10,7 @@ The port is set up to use autovacuum for new databases, but you might also want to vacuum and perhaps backup your database regularly. There -is a periodic script, %%PREFIX%%/etc/periodic/daily/502.pgsql, that +is a periodic script, %%PREFIX%%/etc/periodic/daily/502.postgresql%%PG_SUFFIX%%, that you may find useful. You can use it to backup and perform vacuum on all databases nightly. Per default, it performs `vacuum analyze'. See the script for instructions. For autovacuum settings, please review diff --git a/databases/postgresql96-server/files/pkgIndex.tcl.in b/databases/postgresql96-server/files/pkgIndex.tcl.in deleted file mode 100644 --- a/databases/postgresql96-server/files/pkgIndex.tcl.in +++ /dev/null @@ -1,4 +0,0 @@ -# Package-index file for Pgtcl-package. Enables you to load PostgreSQL -# interface functions right into you TCL-interpreter as simply as -# package require Pgtcl -package ifneeded Pgtcl 1.3 "load %%PREFIX%%/lib/libpgtcl.so" diff --git a/databases/postgresql96-server/files/postgresql.in b/databases/postgresql96-server/files/postgresql.in deleted file mode 100644 --- a/databases/postgresql96-server/files/postgresql.in +++ /dev/null @@ -1,115 +0,0 @@ -#!/bin/sh - -# PROVIDE: postgresql -# REQUIRE: DAEMON -# KEYWORD: shutdown -# -# Add the following line to /etc/rc.conf to enable PostgreSQL: -# -# postgresql_enable="YES" -# # optional -# postgresql_data="/var/db/%%PG_USER%%/data96" -# postgresql_flags="-w -s -m fast" -# postgresql_initdb_flags="--encoding=utf-8 --lc-collate=C" -# postgresql_login_class="default" -# postgresql_profiles="" -# -# See %%PREFIX%%/share/doc/postgresql/README-server for more info -# -# This scripts takes one of the following commands: -# -# start stop restart reload status initdb -# -# For postmaster startup options, edit ${postgresql_data}/postgresql.conf - -command=%%PREFIX%%/bin/pg_ctl - -. /etc/rc.subr - -load_rc_config postgresql - -# set defaults -postgresql_enable=${postgresql_enable:-"NO"} -postgresql_flags=${postgresql_flags:-"-w -s -m fast"} -postgresql_user=${postgresql_user:-"%%PG_USER%%"} -eval postgresql_data=${postgresql_data:-"~${postgresql_user}/data96"} -postgresql_login_class=${postgresql_login_class:-"default"} -postgresql_initdb_flags=${postgresql_initdb_flags:-"--encoding=utf-8 --lc-collate=C"} - -name=postgresql -rcvar=postgresql_enable -extra_commands="reload initdb" - -start_cmd="postgresql_command start" -stop_cmd="postgresql_command stop" -restart_cmd="postgresql_command restart" -reload_cmd="postgresql_command reload" -status_cmd="postgresql_command status" -promote_cmd="postgresql_command promote" - -initdb_cmd="postgresql_initdb" - -su_cmd="/usr/bin/su" - -if [ -n "$2" ]; then - profile="$2" - if [ "x${postgresql_profiles}" != "x" ]; then - eval postgresql_data="\${postgresql_${profile}_data:-}" - if [ "x${postgresql_data}" = "x" ]; then - echo "You must define a data directory (postgresql_${profile}_data)" - exit 1 - fi - eval postgresql_enable="\${postgresql_${profile}_enable:-${postgresql_enable}}" - eval postgresql_data="\${postgresql_${profile}_data:-${postgresql_data}}" - eval postgresql_flags="\${postgresql_${profile}_flags:-${postgresql_flags}}" - eval postgresql_initdb_flags="\${postgresql_${profile}_initdb_flags:-${postgresql_initdb_flags}}" - fi -else - if [ "x${postgresql_profiles}" != "x" -a "x$1" != "x" ]; then - for profile in ${postgresql_profiles}; do - eval _enable="\${postgresql_${profile}_enable}" - case "x${_enable:-${postgresql_enable}}" in - x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee]) - continue - ;; - x[Yy][Ee][Ss]) - ;; - *) - if test -z "$_enable"; then - _var=postgresql_enable - else - _var=postgresql_"${profile}"_enable - fi - echo "Bad value" \ - "'${_enable:-${postgresql_enable}}'" \ - "for ${_var}. " \ - "Profile ${profile} skipped." - continue - ;; - esac - echo "===> postgresql profile: ${profile}" - %%PREFIX%%/etc/rc.d/postgresql $1 ${profile} - retcode="$?" - if [ "0${retcode}" -ne 0 ]; then - failed="${profile} (${retcode}) ${failed:-}" - else - success="${profile} ${success:-}" - fi - done - exit 0 - fi -fi - -command_args="-D ${postgresql_data} ${postgresql_flags}" - -postgresql_command() -{ - ${su_cmd} -l ${postgresql_user} -c "exec ${command} ${command_args} ${rc_arg}" -} - -postgresql_initdb() -{ - ${su_cmd} -l -c ${postgresql_login_class} ${postgresql_user} -c "exec %%PREFIX%%/bin/initdb ${postgresql_initdb_flags} -D ${postgresql_data} -U ${postgresql_user}" -} - -run_rc_command "$1" diff --git a/databases/postgresql96-server/files/postgresql9.6.in b/databases/postgresql96-server/files/postgresql9.6.in new file mode 100644 --- /dev/null +++ b/databases/postgresql96-server/files/postgresql9.6.in @@ -0,0 +1,115 @@ +#!/bin/sh + +# PROVIDE: postgresql%%PG_SUFFIX%% +# REQUIRE: DAEMON +# KEYWORD: shutdown +# +# Add the following line to /etc/rc.conf to enable PostgreSQL: +# +# postgresql%%PG_SUFFIX%%_enable="YES" +# # optional +# postgresql%%PG_SUFFIX%%_data="/var/db/%%PG_USER%%/data%%PG_SUFFIX%%" +# postgresql%%PG_SUFFIX%%_flags="-w -s -m fast" +# postgresql%%PG_SUFFIX%%_initdb_flags="--encoding=utf-8 --lc-collate=C" +# postgresql%%PG_SUFFIX%%_login_class="default" +# postgresql%%PG_SUFFIX%%_profiles="" +# +# See %%PREFIX%%/share/doc/postgresql%%PG_SUFFIX%%/README-server for more info +# +# This scripts takes one of the following commands: +# +# start stop restart reload status initdb +# +# For postmaster startup options, edit ${postgresql%%PG_SUFFIX%%_data}/postgresql.conf + +command=%%PREFIX%%/libexec/postgresql%%PG_SUFFIX%%/pg_ctl + +. /etc/rc.subr + +load_rc_config postgresql%%PG_SUFFIX%% + +# set defaults +postgresql%%PG_SUFFIX%%_enable=${postgresql%%PG_SUFFIX%%_enable:-"NO"} +postgresql%%PG_SUFFIX%%_flags=${postgresql%%PG_SUFFIX%%_flags:-"-w -s -m fast"} +postgresql%%PG_SUFFIX%%_user=${postgresql%%PG_SUFFIX%%_user:-"%%PG_USER%%"} +eval postgresql%%PG_SUFFIX%%_data=${postgresql%%PG_SUFFIX%%_data:-"~${postgresql%%PG_SUFFIX%%_user}/data%%PG_SUFFIX%%"} +postgresql%%PG_SUFFIX%%_login_class=${postgresql%%PG_SUFFIX%%_login_class:-"default"} +postgresql%%PG_SUFFIX%%_initdb_flags=${postgresql%%PG_SUFFIX%%_initdb_flags:-"--encoding=utf-8 --lc-collate=C"} + +name=postgresql%%PG_SUFFIX%% +rcvar=${name}_enable +extra_commands="reload initdb" + +start_cmd="${name}_command start" +stop_cmd="${name}_command stop" +restart_cmd="${name}_command restart" +reload_cmd="${name}_command reload" +status_cmd="${name}_command status" +promote_cmd="${name}_command promote" + +initdb_cmd="${name}_initdb" + +su_cmd="/usr/bin/su" + +if [ -n "$2" ]; then + profile="$2" + if [ "x${postgresql%%PG_SUFFIX%%_profiles}" != "x" ]; then + eval ${name}_data="\${${name}_${profile}_data:-}" + if [ "x${postgresql%%PG_SUFFIX%%_data}" = "x" ]; then + echo "You must define a data directory (${name}_${profile}_data)" + exit 1 + fi + eval ${name}_enable="\${${name}_${profile}_enable:-\${${name}_enable}}" + eval ${name}_data="\${${name}_${profile}_data:-\${${name}_data}}" + eval ${name}_flags="\${${name}_${profile}_flags:-\${${name}_flags}}" + eval ${name}_initdb_flags="\${${name}_${profile}_initdb_flags:-\${${name}_initdb_flags}}" + fi +else + if [ "x${postgresql%%PG_SUFFIX%%_profiles}" != "x" -a "x$1" != "x" ]; then + for profile in ${postgresql%%PG_SUFFIX%%_profiles}; do + eval _enable="\${${name}_${profile}_enable}" + case "x${_enable:-${postgresql%%PG_SUFFIX%%_enable}}" in + x|x[Nn][Oo]|x[Nn][Oo][Nn][Ee]) + continue + ;; + x[Yy][Ee][Ss]) + ;; + *) + if test -z "$_enable"; then + _var=${name}_enable + else + _var=${name}_"${profile}"_enable + fi + echo "Bad value" \ + "'${_enable:-${postgresql%%PG_SUFFIX%%_enable}}'" \ + "for ${_var}. " \ + "Profile ${profile} skipped." + continue + ;; + esac + echo "===> ${name} profile: ${profile}" + %%PREFIX%%/etc/rc.d/${name} $1 ${profile} + retcode="$?" + if [ "0${retcode}" -ne 0 ]; then + failed="${profile} (${retcode}) ${failed:-}" + else + success="${profile} ${success:-}" + fi + done + exit 0 + fi +fi + +command_args="-D ${postgresql%%PG_SUFFIX%%_data} ${postgresql%%PG_SUFFIX%%_flags}" + +postgresql%%PG_SUFFIX%%_command() +{ + ${su_cmd} -l ${postgresql%%PG_SUFFIX%%_user} -c "exec ${command} ${command_args} ${rc_arg}" +} + +postgresql%%PG_SUFFIX%%_initdb() +{ + ${su_cmd} -l -c ${postgresql%%PG_SUFFIX%%_login_class} ${postgresql%%PG_SUFFIX%%_user} -c "exec %%PREFIX%%/libexec/${name}/initdb ${postgresql%%PG_SUFFIX%%_initdb_flags} -D ${postgresql%%PG_SUFFIX%%_data} -U ${postgresql%%PG_SUFFIX%%_user}" +} + +run_rc_command "$1" diff --git a/databases/postgresql96-server/pkg-plist-contrib b/databases/postgresql96-server/pkg-plist-contrib --- a/databases/postgresql96-server/pkg-plist-contrib +++ b/databases/postgresql96-server/pkg-plist-contrib @@ -1,54 +1,54 @@ -bin/oid2name -bin/pg_standby -bin/vacuumlo -lib/postgresql/_int.so -lib/postgresql/adminpack.so -lib/postgresql/auth_delay.so -lib/postgresql/auto_explain.so -lib/postgresql/autoinc.so -lib/postgresql/bloom.so -lib/postgresql/btree_gin.so -lib/postgresql/btree_gist.so -lib/postgresql/chkpass.so -lib/postgresql/citext.so -lib/postgresql/cube.so -lib/postgresql/dblink.so -lib/postgresql/dict_int.so -lib/postgresql/dict_xsyn.so -lib/postgresql/earthdistance.so -lib/postgresql/file_fdw.so -lib/postgresql/fuzzystrmatch.so -lib/postgresql/hstore.so -lib/postgresql/insert_username.so -lib/postgresql/isn.so -lib/postgresql/lo.so -lib/postgresql/ltree.so -lib/postgresql/moddatetime.so -lib/postgresql/pageinspect.so -lib/postgresql/passwordcheck.so -lib/postgresql/pg_buffercache.so -lib/postgresql/pg_freespacemap.so -lib/postgresql/pg_prewarm.so -lib/postgresql/pg_stat_statements.so -lib/postgresql/pg_trgm.so -lib/postgresql/pg_visibility.so -lib/postgresql/pgcrypto.so -lib/postgresql/pgrowlocks.so -lib/postgresql/pgstattuple.so -%%XML%%lib/postgresql/pgxml.so -lib/postgresql/postgres_fdw.so -lib/postgresql/refint.so -lib/postgresql/seg.so -lib/postgresql/sslinfo.so -lib/postgresql/tablefunc.so -lib/postgresql/tcn.so -lib/postgresql/test_decoding.so -lib/postgresql/timetravel.so -lib/postgresql/tsearch2.so -lib/postgresql/tsm_system_rows.so -lib/postgresql/tsm_system_time.so -lib/postgresql/unaccent.so -lib/postgresql/uuid-ossp.so +libexec/postgresql%%PG_SUFFIX%%/oid2name +libexec/postgresql%%PG_SUFFIX%%/pg_standby +libexec/postgresql%%PG_SUFFIX%%/vacuumlo +lib/postgresql%%PG_SUFFIX%%/_int.so +lib/postgresql%%PG_SUFFIX%%/adminpack.so +lib/postgresql%%PG_SUFFIX%%/auth_delay.so +lib/postgresql%%PG_SUFFIX%%/auto_explain.so +lib/postgresql%%PG_SUFFIX%%/autoinc.so +lib/postgresql%%PG_SUFFIX%%/bloom.so +lib/postgresql%%PG_SUFFIX%%/btree_gin.so +lib/postgresql%%PG_SUFFIX%%/btree_gist.so +lib/postgresql%%PG_SUFFIX%%/chkpass.so +lib/postgresql%%PG_SUFFIX%%/citext.so +lib/postgresql%%PG_SUFFIX%%/cube.so +lib/postgresql%%PG_SUFFIX%%/dblink.so +lib/postgresql%%PG_SUFFIX%%/dict_int.so +lib/postgresql%%PG_SUFFIX%%/dict_xsyn.so +lib/postgresql%%PG_SUFFIX%%/earthdistance.so +lib/postgresql%%PG_SUFFIX%%/file_fdw.so +lib/postgresql%%PG_SUFFIX%%/fuzzystrmatch.so +lib/postgresql%%PG_SUFFIX%%/hstore.so +lib/postgresql%%PG_SUFFIX%%/insert_username.so +lib/postgresql%%PG_SUFFIX%%/isn.so +lib/postgresql%%PG_SUFFIX%%/lo.so +lib/postgresql%%PG_SUFFIX%%/ltree.so +lib/postgresql%%PG_SUFFIX%%/moddatetime.so +lib/postgresql%%PG_SUFFIX%%/pageinspect.so +lib/postgresql%%PG_SUFFIX%%/passwordcheck.so +lib/postgresql%%PG_SUFFIX%%/pg_buffercache.so +lib/postgresql%%PG_SUFFIX%%/pg_freespacemap.so +lib/postgresql%%PG_SUFFIX%%/pg_prewarm.so +lib/postgresql%%PG_SUFFIX%%/pg_stat_statements.so +lib/postgresql%%PG_SUFFIX%%/pg_trgm.so +lib/postgresql%%PG_SUFFIX%%/pg_visibility.so +lib/postgresql%%PG_SUFFIX%%/pgcrypto.so +lib/postgresql%%PG_SUFFIX%%/pgrowlocks.so +lib/postgresql%%PG_SUFFIX%%/pgstattuple.so +%%XML%%lib/postgresql%%PG_SUFFIX%%/pgxml.so +lib/postgresql%%PG_SUFFIX%%/postgres_fdw.so +lib/postgresql%%PG_SUFFIX%%/refint.so +lib/postgresql%%PG_SUFFIX%%/seg.so +lib/postgresql%%PG_SUFFIX%%/sslinfo.so +lib/postgresql%%PG_SUFFIX%%/tablefunc.so +lib/postgresql%%PG_SUFFIX%%/tcn.so +lib/postgresql%%PG_SUFFIX%%/test_decoding.so +lib/postgresql%%PG_SUFFIX%%/timetravel.so +lib/postgresql%%PG_SUFFIX%%/tsearch2.so +lib/postgresql%%PG_SUFFIX%%/tsm_system_rows.so +lib/postgresql%%PG_SUFFIX%%/tsm_system_time.so +lib/postgresql%%PG_SUFFIX%%/unaccent.so +lib/postgresql%%PG_SUFFIX%%/uuid-ossp.so %%PORTDOCS%%%%DOCSDIR%%/README-contrib %%PORTDOCS%%%%DOCSDIR%%/extension/README %%PORTDOCS%%%%DOCSDIR%%/extension/autoinc.example diff --git a/databases/postgresql96-server/pkg-plist-plperl b/databases/postgresql96-server/pkg-plist-plperl --- a/databases/postgresql96-server/pkg-plist-plperl +++ b/databases/postgresql96-server/pkg-plist-plperl @@ -1,5 +1,5 @@ -include/postgresql/server/plperl.h -include/postgresql/server/ppport.h +include/postgresql%%PG_SUFFIX%%/server/plperl.h +include/postgresql%%PG_SUFFIX%%/server/ppport.h %%DATADIR%%/extension/plperlu--1.0.sql %%DATADIR%%/extension/plperl.control %%DATADIR%%/extension/plperl--1.0.sql @@ -7,8 +7,8 @@ %%DATADIR%%/extension/plperlu--unpackaged--1.0.sql %%DATADIR%%/extension/plperl--unpackaged--1.0.sql %%DOCSDIR%%/README-plperl -lib/postgresql/hstore_plperl.so -lib/postgresql/plperl.so +lib/postgresql%%PG_SUFFIX%%/hstore_plperl.so +lib/postgresql%%PG_SUFFIX%%/plperl.so %%DATADIR%%/extension/hstore_plperl--1.0.sql %%DATADIR%%/extension/hstore_plperl.control %%DATADIR%%/extension/hstore_plperlu--1.0.sql diff --git a/databases/postgresql96-server/pkg-plist-plpython b/databases/postgresql96-server/pkg-plist-plpython --- a/databases/postgresql96-server/pkg-plist-plpython +++ b/databases/postgresql96-server/pkg-plist-plpython @@ -1,8 +1,8 @@ -include/postgresql/server/plpy_util.h -include/postgresql/server/plpython.h +include/postgresql%%PG_SUFFIX%%/server/plpy_util.h +include/postgresql%%PG_SUFFIX%%/server/plpython.h %%DOCSDIR%%/README-plpython -%%PYTHON2%%lib/postgresql/plpython2.so -%%PYTHON3%%lib/postgresql/plpython3.so +%%PYTHON2%%lib/postgresql%%PG_SUFFIX%%/plpython2.so +%%PYTHON3%%lib/postgresql%%PG_SUFFIX%%/plpython3.so %%PYTHON2%%%%DATADIR%%/extension/plpython2u--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpython2u--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpython2u.control @@ -12,8 +12,8 @@ %%PYTHON2%%%%DATADIR%%/extension/plpythonu--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu--unpackaged--1.0.sql %%PYTHON2%%%%DATADIR%%/extension/plpythonu.control -lib/postgresql/hstore_plpython3.so -lib/postgresql/ltree_plpython3.so +lib/postgresql%%PG_SUFFIX%%/hstore_plpython3.so +lib/postgresql%%PG_SUFFIX%%/ltree_plpython3.so %%DATADIR%%/extension/hstore_plpython2u--1.0.sql %%DATADIR%%/extension/hstore_plpython2u.control %%DATADIR%%/extension/hstore_plpython3u--1.0.sql diff --git a/databases/postgresql96-server/pkg-plist-pltcl b/databases/postgresql96-server/pkg-plist-pltcl --- a/databases/postgresql96-server/pkg-plist-pltcl +++ b/databases/postgresql96-server/pkg-plist-pltcl @@ -5,8 +5,8 @@ %%DATADIR%%/extension/pltcl--unpackaged--1.0.sql %%DATADIR%%/extension/pltclu--unpackaged--1.0.sql %%DOCSDIR%%/README-pltcl -lib/postgresql/pltcl.so -bin/pltcl_loadmod -bin/pltcl_delmod -bin/pltcl_listmod +lib/postgresql%%PG_SUFFIX%%/pltcl.so +libexec/postgresql%%PG_SUFFIX%%/pltcl_loadmod +libexec/postgresql%%PG_SUFFIX%%/pltcl_delmod +libexec/postgresql%%PG_SUFFIX%%/pltcl_listmod %%DATADIR%%/unknown.pltcl diff --git a/databases/postgresql96-server/pkg-plist-server b/databases/postgresql96-server/pkg-plist-server --- a/databases/postgresql96-server/pkg-plist-server +++ b/databases/postgresql96-server/pkg-plist-server @@ -1,50 +1,50 @@ -bin/initdb -bin/pg_controldata -bin/pg_ctl -bin/pg_receivexlog -bin/pg_resetxlog -bin/pg_recvlogical -bin/pg_archivecleanup -bin/pg_basebackup -bin/pg_rewind -bin/pg_test_fsync -bin/pg_test_timing -bin/pg_xlogdump -bin/pg_upgrade -bin/postgres -bin/postmaster -etc/periodic/daily/502.pgsql -include/postgresql/server/plpgsql.h -lib/postgresql/ascii_and_mic.so -lib/postgresql/cyrillic_and_mic.so -lib/postgresql/dict_snowball.so -lib/postgresql/euc2004_sjis2004.so -lib/postgresql/euc_cn_and_mic.so -lib/postgresql/euc_jp_and_sjis.so -lib/postgresql/euc_kr_and_mic.so -lib/postgresql/euc_tw_and_big5.so -lib/postgresql/latin2_and_win1250.so -lib/postgresql/latin_and_mic.so -lib/postgresql/libpqwalreceiver.so -lib/postgresql/plpgsql.so -lib/postgresql/utf8_and_ascii.so -lib/postgresql/utf8_and_big5.so -lib/postgresql/utf8_and_cyrillic.so -lib/postgresql/utf8_and_euc2004.so -lib/postgresql/utf8_and_euc_cn.so -lib/postgresql/utf8_and_euc_jp.so -lib/postgresql/utf8_and_euc_kr.so -lib/postgresql/utf8_and_euc_tw.so -lib/postgresql/utf8_and_gb18030.so -lib/postgresql/utf8_and_gbk.so -lib/postgresql/utf8_and_iso8859.so -lib/postgresql/utf8_and_iso8859_1.so -lib/postgresql/utf8_and_johab.so -lib/postgresql/utf8_and_sjis.so -lib/postgresql/utf8_and_sjis2004.so -lib/postgresql/utf8_and_uhc.so -lib/postgresql/utf8_and_win.so -lib/libpgcommon.a +libexec/postgresql%%PG_SUFFIX%%/initdb +libexec/postgresql%%PG_SUFFIX%%/pg_controldata +libexec/postgresql%%PG_SUFFIX%%/pg_ctl +libexec/postgresql%%PG_SUFFIX%%/pg_receivexlog +libexec/postgresql%%PG_SUFFIX%%/pg_resetxlog +libexec/postgresql%%PG_SUFFIX%%/pg_recvlogical +libexec/postgresql%%PG_SUFFIX%%/pg_archivecleanup +libexec/postgresql%%PG_SUFFIX%%/pg_basebackup +libexec/postgresql%%PG_SUFFIX%%/pg_rewind +libexec/postgresql%%PG_SUFFIX%%/pg_test_fsync +libexec/postgresql%%PG_SUFFIX%%/pg_test_timing +libexec/postgresql%%PG_SUFFIX%%/pg_xlogdump +libexec/postgresql%%PG_SUFFIX%%/pg_upgrade +libexec/postgresql%%PG_SUFFIX%%/postgres +libexec/postgresql%%PG_SUFFIX%%/postmaster +etc/periodic/daily/502.postgresql%%PG_SUFFIX%% +include/postgresql%%PG_SUFFIX%%/server/plpgsql.h +lib/postgresql%%PG_SUFFIX%%/ascii_and_mic.so +lib/postgresql%%PG_SUFFIX%%/cyrillic_and_mic.so +lib/postgresql%%PG_SUFFIX%%/dict_snowball.so +lib/postgresql%%PG_SUFFIX%%/euc2004_sjis2004.so +lib/postgresql%%PG_SUFFIX%%/euc_cn_and_mic.so +lib/postgresql%%PG_SUFFIX%%/euc_jp_and_sjis.so +lib/postgresql%%PG_SUFFIX%%/euc_kr_and_mic.so +lib/postgresql%%PG_SUFFIX%%/euc_tw_and_big5.so +lib/postgresql%%PG_SUFFIX%%/latin2_and_win1250.so +lib/postgresql%%PG_SUFFIX%%/latin_and_mic.so +lib/postgresql%%PG_SUFFIX%%/libpqwalreceiver.so +lib/postgresql%%PG_SUFFIX%%/plpgsql.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_ascii.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_big5.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_cyrillic.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc2004.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_cn.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_jp.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_kr.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_euc_tw.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_gb18030.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_gbk.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_iso8859.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_iso8859_1.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_johab.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_sjis.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_sjis2004.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_uhc.so +lib/postgresql%%PG_SUFFIX%%/utf8_and_win.so +lib/postgresql%%PG_SUFFIX%%/libpgcommon.a %%PORTDOCS%%%%DOCSDIR%%/README-server %%DATADIR%%/conversion_create.sql %%DATADIR%%/information_schema.sql @@ -60,112 +60,112 @@ %%DATADIR%%/extension/plpgsql--unpackaged--1.0.sql %%DATADIR%%/extension/plpgsql.control %%DATADIR%%/postgres.shdescription -%%NLS%%share/locale/cs/LC_MESSAGES/initdb-9.6.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-9.6.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-9.6.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-9.6.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetxlog-9.6.mo -%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-9.6.mo -%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-9.6.mo -%%NLS%%share/locale/de/LC_MESSAGES/initdb-9.6.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-9.6.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-9.6.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-9.6.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_resetxlog-9.6.mo -%%NLS%%share/locale/de/LC_MESSAGES/pg_rewind-9.6.mo -%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-9.6.mo -%%NLS%%share/locale/de/LC_MESSAGES/postgres-9.6.mo -%%NLS%%share/locale/es/LC_MESSAGES/initdb-9.6.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-9.6.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-9.6.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-9.6.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_resetxlog-9.6.mo -%%NLS%%share/locale/es/LC_MESSAGES/pg_rewind-9.6.mo -%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-9.6.mo -%%NLS%%share/locale/es/LC_MESSAGES/postgres-9.6.mo -%%NLS%%share/locale/fr/LC_MESSAGES/initdb-9.6.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-9.6.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-9.6.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-9.6.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetxlog-9.6.mo -%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-9.6.mo -%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-9.6.mo -%%NLS%%share/locale/fr/LC_MESSAGES/postgres-9.6.mo -%%NLS%%share/locale/id/LC_MESSAGES/postgres-9.6.mo -%%NLS%%share/locale/it/LC_MESSAGES/initdb-9.6.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_basebackup-9.6.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-9.6.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-9.6.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_resetxlog-9.6.mo -%%NLS%%share/locale/it/LC_MESSAGES/pg_rewind-9.6.mo -%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-9.6.mo -%%NLS%%share/locale/it/LC_MESSAGES/postgres-9.6.mo -%%NLS%%share/locale/ja/LC_MESSAGES/initdb-9.6.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_basebackup-9.6.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-9.6.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-9.6.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetxlog-9.6.mo -%%NLS%%share/locale/ja/LC_MESSAGES/pg_rewind-9.6.mo -%%NLS%%share/locale/ja/LC_MESSAGES/plpgsql-9.6.mo -%%NLS%%share/locale/ja/LC_MESSAGES/postgres-9.6.mo -%%NLS%%share/locale/ko/LC_MESSAGES/initdb-9.6.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_basebackup-9.6.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_controldata-9.6.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_ctl-9.6.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_resetxlog-9.6.mo -%%NLS%%share/locale/ko/LC_MESSAGES/pg_rewind-9.6.mo -%%NLS%%share/locale/ko/LC_MESSAGES/plpgsql-9.6.mo -%%NLS%%share/locale/ko/LC_MESSAGES/postgres-9.6.mo -%%NLS%%share/locale/pl/LC_MESSAGES/initdb-9.6.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_basebackup-9.6.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_controldata-9.6.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_ctl-9.6.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_resetxlog-9.6.mo -%%NLS%%share/locale/pl/LC_MESSAGES/pg_rewind-9.6.mo -%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-9.6.mo -%%NLS%%share/locale/pl/LC_MESSAGES/postgres-9.6.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/initdb-9.6.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_basebackup-9.6.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_controldata-9.6.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_ctl-9.6.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_resetxlog-9.6.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_rewind-9.6.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-9.6.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/postgres-9.6.mo -%%NLS%%share/locale/ro/LC_MESSAGES/plpgsql-9.6.mo -%%NLS%%share/locale/ru/LC_MESSAGES/initdb-9.6.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-9.6.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_controldata-9.6.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_ctl-9.6.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_resetxlog-9.6.mo -%%NLS%%share/locale/ru/LC_MESSAGES/pg_rewind-9.6.mo -%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-9.6.mo -%%NLS%%share/locale/ru/LC_MESSAGES/postgres-9.6.mo -%%NLS%%share/locale/sv/LC_MESSAGES/initdb-9.6.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_basebackup-9.6.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_controldata-9.6.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-9.6.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_resetxlog-9.6.mo -%%NLS%%share/locale/sv/LC_MESSAGES/pg_rewind-9.6.mo -%%NLS%%share/locale/sv/LC_MESSAGES/plpgsql-9.6.mo -%%NLS%%share/locale/sv/LC_MESSAGES/postgres-9.6.mo -%%NLS%%share/locale/tr/LC_MESSAGES/initdb-9.6.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_basebackup-9.6.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_controldata-9.6.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_ctl-9.6.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_resetxlog-9.6.mo -%%NLS%%share/locale/tr/LC_MESSAGES/pg_rewind-9.6.mo -%%NLS%%share/locale/tr/LC_MESSAGES/plpgsql-9.6.mo -%%NLS%%share/locale/tr/LC_MESSAGES/postgres-9.6.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-9.6.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-9.6.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-9.6.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-9.6.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_resetxlog-9.6.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_rewind-9.6.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/plpgsql-9.6.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/postgres-9.6.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/plpgsql-9.6.mo +%%NLS%%share/locale/cs/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_resetxlog-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/cs/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_resetxlog-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/de/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_resetxlog-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/es/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_resetxlog-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/fr/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/id/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_resetxlog-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/it/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_resetxlog-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ja/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_resetxlog-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ko/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_resetxlog-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pl/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_resetxlog-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ro/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_resetxlog-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/ru/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_resetxlog-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/sv/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_resetxlog-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/tr/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/initdb-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_basebackup-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_controldata-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_ctl-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_resetxlog-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/pg_rewind-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/postgres-%%PG_SUFFIX%%.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/plpgsql-%%PG_SUFFIX%%.mo %%DATADIR%%/snowball_create.sql %%TZDATA%%%%DATADIR%%/timezone/Africa/Abidjan %%TZDATA%%%%DATADIR%%/timezone/Africa/Accra