------------------------------------------------------------------------------- Fix Number: FJSVfsep-SV-ORJ-12-1200-12.el7.x86_64 Product Names and Versions: Linux64-EM64T FUJITSU Enterprise Postgres Advanced Edition 12 Creation date: 08.03.2023 ------------------------------------------------------------------------------- [High Risk Activity] The Customer acknowledges and agrees that the Product is designed, developed and manufactured as contemplated for general use, including without limitation, general office use, personal use, household use, and ordinary industrial use, but is not designed, developed and manufactured as contemplated for use accompanying fatal risks or dangers that, unless extremely high safety is secured, could lead directly to death, personal injury, severe physical damage or other loss (hereinafter "High Safety Required Use"), including without limitation, nuclear reaction control in nuclear facility, aircraft flight control, air traffic control, mass transport control, medical life support system, missile launch control in weapon system. The Customer, shall not use the Product without securing the sufficient safety required for the High Safety Required Use. In addition, Fujitsu (or other affiliate's name) shall not be liable against the Customer and/or any third party for any claims or damages arising in connection with the High Safety Required Use of the Product. Product and company names mentioned in this manual are the trademarks or registered trademarks of their respective owners. Copyright 2020-2023 FUJITSU LIMITED ------------------------------------------------------------------------------- [Notes] - This is the readme for RHEL 7. - This patch can be applied only to the database server. - Apply the following patches at the same time. - FJSVfsep-SV-12-1200-12.el7.x86_64.rpm - FJSVfsep-SV-ORJ-12-1200-12.el7.x86_64.rpm - FJSVfsep-SV-CM-12-1200-12.el7.x86_64.rpm - FJSVfsep-AUDIT-12-1200-12.el7.x86_64.rpm - FJSVfsep-ULOG-12-1200-12.el7.x86_64.rpm - Please ensure that the following steps are carried out before applying or restoring this patch. - Stop all the running instances, Mirroring Controller and Pgpool-II. - If you are using any of the following OSS, execute the following command. - oracle_fdw - pg_bigm - pg_hint_plan - pg_dbms_stats - pg_repack - pg_rman - pg_statsinfo - Pgpool-II - pgaudit [Execute command] If the version of OSS does not change as a result of applying or restoring this fix, implement the following. 1) Become superuser. $ su - Password:****** 2) Run the following command. # cp -r /OSS//* \ "": Indicates the OSS name. If the version of OSS changes as a result of this fix, implement the following. 1) Become superuser. $ su - Password:****** 2) Run the following command. # cp -r /OSS//* \ 3) Implement the following SQL for databases that use OSS. 3-1) Perform ALTER EXTENSION if you are using one of the following OSS. - oracle_fdw - pg_bigm - pg_hint_plan (See also the "Cautionary Notes of pg_hint_plan" section below.) - pg_dbms_stats - Pgpool-II $ psql postgres=# ALTER EXTENSION UPDATE; "": Indicates the OSS name. 3-2) Perform DROP EXTENSION and ALTER EXTENSION if you are using one of the following OSS. - pg_repack - pgaudit $ psql postgres=# DROP EXTENSION ; postgres=# CREATE EXTENSION ; "": Indicates the OSS name. [Cautionary Notes of pg_hint_plan] pg_hint_plan may fail with the following command by Issues of OSS. ALTER EXTENSION pg_hint_plan UPDATE Correct the following files if command execution fails, After then re-execute the command. * /share/extension/ Directory - pg_hint_plan--1.3.6--1.3.7.sql [Before modification] ------------------------------------------------------------------------- /* pg_hint_plan/pg_hint_plan--1.3.6--1.3.7.sql */ -- complain if script is sourced in psql, rather than via ALTER EXTENSION \echo Use <...> to load this file. \quit ------------------------------------------------------------------------- [After modification](Move "\quit" to the end of the previous line) ------------------------------------------------------------------------- /* pg_hint_plan/pg_hint_plan--1.3.6--1.3.7.sql */ -- complain if script is sourced in psql, rather than via ALTER EXTENSION \echo Use <...> to load this file. \quit ------------------------------------------------------------------------- If the version of OSS changes as a result of restoring this fix, implement the following. 1) Before restoring this fix, refer to the following manual to removing setup of OSS. - pgaudit Security Operation Guide >> Chapter 6 Audit Log Feature >> 6.9 Removing Setup - Except for pgaudit Installation and Setup Guide for Server >> Chapter 4 Setup >> 4.7 Setting Up and Removing OSS 2) After restoring this fix, refer to the following manual to setup of OSS. - pgaudit Security Operation Guide >> Chapter 6 Audit Log Feature >> 6.2 Setup - Except for pgaudit Installation and Setup Guide for Server >> Chapter 4 Setup >> 4.7 Setting Up and Removing OSS ------------------------------------------------------------------------------- [Description] Fix Number: FJSVfsep-SV-ORJ-12-1200-9.el7.x86_64 01 PH22245 Make FUJITSU Enterprise Postgres programs run without setting the path /lib for each FUJITSU Enterprise Postgres feature to the environment variable LD_LIBRARY_PATH. It also can run with setting LD_LIBRARY_PATH as before. Details are described below. - About programs of FUJITSU Enterprise Postgres Set the path /lib for each FUJITSU Enterprise Postgres feature to the DT_RPATH of programs of FUJITSU Enterprise Postgres. This enables FUJITSU Enterprise Postgres programs to run without setting the path /lib for each FUJITSU Enterprise Postgres feature to the environment variable LD_LIBRARY_PATH. - About applications built by users. About applications which was built by users and use libraries which was provided by FUJITSU Enterprise Postgres, those can run without setting LD_LIBRARY_PATH if DT_RPATH of those are set as described above. If DT_RPATH of those are not set, those can run without setting LD_LIBRARY_PATH after rebuilding those applications with setting DT_RPATH. See "FUJITSU SupportDesk->Middleware->Enterprise Postgres->Technical Information" about setting DT_RPATH to applications. It can run with setting LD_LIBRARY_PATH if DT_RPATH of those are not set. - Others About the products which use FUJITSU Enterprise Postgres, follow the manuals of those and set LD_LIBRARY_PATH if it is needed to use those products. Fix Number: FJSVfsep-SV-ORJ-12-1200-1.el7.x86_64 01 PH18957 Add bytea datatype to embedded SQL in COBOL The handling of the bytea type is similar to that of VARCHAR. Every definition of an array of bytea is converted into a named group item. A declaration like: 01 bytea var(180); is converted into: 01 var. 49 LEN PIC S9(9) COMP-5. 49 ARR PIC X(180). If the option --bytea-with-named-member is set as ecobpg command-line option, the above declaration is changed into: 01 var. 49 var-LEN PIC S9(9) COMP-5. 49 var-ARR PIC X(180). Other usage and precautions are same as VARCHAR ones. Also note that bytea variable can be used only when bytea_output parameter is set to hex. 02 PH19081 Add a feature to the Global Meta Cache feature which limits the amount of meta cache in memory per process. To limit the amount of meta cache in memory per process, add the following parameter to postgresql.conf. - pgx_catalog_cache_max_size (integer) Sets the maximum meta cache size for the system catalog. The system removes the least recently used meta cache in order not to exceed the limit. If the meta cache is used again, the meta cache must be re-assigned, and performance will not be good. Therefore, set the value as large as possible within the amount of memory available to the server. Also, meta caches that are used by transactions cannot be removed, and memory is used temporarily above the limit. Therefore, set the value greater than the value calculated by the following formula using the number of tables, indexes, and columns accessed in one transaction. When Global Meta Cache feature is enabled: (the number of tables to access + the number of indexes to access + the number of columns to access) * 0.2KB When Global Meta Cache feature is disabled: the number of tables to access * 0.6KB + the number of indexes to access * 0.6KB + the number of columns to access * 1.1KB Setting this parameter to zero disables this feature. The default is zero. If the value is less than 8 KB and the value is not 0, the starting database and the changing the setting will be failed since this feature cannot operate. - pgx_relation_cache_max_size (integer) Sets the maximum meta cache size for the relation. It is similar to pgx_catalog_cache_max_size except that the following formula. Sum for all tables to access (1.2KB + "24 + 112 * the number of columns" raised to power of 2) + Sum for all indexes to access (2.2KB + "24 + 112 * the number of columns" raised to power of 2) - pgx_cache_hit_log_interval (integer) Sets the time interval, in milliseconds, to log the number of searches and hits for the meta cache. When pgx_catalog_cache_max_size or pgx_relation_cache_max_size is enabled, the performance is degraded due to cache deletion and re-assignment. The total number of searches and hits since the backend process was started is outputted to the log for each backend process as described below. Use the cache hit ratio (the number of hits / the number of searches) to determine performance degradation. catalog cache hit stats: search , hits relation cache hit stats: search , hits When either pgx_catalog_cache_max_size or pgx_relation_cache_max_size is disabled, no corresponding log is outputted. Setting this parameter to -1 disables the logging. If this parameter is set to zero, the log is outputted at the end of every transaction. If this parameter is set to more than zero, the log is outputted at the end of the transaction if pgx_cache_hit_log_interval has elapsed since the start time of the first transaction or the last logged transaction. The default value is 10 minutes. ------------------------------------------------------------------------------- [Patch Description] The following fixes are included in this patch: Fix Number: FJSVfsep-SV-ORJ-12-1200-12.el7.x86_64 01 PH22445 [ ]Security failure [*]Serious failure ([*]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([ ]Always / [ ]Rarely / [*]Irregularly) - Description Applying WAL to a GIN index with the Transparent Data Encryption feature can corrupt the WAL-applied GIN index. This may cause the following: - Rows to be returned are not returned in an index scan. - SQL execution fails with a message similar to the following: "ERROR: invalid memory alloc request size XXXXXXX" - The database instance crashes due to a segmentation fault. - Requirements to reproduce this issue It may occur under the following conditions. 1) Using the Transparent Data Encryption feature, and 2) A GIN index is used to create an index in a tablespace that has been encrypted using the function of 1), and 3) A GIN fast update feature (fastupdate storage parameter) is enabled on the index of 2), and 4) Executing an update statement that updates the index of 2), and 5) Read and apply the WAL generated in 4) by one of the following methods, and 5-1) Crash recovery, or 5-2) Recovering with the pgx_rcvall command, or 5-3) Recovering with the WebAdmin, or 5-4) Point-In-Time-Recovery(PITR), or 5-5) Standby instance in a replication environment. 6) In the database instance to which WAL was applied in step 5), perform the following operations on the table having the index of 2) or the index of 2). 6-1) DML statements, or 6-2) VACUUM, or 6-3) Autovacuum, or 6-4) gin_clean_pending_list() function. - Action Fix the WAL decoding process that is output by the GIN fast update feature. - Compatibility Information None. 02 PH22723 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in PostgreSQL 12.14 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of PostgreSQL 12.14 to FUJITSU Enterprise Postgres. You can see applied changes in the below URL. https://www.postgresql.org/docs/12/release-12-14.html - Action Apply the changes of PostgreSQL 12 to FUJITSU Enterprise Postgres. - Compatibility Information None. 03 PH22743 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description This fix reflects fixes up to OpenSSL 1.1.1t in this product and does not indicate any specific symptoms. - Requirements to reproduce this issue This fix reflects fixes up to OpenSSL 1.1.1t in this product and has no specific occurrence conditions. To check the details of the changes up to OpenSSL 1.1.1t, click See the OpenSSL release notes. https://www.openssl.org/news/openssl-1.1.1-notes.html The version of OpenSSL in which this product reflects the correction is as follows. - Enterprise Postgres 12, 12 SP1, 12 SP1A, 12SP1B 1.1.1t, 1.1.1s, 1.1.1r, 1.1.1q, 1.1.1p, 1.1.1o, 1.1.1n, 1.1.1m, 1.1.1l, 1.1.1k, 1.1.1j, 1.1.1i, 1.1.1h, 1.1.1g, 1.1.1f, 1.1.1e - Enterprise Postgres 13, 13 SP1, 13 SP1A 1.1.1t, 1.1.1s, 1.1.1r, 1.1.1q, 1.1.1p, 1.1.1o, 1.1.1n, 1.1.1m, 1.1.1l, 1.1.1k, 1.1.1j, 1.1.1i - Enterprise Postgres 14, 14 SP1, 15 1.1.1t, 1.1.1s, 1.1.1r, 1.1.1q, 1.1.1p, 1.1.1o, 1.1.1n, 1.1.1m - Symfoware Server V12.6.0, V12.6.0A, V12.5.0, V12.4.1 1.1.1t, 1.1.1s, 1.1.1r, 1.1.1q, 1.1.1p, 1.1.1o, 1.1.1n, 1.1.1m, 1.1.1l, 1.1.1k, 1.1.1j, 1.1.1i, 1.1.1h, 1.1.1g, 1.1.1f, 1.1.1e - Symfoware Server Enterprise Edition V12.7.0, Symfoware Server Standard Edition V12.7.0 1.1.1t, 1.1.1s, 1.1.1r, 1.1.1q, 1.1.1p, 1.1.1o, 1.1.1n, 1.1.1m, 1.1.1l, 1.1.1k, 1.1.1j, 1.1.1i, 1.1.1h, 1.1.1g, 1.1.1f, 1.1.1e - Symfoware Server Enterprise Extended Edition V12.7.0 1.1.1t, 1.1.1s, 1.1.1r, 1.1.1q, 1.1.1p, 1.1.1o, 1.1.1n, 1.1.1m - Action Apply OpenSSL changes to the product. - Compatibility Information None. ------------------------------------------------------------------------------- [Accumulated Patches] The following fixes are included in this patch: Fix Number: FJSVfsep-SV-ORJ-12-1200-11.el7.x86_64 01 PH22477 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in PostgreSQL 12.13 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of PostgreSQL 12.13 to FUJITSU Enterprise Postgres. You can see applied changes in the below URL. https://www.postgresql.org/docs/12/release-12-13.html - Action Apply the changes of PostgreSQL 12 to FUJITSU Enterprise Postgres. - Compatibility Information None. Fix Number: FJSVfsep-SV-ORJ-12-1200-10.el7.x86_64 01 PH22251 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in PostgreSQL 12.12 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of PostgreSQL 12.12 to FUJITSU Enterprise Postgres. You can see applied changes in the below URL. https://www.postgresql.org/docs/12/release-12-12.html - Action Apply the changes of PostgreSQL 12 to FUJITSU Enterprise Postgres. - Compatibility Information None. Fix Number: FJSVfsep-SV-ORJ-12-1200-9.el7.x86_64 01 PH21526 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description Using data masking may overwrite the original data with data after change. - Requirements to reproduce this issue [Requirements 1] 1) Define one of character type below as a column in the table, and - character varying - varchar - character - char 2) Create a masking policy for a column in 1), and 3) Insert 127 bytes or more of data to a column in 1), and 4) The record length including a column in 1) is less than 2032 bytes, and 5) Refer a column in 1) by one of the methods below. - SELECT statement - COPY TO statement - pg_dump - pg_dumpall [Requirements 2] 1) Define one of character type below as a column in the table, and - character varying - varchar - character - char - text 2) Insert 127 bytes or more of data to a column in 1), and 3) The record length including a column in 1) is less than 2032 bytes, and 4) Refer a column in 1) by one of the methods below, and - SELECT statement - COPY TO statement 5) A column data referred to 4) changes due to the influence of another column to which a masking policy is applied. - Action Fix process to change data in the data masking. - Compatibility Information None. 02 PH22179 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description If the malicious JDBC application uses cursor, this could lead to SQL injection. (*) * CVE-2022-31197 - Requirements to reproduce this issue 1) Create a table which has a primary key and column name which contains semicolon, and 2) Insert data into the table defined at 1), and 3) Create an updatable cursor which refers the table defined at 1) in a Java applications using JDBC driver, and 4) Call executeQuery() method for the cursor defined at 3) and obtain ResultSet, and 5) Call next() method for the ResultSet obtained at 4), and 6) Call refreshRow() method for the ResultSet obtained at 4). - Action Fix the process of PostgreSQL JDBC Driver that FUJITSU Enterprise Postgres bases on. - Compatibility Information None. Fix Number: FJSVfsep-SV-ORJ-12-1200-8.el7.x86_64 01 PH20434 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([ ]Always / [ ]Rarely / [*]Irregularly) - Description The standby server may not place the meta cache in the GMC area. Since the required meta cache is not present in the GMC area, each process creates the same meta cache in local memory, which can affect performance. - Requirements to reproduce this issue 1) Streaming replication is used, and 2) Global Meta Cache feature is enabled on the standby server, and 3) A system catalog is referred through the PostgreSQL internal processing on the standby server (*). *: PostgreSQL internally refers to system catalogs while accepting connections or executing an SQL command. For instance, pg_class is referred when an SQL command is executed against a user table, and pg_authid and pg_database are referred when a connection is being accepted. When the system catalogs are selected directly, the condition is not matched. - Action Fix the processing of Global Meta Cache feature. - Compatibility Information None. 02 PH21161 [ ]Security failure [*]Serious failure ([ ]Degradation) [ ]Incompatibility does not exist / [*]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description [Issue 1] When Mirroring Controller detects an error, degradation does not occur after arbitration server's fencing command is executed and automatic switch/disconnection may be failed. [Issue 2] When Mirroring Controller automatically switches, the message that the switch failed may output even if the switch succeeded. [Issue 3] When Mirroring Controller detects an error, the unnecessary arbitration server's fencing commands may work and automatic disconnection may not occur. [Issue 4] When Mirroring Controller detects log transfer network failure, the unnecessary primary server's fencing commands may work. [Issue 5] When mc_ctl switch or mc_ctl detach command are executed and Mirroring Controller detects an error, the command may terminate abnormally. [Issue 6] When mc_ctl switch command is executed, the command may terminate abnormally even if the switch is successful. [Issue 7] When mc_ctl detach command is executed, the command may terminate abnormally even if the disconnection is successful. [Issue 8] When mc_ctl stop command is executed, the command may terminate abnormally and Mirroring Controller process and Mirroring Controller monitoring process remain. - Requirements to reproduce this issue [Requirements to reproduce Issue 1] 1) Using the arbitration server with Mirroring Controller, and 2) Specify the value of 60 or more for fencing_command_timeout in arbitration configuration file, and 3) The Mirroring Controller process detects each of following errors, and - Operating system or server errors in primary server or standby server, or - Log transfer network failure. 4) It takes 60 or more seconds to perform arbitration processing and execute the fencing command by the arbitration server. [Requirements to reproduce Issue 2] 1) Using Mirroring Controller, and 2) The Mirroring Controller detects an error and automatic switch occurs, and 3) The total execution time to perform following processing during automatic switch is 60 seconds or more, and - Instance switching process (*1) - Post-switch command specified at post_switch_command in server configuration file (*2) 4) Instance switching process is succeeded. [Requirements to reproduce Issue 3] 1) Using the arbitration server with Mirroring Controller, and 2) The Mirroring Controller process in primary server detects log transfer network failure, and 3) The total execution time to perform following processing during disconnection is 60 seconds or more. - Pre-detach command specified at pre_detach_command in the server configuration file (*2) - Stopping the instance on the standby server during disconnection (*3) [Requirements to reproduce Issue 4] 1) Using Mirroring Controller, and 2) Specify 'command' for heartbeat_error_action in server configuration file, and 3) Set pre_detach_command in server configuration file, and 4) Specify the value of 60 or more for status_change_command_timeout in server configuration file, and 5) The Mirroring Controller process in primary server detects log transfer network failure, and 6) The total execution time to perform following processing during disconnection is 60 seconds or more. - Pre-detach command on standby server - Stopping the instance on the standby server during disconnecting (*3) [Requirements to reproduce Issue 5] 1) Using the arbitration server with Mirroring Controller, and 2) Set fencing_command in arbitration configuration file, and 3) Specify the value of 60 or more for fencing_command_timeout in arbitration configuration file, and 4) Execute one of the following commands, and - mc_ctl switch --force in standby server, or - mc_ctl detach in primary server. 5) Execution of the fencing command on the arbitration server succeeds in 60 or more seconds and within fencing_command_timeout. [Requirements to reproduce 1 of Issue 6] 1) Using Mirroring Controller, and 2) Execute mc_ctl switch, and 3) The total execution time to perform following processing in the 2)'s command is 60 seconds or more, and - Instance switching process - Post-switch command (*2) - Fencing command on standby server (*4)(*5) 4) Execution of the fencing command on the standby server succeeds within fencing_command_timeout in arbitration configuration file, and (*4)(*5) 5) Instance switching process is succeeded. [Requirements to reproduce 2 of Issue 6] 1) Using the arbitration server with Mirroring Controller, and 2) Execute mc_ctl switch, and 3) The total execution time to perform following processing in the 2)'s command is 60 seconds or more, and - Instance switching process - Post-switch command (*2) - Fencing command on arbitration server (*4) - Fencing command on standby server (*4)(*5) 4) Execution of the fencing command on the arbitration server succeeds within fencing_command_timeout in arbitration configuration file, and (*4) 5) Execution of the fencing command on the standby server succeeds within fencing_command_timeout in server configuration file, and (*4)(*5) 6) Instance switching process is succeeded. [Requirements to reproduce 1 of Issue 7] 1) Using Mirroring Controller, and 2) Execute mc_ctl detach in primary server, and 3) The total execution time to perform following processing in the 2)'s command is 60 seconds or more, and - Pre-detach command on primary server (*2) - Fencing command on primary server (*5) 4) Execution of the fencing command on the primary server succeeds within fencing_command_timeout in server configuration file. (*5) [Requirements to reproduce 2 of Issue 7] 1) Using the arbitration server with Mirroring Controller, and 2) Execute mc_ctl detach in primary server, and 3) The total execution time to perform following processing in the 2)'s command is 60 seconds or more, and - Pre-detach command on primary server (*2) - Fencing command on arbitration server - Fencing command on primary server (*5) 4) Execution of the fencing command on the arbitration server succeeds within fencing_command_timeout in arbitration configuration file, and 5) Execution of the fencing command on the standby server succeeds within fencing_command_timeout in server configuration file. (*5) [Requirements to reproduce Issue 8] 1) Using Mirroring Controller, and 2) Execute mc_ctl stop, and 3) While executing the mc_ctl stop command, it takes 60 seconds to stop the instance and it succeeds. (*1) "Instance switching process" includes various internal processing such as executing SELECT statements on the instance, starting or stopping instance and promoting instance. (*2) If the target user command is not set in the server configuration file, it is treated that the command has finished in 0 seconds. (*3) This is applicable only when on is specified for shutdown_detached_synchronous_standby in the server configuration file. (*4) This is applicable only when the --force option is specified for mc_ctl switch. (*5) If the target user command is not set in the server configuration file, it is treated that the command has finished in 0 seconds. Moreover, following message is output when Mirroring Controller detects an error in Issue 1, Issue 3 and Issue 5. ERROR: unexpected error occurred: class java.lang.RuntimeException: java.net.SocketTimeoutException #012#011at com.fujitsu.fepmc.net.rpc.RPCSocketProcessor.run (Unknown Source)#012#011at java.util.concurrent.ThreadPoolExecutor. runWorker(ThreadPoolExecutor.java:1149)#012#011at java.util. concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) #012#011at java.lang.Thread.run(Thread.java:748)#012 (MCR00030) - Action Fix the internal socket communication timeout period for Mirroring Controller process and Mirroring Controller arbitration process. - Compatibility Information - Summary Mirroring Controller's switchover and disconnection may fail when the execution time of fencing command or state transition command exceeds the specified timeout value instead of the fixed value of 60 seconds. - Environment It may occur under the following conditions. 1) Perform switchover or disconnection by Mirroring Controller, and 2) Specify the value of 60 or more for following parameters in server configuration file or arbitration configuration file, and - fencing_command_timeout, or - status_change_command_timeout. 3) The Mirroring Controller process or the Mirroring Controller arbitration process executes the following user commands corresponding to the setting of 2), and - Fencing command, or - State transition command. 4) The processing of 3) takes more than 60 seconds. - Products combination of this compatibility problem Mirroring Controller is used and the timeout value for fencing command or state transition command is set to 60 seconds or more, and it takes more than 60 seconds to execute these user commands. - Reason of conflictions Fix the internal socket communication timeout period for Mirroring Controller process and Mirroring Controller arbitration process. - Impacts Mirroring Controller's switchover and disconnection may fail according to not the fixed value of 60 seconds but timeout parameters. - Functional items (Summary, Before/After of migration) Changes the behavior when the conditions are met. [Before] Switchover and disconnection fail when the execution time elapses 60 seconds. [After] Switchover and disconnection fail when the execution time elapses the value specified in the timeout parameter. - Preventive Method To make fencing command or state transition command to fail when the execution time elapses 60 seconds, set the timeout value for these user commands to 60 seconds in the server configuration file or arbitration configuration file. - Back out method of the functions None. - User action It is the same as the Preventive Method. 03 PH21689 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in oracle_fdw 2.4.0 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of oracle_fdw 2.4.0 to FUJITSU Enterprise Postgres. You can see applied changes in the below URL. https://github.com/laurenz/oracle_fdw/releases/tag/ORACLE_FDW_2_4_0 - Action Apply the changes of oracle_fdw to FUJITSU Enterprise Postgres. - Compatibility Information None. 04 PH21690 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in pgBadger 11.6 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of pgBadger 11.6 to FUJITSU Enterprise Postgres. You can see applied changes in the below URL. https://github.com/darold/pgbadger/releases/tag/v11.6 - Action Apply the changes of pgBadger to FUJITSU Enterprise Postgres. - Compatibility Information None. 05 PH21691 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in Orafce 3.18.0, 3.18.1 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of Orafce 3.18.0, 3.18.1 to FUJITSU Enterprise Postgres. You can see applied changes in the below URLs. https://github.com/orafce/orafce/releases/tag/VERSION_3_18_0 https://github.com/orafce/orafce/releases/tag/VERSION_3_18_1 - Action Apply the changes of Orafce to FUJITSU Enterprise Postgres. - Compatibility Information None. 06 PH21823 [ ]Security failure [*]Serious failure ([*]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description When accessing Oracle database by using oracle_fdw, it does not use indexes and selects full table scan as the execution plan, which can degrade query performance. - Requirements to reproduce this issue 1) Use oracle_fdw 2.3.0, and 2) Oracle database's table has the column which is defined as CHAR data type or VARCHAR data type, and 3) The index is created at 2)'s column, and 4) The foreign table is created corresponding to 2)'s table in PostgreSQL side, and 5) Run one of the following queries for 4)'s table in PostgreSQL side, and 5-1) UPDATE, or 5-2) DELETE. 6) 5)'s query has WHERE clause, and 7) The 2)'s column in the Oracle database table corresponds to the column specified in 6)'s WHERE clause. - Action Fix the character set conversion process of oracle_fdw. - Compatibility Information None. 07 PH21901 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in PostgreSQL 12.11 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of PostgreSQL 12.11 to FUJITSU Enterprise Postgres. You can see applied changes in the below URL. https://www.postgresql.org/docs/12/release-12-11.html - Action Apply the changes of PostgreSQL 12 to FUJITSU Enterprise Postgres. - Compatibility Information None. 08 PH21920 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in pgBadger 11.7 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of pgBadger 11.7 to FUJITSU Enterprise Postgres. You can see applied changes in the below URL. https://github.com/darold/pgbadger/releases/tag/v11.7 - Action Apply the changes of pgBadger to FUJITSU Enterprise Postgres. - Compatibility Information None. Fix Number: FJSVfsep-SV-ORJ-12-1200-7.el7.x86_64 01 PH20971 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description [Issue 1] There is no particular issue because bug corrections in Orafce 3.14.0, 3.15.0, 3.15.1 apply to FUJITSU Enterprise Postgres. [Issue 2] SQL fails with the following error message when "SELECT gen_file(utl_file.tmpdir())" is executed. ERROR: permission denied for function tmpdir (10970) - Requirements to reproduce this issue [Requirements to reproduce Issue 1] There is no particular condition because this fix applies the changes of Orafce 3.14.0, 3.15.0, 3.15.1 to FUJITSU Enterprise Postgres. You can see applied changes in the below URLs. https://github.com/orafce/orafce/releases/tag/VERSION_3_14_0 https://github.com/orafce/orafce/releases/tag/VERSION_3_15_0 https://github.com/orafce/orafce/releases/tag/VERSION_3_15_1 [Requirements to reproduce Issue 2] There is no particular condition because this fix applies the changes of future Orafce release to FUJITSU Enterprise Postgres. You can see applied changes in the below URL. https://github.com/orafce/orafce/commit/ 7b9d494b64905d6ca99875fcf819a3c572b200ff - Action Apply the changes of Orafce to FUJITSU Enterprise Postgres. - Compatibility Information None. 02 PH21240 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in Orafce 3.16.0, 3.16.1, 3.16.2, 3.17.0 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of Orafce 3.16.0, 3.16.1, 3.16.2, 3.17.0 to FUJITSU Enterprise Postgres. You can see applied changes in the below URLs. https://github.com/orafce/orafce/releases/tag/VERSION_3_16_0 https://github.com/orafce/orafce/releases/tag/VERSION_3_16_1 https://github.com/orafce/orafce/releases/tag/VERSION_3_16_2 https://github.com/orafce/orafce/releases/tag/VERSION_3_17_0 - Action Apply the changes of Orafce to FUJITSU Enterprise Postgres. - Compatibility Information None. 03 PH21569 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in PostgreSQL 12.10 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of PostgreSQL 12.10 to FUJITSU Enterprise Postgres. You can see applied changes in the below URL. https://www.postgresql.org/docs/12/release-12-10.html - Action Apply the changes of PostgreSQL 12 to FUJITSU Enterprise Postgres. - Compatibility Information None. Fix Number: FJSVfsep-SV-ORJ-12-1200-6.el7.x86_64 01 PH20077 [ ]Security failure [*]Serious failure ([*]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description Approximately 1.25 times more memory than specified for shared_buffers was acquired. As a result, memory might not be able to be allocated during instance startup, and startup might fail with the following message. FATAL: could not map anonymous shared memory: Cannot allocate memory (17488) HINT: This error usually means that PostgreSQL's request for a shared memory segment exceeded available memory, swap space, or huge pages. To reduce the request size (currently xxx bytes), reduce PostgreSQL's shared memory usage, perhaps by reducing shared_buffers or max_connections. (18504) - Requirements to reproduce this issue 1) Start instance. - Action Fix the processing of acquiring the shared memory. - Compatibility Information None. 02 PH20975 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in pg_hint_plan 1.3.6 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of pg_hint_plan 1.3.6 to FUJITSU Enterprise Postgres. You can see applied changes in the below URLs. * FUJITSU Enterprise Postgres 10 https://github.com/ossc-db/pg_hint_plan/releases/tag/REL10_1_3_6 * FUJITSU Enterprise Postgres 11 https://github.com/ossc-db/pg_hint_plan/releases/tag/REL11_1_3_6 * FUJITSU Enterprise Postgres 12 https://github.com/ossc-db/pg_hint_plan/releases/tag/REL12_1_3_6 - Action Apply the changes of pg_hint_plan to FUJITSU Enterprise Postgres. - Compatibility Information None. 03 PH20976 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in pg_hint_plan 1.3.7 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of pg_hint_plan 1.3.7 to FUJITSU Enterprise Postgres. You can see applied changes in the below URLs. * FUJITSU Enterprise Postgres 11 https://github.com/ossc-db/pg_hint_plan/releases/tag/REL11_1_3_7 * FUJITSU Enterprise Postgres 12 https://github.com/ossc-db/pg_hint_plan/releases/tag/REL12_1_3_7 - Action Apply the changes of pg_hint_plan to FUJITSU Enterprise Postgres. - Compatibility Information None. 04 PH20977 [ ]Security failure [ ]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in pg_rman 1.3.10, 1.3.11, 1.3.12 and 1.3.13 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of pg_rman 1.3.10, 1.3.11, 1.3.12 and 1.3.13 to FUJITSU Enterprise Postgres. You can see applied changes in the below URLs. https://github.com/ossc-db/pg_rman/releases/tag/V1.3.10 https://github.com/ossc-db/pg_rman/releases/tag/V1.3.11 https://github.com/ossc-db/pg_rman/releases/tag/V1.3.12 https://github.com/ossc-db/pg_rman/releases/tag/V1.3.13 - Action Apply the changes of pg_rman to FUJITSU Enterprise Postgres. - Compatibility Information None. 05 PH21159 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in PostgreSQL 12.9 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of PostgreSQL 12.9 to FUJITSU Enterprise Postgres. You can see applied changes in the below URL. https://www.postgresql.org/docs/12/release-12-9.html - Action Apply the changes of PostgreSQL 12 to FUJITSU Enterprise Postgres. - Compatibility Information None. Fix Number: FJSVfsep-SV-ORJ-12-1200-5.el7.x86_64 01 PH19515 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in oracle_fdw 2.3.0 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of oracle_fdw 2.3.0 to FUJITSU Enterprise Postgres. You can see applied changes in the below URL. https://github.com/laurenz/oracle_fdw/releases/tag/ORACLE_FDW_2_3_0 - Action Apply the changes of oracle_fdw to FUJITSU Enterprise Postgres. - Compatibility Information None. 02 PH19877 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([ ]Always / [ ]Rarely / [*]Irregularly) - Description When system catalog is updated on the primary server, the updated data may not be reflected on the standby server. Depending on the updated data, following issues occur. [Derivative issue 1] After a role's password or a database name is updated on the primary server, you may not connect to the standby server using the new role's password or new database name. [Derivative issue 2] After the definition of a table is updated on the primary server, the result of an SQL command executed against the updated table on the standby server may differ from the expectation. For instance, after a column is added to a table, the result of an SQL command executed against the added column may cause an error, or may not contain the data of the added column. [Derivative issue 3] After a table dropped on the primary server, the result of an SQL command executed against the dropped table on the standby server may differ from the result when Global Meta Cache feature is disabled. - When Global Meta Cache feature is enabled: ERROR: could not open relation with OID yyy - When Global Meta Cache feature is disabled: ERROR: relation "xxx" does not exist (10292) - Requirements to reproduce this issue 1) Streaming replication is used, and 2) Global Meta Cache feature is enabled on the standby server, and 3) A system catalog is referred through the PostgreSQL internal processing on the standby server (*1), and 4) Update the system catalog which is referred in 3) on the primary server(*2), and 5) Execute the same operation as 3) on the standby server. *1: PostgreSQL internally refers to system catalogs while accepting connections or executing an SQL command. For instance, pg_class is referred when an SQL command is executed against a user table, and pg_authid and pg_database are referred when a connection is being accepted. When the system catalogs are selected directly, the condition is not matched. *2: Depending on the updated data, the derivative issue differs. - Action Fix the processing of Global Meta Cache feature. - Compatibility Information None. 03 PH20170 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([ ]Always / [*]Rarely / [ ]Irregularly) - Description After executing DROP DATABASE when Global Meta Cache feature is enabled, database may become unresponsive with the following message: WARNING: Sleep until another process releases global meta cache because global meta cache cannot be swept away yet. Please increase pgx_global_metacache. (25204) - Requirements to reproduce this issue 1) Global Meta Cache feature is enabled, and 2) Connect to the database, and 3) Execute DROP DATABASE against 2)'s database(*), and 4) Execute an SQL command or newly connect to a database. * This issue is more likely to occur when executing DROP DATABASE in multiple times. - Action Fix the processing of the Global Meta Cache feature. - Compatibility Information None. 04 PH20200 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description When both userlog and Vertical Clustered Index(VCI) are used, userlog extraction daemon may abnormally terminate with the following message: LOG: background worker "userlog daemon" (PID xxxxxx) was terminated by signal 11: Segmentation fault (11207) - Requirements to reproduce this issue 1) Specify vci and userlog for shared_preload_libraries parameter, and 2) Specify vci for session_preload_libraries parameter, and 3) Set userlog.standby_names parameter, and 4) Execute pgx_userlog_control command, and 5) userlog_control file is created under userlog.directory, and 6) Start the instance. (*) As internal condition, this issue may occur when the userlog extraction daemon executes SELECT statement and the VCI access plan is considered. Therefore, it does not always occur when the occurrence conditions are met. - Action Fix the extraction processing of userlog. - Compatibility Information None. 05 PH20433 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([ ]Always / [ ]Rarely / [*]Irregularly) - Description When system catalog is updated in the two-phase commit, the updated data may not be referred from the following transaction. Depending on the updated data, following issues occur. [Derivative issue 1] After a role's password or a database name is updated in the two-phase commit, you may not connect to the server using the new role's password or new database name. [Derivative issue 2] After the definition of a table is updated in the two-phase commit, the result of an SQL command executed against the updated table may differ from the expectation. For instance, after a column is added to a table, the result of an SQL command executed against the added column may cause an error, or may not contain the data of the added column. [Derivative issue 3] After a table dropped in the two-phase commit, the result of an SQL command executed against the dropped table may differ from the result when Global Meta Cache feature is disabled. - When Global Meta Cache feature is enabled: ERROR: could not open relation with OID yyy - When Global Meta Cache feature is disabled: ERROR: relation "xxx" does not exist (10292) - Requirements to reproduce this issue 1) Global Meta Cache feature is enabled, and 2) A system catalog is referred through the PostgreSQL internal processing(*1), and 3) Start transaction with BEGIN, and 4) Update the system catalog which is referred in 3) (*2), and 5) Prepare 3)'s transaction using PREPARE TRANSACTION, and 6) Commit 3)'s prepared transaction using COMMIT PREPARED, and 7) Execute the same operation as 2). *1: PostgreSQL internally refers to system catalogs while accepting connections or executing an SQL command. For instance, pg_class is referred when an SQL command is executed against a user table, and pg_authid and pg_database are referred when a connection is being accepted. When the system catalogs are selected directly, the condition is not matched. *2: Depending on the updated data, the derivative issue differs. - Action Fix the processing of Global Meta Cache feature. - Compatibility Information None. 06 PH20678 [ ]Security failure [ ]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in pg_bigm Version 1.2 (released on 2020-02-28) apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of pg_bigm Version 1.2 (released on 2020-02-28) to FUJITSU Enterprise Postgres. You can see applied changes in the below URL. https://pgbigm.osdn.jp/release-1-2_en.html - Action Apply the changes of pg_bigm to FUJITSU Enterprise Postgres. - Compatibility Information None. 07 PH20681 [ ]Security failure [ ]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in pg_repack 1.4.6 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of pg_repack 1.4.6 to FUJITSU Enterprise Postgres. You can see applied changes in the below URL. https://github.com/reorg/pg_repack/releases/tag/ver_1.4.6 - Action Apply the changes of pg_repack to FUJITSU Enterprise Postgres. - Compatibility Information None. 08 PH20684 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in pgBadger 11.2, 11.3, 11.4 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of pgBadger 11.2, 11.3, 11.4 to FUJITSU Enterprise Postgres. You can see applied changes in the below URLs. https://github.com/darold/pgbadger/releases/tag/v11.2 https://github.com/darold/pgbadger/releases/tag/v11.3 https://github.com/darold/pgbadger/releases/tag/v11.4 - Action Apply the changes of pgBadger to FUJITSU Enterprise Postgres. - Compatibility Information None. 09 PH20685 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in pgBadger 11.5 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of pgBadger 11.5 to FUJITSU Enterprise Postgres. You can see applied changes in the below URL. https://github.com/darold/pgbadger/releases/tag/v11.5 - Action Apply the changes of pgBadger to FUJITSU Enterprise Postgres. - Compatibility Information None. 10 PH20864 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in PostgreSQL 12.8 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of PostgreSQL 12.8 to FUJITSU Enterprise Postgres. You can see applied changes in the below URL. https://www.postgresql.org/docs/12/release-12-8.html - Action Apply the changes of PostgreSQL 12 to FUJITSU Enterprise Postgres. - Compatibility Information None. Fix Number: FJSVfsep-SV-ORJ-12-1200-4.el7.x86_64 01 PH20840 [ ]Security failure [*]Serious failure ([*]Degradation) [ ]Incompatibility does not exist / [*]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description [Issue 1] Replication by Linkexpress Replication option may fail with following message: RP06998:System error occurred. Detail = invalid_request 0 0 [Issue 2] The modules that have been compiled using the header files and libraries included with FUJITSU Enterprise Postgres may return incorrect data or terminate abnormally after applying the patch of FUJITSU Enterprise Postgres. - Requirements to reproduce this issue [Requirements to reproduce Issue 1] 1) Perform replication by Linkexpress Replication option, and 2) The database is source database, and 3) The replication type is batch differential copy. [Requirements to reproduce Issue 2] 1) Any of the following patches is not applied, and - T016082XP-01 to 03 (Windows64-EM64T) - T016083LP-01 to 03 (Linux64-EM64T(for RHEL7)) - T016084LP-01 to 03 (Linux64-EM64T(for RHEL8)) - T016085LP-01 to 02 (Linux64-EM64T(for SUSE12)) - T016078XP-01 to 03 (Windows64-EM64T) - T016079LP-01 to 03 (Linux64-EM64T(for RHEL7)) - T016080LP-01 to 03 (Linux64-EM64T(for RHEL8)) - T016081LP-01 to 02 (Linux64-EM64T(for SUSE12)) 2) Following modules are compiled using the header files and libraries included with FUJITSU Enterprise Postgres. - Any OSS and extensions that are not included in FUJITSU Enterprise Postgres, or - User-defined C functions. 3) Apply any of the following patches of 1). (*) As an internal condition, this issue may occur when OSS or user-defined C functions use the header file nodes.h included in FUJITSU Enterprise Postgres directly or indirectly. - Action Fix the header files. - Compatibility Information - Summary It may need to recompile modules that have been compiled using the header files and libraries included with FUJITSU Enterprise Postgres. - Environment 1) Use any of the following products, and 1-1) Apply any of the following patches to FUJITSU Enterprise Postgres 12, or Symfoware Server (Postgres) V12.4.1, or - T016082XP-01 to 03 (Windows64-EM64T) - T016083LP-01 to 03 (Linux64-EM64T(for RHEL7)) - T016084LP-01 to 03 (Linux64-EM64T(for RHEL8)) - T016085LP-01 to 02 (Linux64-EM64T(for SUSE12)) - T016078XP-01 to 03 (Windows64-EM64T) - T016079LP-01 to 03 (Linux64-EM64T(for RHEL7)) - T016080LP-01 to 03 (Linux64-EM64T(for RHEL8)) - T016081LP-01 to 02 (Linux64-EM64T(for SUSE12)) 1-2) FUJITSU Enterprise Postgres 12 SP1, or 1-3) Symfoware Server (Postgres) V12.5. 2) Following modules are compiled using the header files and libraries included with FUJITSU Enterprise Postgres. - Any OSS and extensions that are not included in FUJITSU Enterprise Postgres, or - User-defined C functions. - Products combination of this compatibility problem The server-side OSS, extensions or C-language user-defined functions are compiled using the header files and libraries included with FUJITSU Enterprise Postgres. - Reason of conflictions Fixing the issue that modules which have been compiled before the patch is applied becomes unavailable. - Impacts The modules that have been compiled using the header files and libraries included with FUJITSU Enterprise Postgres may return incorrect processing results. Also, depending on the module, an abnormal termination may occur when an internal mismatch is detected. - Functional items (Summary, Before/After of migration) It may need to recompile modules that have been compiled using the header files and libraries included with FUJITSU Enterprise Postgres. [Before] The modules that have been compiled using the header files and libraries included with FUJITSU Enterprise Postgres works without recompiling. [After] The modules that have been compiled using the header files and libraries included with FUJITSU Enterprise Postgres may not work unless recompiled. - Preventive Method Recompile modules that have been compiled using the header files and libraries included with FUJITSU Enterprise Postgres after applying this fix. - Back out method of the functions None. - User action It is the same as the Preventive Method. Fix Number: FJSVfsep-SV-ORJ-12-1200-3.el7.x86_64 01 PH19861 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description When Mirroring Controller starts, both the old primary server and the new primary server may temporarily become primary servers. Since one primary server cannot be updated at this time, there is no direct data corruption. However, applications connecting to the primary server may view the old data. Therefore, applications may perform the operation based on the incorrect data. - Requirements to reproduce this issue 1) The error occurred on the primary server, and 2) The standby server promotes to the primary server, and 3) Start Mirroring Controller on the old primary server. - Action Fix the processing of Mirroring Controller. - Compatibility Information None. 02 PH19883 [ ]Security failure [ ]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description Executing a SQL statement with an integer host variable in the FOR clause of bulk INSERT may result in an error with the following message, with SQLSTATE YE000: unsupported datatype found at FOR statement - Requirements to reproduce this issue [Requirements to reproduce 1] 1) Create an application using embedded SQL in C, and 2) Define the host variable as one of the following integer types, and 2-1) short, or 2-2) long long. 3) Specify the 2)'s host variable in the FOR clause of bulk INSERT, and 4) Execute the application of 1). [Requirements to reproduce 2] 1) Create an application using embedded SQL in COBOL, and 2) Define the host variable as one of the following integer types, and 2-1) PIC S9([1-4]) {BINARY|COMP|COMP-5}, or 2-2) PIC S9([10-18]) {BINARY|COMP|COMP-5}. 3) Specify the 2)'s host variable in the FOR clause of bulk INSERT, and 4) Execute the application of 1). - Action Modify the data types accepted by the FOR clause of bulk INSERT so that PostgreSQL short and long long data types are accepted. - Compatibility Information None. 03 PH19947 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description After failover occurred, the application using Transparent Connection Support Feature of Connection Manager may not connect to the new primary server with the following message. could not connect: no target server address from Connection Manager - Requirements to reproduce this issue 1) The databases are multiplexed, and 2) Execute the application that connects to the server using Transparent Connection Support Feature of Connection Manager, and 3) On the application 2), either of following values is specified for target_session_attrs, and 3-1) read-write, or 3-2) prefer-read. 4) Failover occurred and conmgr process detects the old primary server is down after it detects the standby server is promoted, and 5) After 4), the application 2) reconnects. - Action Fix the processing to update the information held by the Connection Manager's conmgr process about the primary server. - Compatibility Information None. 04 PH19948 [ ]Security failure [ ]Serious failure ([ ]Degradation) [ ]Incompatibility does not exist / [*]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description When the application that has connected to the server using Transparent Connection Support Feature of Connection Manager tries to execute SQL statements on the connection, it might become unresponsive because of waiting a response from the server. - Requirements to reproduce this issue It may occur under the following conditions. 1) The application uses the one of following client driver, and - libpq (C Library) - ECPG (embedded SQL in C) 2) Use the Connection Manager, and 3) The database server connected by the application of 1) goes down, and 4) When the database server goes down in 3), the Connection Manager makes connection an error on the application of 1), and 5) The application of 1) has not closed the connection to the database server that is down, and executes SQL statements on that connection. - Action Fix the processing of libpq when received an error notification from the Connection Manager. - Compatibility Information - Summary Change the error information when the application using the Connection Manager retries to execute SQL statements on the connection that the Connection Manager detects the database server is down. The changed error information are contained the errors described in "Connection Information for the Application Connection Switch Feature" of each client drivers in the "Application Development Guide". - Environment It may occur under the following conditions. 1) The application uses the one of following client driver, and - libpq (C Library) - ECPG (embedded SQL in C) 2) Use the Connection Manager, and 3) The database server connected by the application of 1) goes down, and 4) When the database server goes down in 3), the Connection Manager makes connection an error on the application of 1), and 5) The application of 1) has not closed the connection to the database server that is down, and executes SQL statements on that connection. - Products combination of this compatibility problem The Connection Manager is used, and the application retries to execute SQL statements on the connection that the Connection Manager detects the database server is down. - Reason of conflictions Fixing the processing of libpq when received an error notification from the Connection Manager. - Impacts If the application has the processing that assumes the "Before" error information, it may not work correctly because the error information when a connection error occurs will be changed. - Functional items (Summary, Before/After of migration) Changes the error information when the conditions are met. [Before] The error information are returned depending on the actual database server's condition. [After] The following error information are returned. - libpq (C Library): CONNECTION_BAD (return value of PQstatus()) - ECPG (embedded SQL in C): 57P02 (return value of SQLSTATE) - Preventive Method Consider that the above error may be returned during the application's error determination process. Also, as explained in "Connection Information for the Application Connection Switch Feature" of each client drivers in the "Application Development Guide", when the error related to the Application Connection Switch Feature, close the connection explicitly, and reconnect that connection or rerun that application. - Back out method of the functions None. - User action It is the same as the Preventive Method. 05 PH19949 [ ]Security failure [*]Serious failure ([ ]Degradation) [ ]Incompatibility does not exist / [*]Incompatibility exists - Frequency ([ ]Always / [ ]Rarely / [*]Irregularly) - Description [Issue 1] When the application tries to connect to a server using Transparent Connection Support Feature of Connection Manager, it might fail with following error message. psql: error: could not connect to server: could not connect to server: Connection refused Is the server running on host "" and accepting TCP/IP connections on port xxxxx? (14898) [Issue 2] When cm_ctl status command is performed to check the status of instances, the status of stopped instance might be displayed as the status before it was stopped (primary or standby), not as "unknown". [Issue 3] When the Connection Manager goes down, a message that Connection Manager is down might not be output on the database server. - Requirements to reproduce this issue [Requirements to reproduce 1] Issue 1 may occur under the following conditions. 1) Use the Connection Manager, and 2) The database server goes down, and 3) The Connection Manager outputs the following error message when the database server went down in 2), and ERROR: could not receive a heartbeat packet: could not recieve data: Connection reset by peer (25144) 4) Either of following values was specified for target_session_attrs when the application connects to the server using Transparent Connection Support Feature of Connection Manager. - any - prefer-read (If the downed database server was standby status) [Requirements to reproduce 2] Issue 2 may occur under the following conditions. 1) Use the Connection Manager, and 2) The database server goes down, and 3) The Connection Manager outputs the following error message when the database server went down in 2), and ERROR: could not receive a heartbeat packet: could not recieve data: Connection reset by peer (25144) 4) Perform cm_ctl status command with either of following options. - -i instance - -i all [Requirements to reproduce 3] Issue 3 may occur under the following conditions. 1) Use the Connection Manager, and 2) The database server goes down. - Action Fix the processing of Connection Manager when it detects the database server is down, and the processing of the database server when it detects the Connection Manager is down. Also, when the database server detects the Connection Manager is down, it outputs the following message. WARNING: watchdog: heartbeat connection error occurred (20331): host=xxx.xxx.xxx.xxx port=xxxxx pid=xxxxx - Compatibility Information - Summary When the watchdog in database server detects the Connection Manager is down, the following message will be output on the database server. WARNING: watchdog: heartbeat connection error occurred (20331): host=xxx.xxx.xxx.xxx port=xxxxx pid=xxxxx - Environment It may occur under the following conditions. 1) Use the Connection Manager on the application server, and 2) Run the watchdog process on the database server, and 3) The application server or Connection Manager of 1) goes down. - Products combination of this compatibility problem The Connection Manager is used, and the watchdog process on the database server detects that Connection Manager is down at a specific timing. - Reason of conflictions Fixing the processing of the database server when it detects the Connection Manager is down. - Impacts The database server logs messages that were not previously output. - Functional items (Summary, Before/After of migration) Changes the message when the conditions are met. [Before] While the watchdog on the database server detects the Connection Manager is down, the following message is not output. WARNING: watchdog: heartbeat connection error occurred (20331): host=xxx.xxx.xxx.xxx port=xxxxx pid=xxxxx [After] When the watchdog on the database server detects the Connection Manager is down, the following message may be output. WARNING: watchdog: heartbeat connection error occurred (20331): host=xxx.xxx.xxx.xxx port=xxxxx pid=xxxxx - Preventive Method If you monitor the database log for the watchdog messages, change the monitoring settings to take into account the new messages. - Back out method of the functions None. - User action It is the same as the Preventive Method. 06 PH19967 [ ]Security failure [*]Serious failure ([*]Degradation) [ ]Incompatibility does not exist / [*]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description pg_hint_plan may not be able to control a query plan. - Requirements to reproduce this issue 1)Prepare the SQL statement with the hint clause in one of the following ways. and Embedded SQL in C or COBOL - EXEC SQL PREPARE C Library (libpq) - PQprepare - PQsendQueryPrepared .NET Data Provider - Prepare JDBC Driver -prepareStatement ODBC driver - SQLPrepare 2) Execute a SQL statement, or prepare a SQL statement. and 3) Execute the SQL statement prepared in 1). - Action Fix the handling of pg_hint_plan. - Compatibility Information After applying the fix of PH19967, if pg_hint_plan is enabled, the query plan may change. - Environment Occurs when certain functions are used. - Products combination of this compatibility problem Controlling a query plan with pg_hint_plan. - Reason of conflictions Fault correction. - Impacts If you monitor if the query plan and the hint clause content match perfectly, you are affected. Also, if the correct query plan is selected and the performance deteriorates, please modify the application to choose the old query plan. - Functional items (Summary, Before/After of migration) The specified query plan is chosen by the hint clause. Before Query Text:/* * IndexScan (a) */select * from a where a = $1 Seq Scan on a Filter: (a = 1) After: Query Text:/* * IndexScan (a) */select * from a where a = $1 Index Scan using a_a_idx on a Index Cond: (a = 1) - Preventive Method None. - Back out method of the functions None. - User action If you have an application that works well with the wrong query plan, please modify the application to choose the old query plan. 07 PH20287 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description [Issue 1] When a heartbeat connection was timed out while connecting to a database with Connection Manager, a memory leak(*) occurs in the conmgr process. And, if a heartbeat connection was timed out repeatedly, the following issues may be occurred. - When a client process performs an operation which requires file descriptors, an error occurs due to the maximum file descriptor limit on the operating system. - The conmgr process fails to connect to the database with the following messages. ERROR: could not connect due to the following errors ERROR: Too many open files * About 1500 bytes and some file descriptors for each heartbeat connection timeout. [Issue 2] When a heartbeat connection was timed out while connecting to a database with Connection Manager and the connection was recovered immediately, the conmgr process may down with a following message. FATAL: invalid status(AC_INIT) for heartbeat internal event(CONNECTED) - Requirements to reproduce this issue [Requirements to reproduce 1] Issue 1 may occur under the following conditions. 1) The database server or network is in either of the following condition, and - The database server is not started, or - The database server is in an unresponsive, or - The database server is slowing down, or - A network error is occurred. 2) Connect to the database with Connection Manager, and 3) A heartbeat connection is timed out between Connection Manager and the database, and Connection Manager outputs a following error message, and - ERROR: heartbeat connect is timed out 4) The above error occurs repeatedly. [Requirements to reproduce 2] Issue 2 may occur under the following conditions. 1) The database server or network is in either of the following condition, and - The database server is in an unresponsive, or - The database server is slowing down, or - A network error is occurred. 2) Connect to the database with Connection Manager, and 3) A heartbeat connection is timed out between Connection Manager and the database, and Connection Manager outputs a following error message, and - ERROR: heartbeat connect is timed out 4) 1) is resolved immediately after 3) above. - Action Fix the processing of Connection Manager's resource release processing when a heartbeat connection is timed out. - Compatibility Information None. 08 PH20355 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular issue because bug corrections in PostgreSQL 12.6 and 12.7 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of PostgreSQL 12.6 and 12.7 to FUJITSU Enterprise Postgres. You can see applied changes in the below URL. https://www.postgresql.org/docs/12/release-12-6.html https://www.postgresql.org/docs/12/release-12-7.html - Action Apply the changes of PostgreSQL 12 to FUJITSU Enterprise Postgres. - Compatibility Information None. Fix Number: FJSVfsep-SV-ORJ-12-1200-2.el7.x86_64 01 PH14670 [ ]Security failure [ ]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([ ]Always / [ ]Rarely / [*]Irregularly) - Description If you execute a SQL statement from an embedded in SQL COBOL application and receive the execution result of the query in the host variable, a memory access violation may occur. - Requirements to reproduce this issue Condition 1. 1) The application developed by embedded SQL in COBOL, and 2) Receive the execution result of the query with the host variable of the following type, and 2-1) PIC X(n) VARYING 3) The length of the host variable and the length of the execution result are the same number of bytes. Condition 2. 1) The application developed by embedded SQL in COBOL, and 2) Receive the execution result of the query with the host variable of the following types, and 2-1) PIC N(n), or 2-2) PIC N(n) VARYING 3) The data obtained from the execution result of the query consists only of the characters of the maximum number of bytes in the encoding specified in the environment variable ECOBPG_NCHAR (*), and 4) The length of the host variable and the length of the execution result are the same number of bytes. (*) ECOBPG_NCHAR value For Linux/Windows ECOBPG_NCHAR={ UTF16LE | UTF16BE | UTF32LE | UTF32BE | SJIS } For Solaris ECOBPG_NCHAR={ UTF16LE | UTF16BE | UTF32LE | UTF32BE | SJIS | COBOL_EUC } Condition 3. 1) The application developed by embedded SQL in COBOL, and 2) Receive the execution result of the query with the host variable of the following type, and 2-1) PIC X(n) 3) The data of NAME field which is extracted by GET DESCRIPTOR is stored into host variable of 2), and 4) The length of the host variable and the length of the execution result are the same number of bytes. - Action Fix the processing when storing the execution result of the query in the host variable of the string. - Compatibility Information None. 02 PH16195 [ ]Security failure [ ]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description Output the following message when precompiling an application using embedded SQL in COBOL which includes an external file. ERROR: could not open include file "xxx" on line xxx (16289) - Requirements to reproduce this issue 1) Create an application using embedded SQL in COBOL, and 2) Either of following commands is specified in the application of 1), and - EXEC SQL INCLUDE filename END-EXEC. - EXEC SQL INCLUDE END-EXEC. - EXEC SQL INCLUDE "filename" END-EXEC. 3) The file name without the extension ".pco" is specified to the EXEC SQL INCLUDE command of 2), and 4) There is a specified file name with the extension ".pco" in directories where the ecobpg preprocessor will search a file, and 5) Use the ecobpg command to precompile the application. - Action Fix the processing of searching an external file in the precompiler ecobpg. - Compatibility Information None. 03 PH16471 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description [Issue 1] An embedded SQL COBOL application may not store any data even if it exists. [Issue 2] An embedded SQL COBOL application may return or insert wrong data. - Requirements to reproduce this issue [Requirements to reproduce Issue 1] 1) Create an application using embedded SQL in COBOL, and 2) Client encoding is set to UTF-8, and 3) The ECOBPG_NCHAR environment variable is not set, or set to the following values, and 3-1) UTF16LE, or 3-2) UTF16BE, or 3-3) UTF32LE, or 3-4) UTF32BE. 4) The application of 1) has PIC N(n) host variable, and 5) A SELECT statement stores its result to the host variable of 4) 6) The host variable length of 4) is longer than the length of columns which is target to get the data by SELECT statement of 5). [Requirements to reproduce 1 of Issue 2] 1) Create an application using embedded SQL in COBOL, and 2) Client encoding is set to UTF-8, and 3) The ECOBPG_NCHAR environment variable is not set, or set to the following values, and 3-1) UTF16LE, or 3-2) UTF16BE. 4) The application of 1) has PIC N(n) host variable, and 5) SELECT statement is set to host variable of 4), and 6) The data which is got by 5) has UTF-8 4-byte character (Surrogate pair). [Requirements to reproduce 2 of Issue 2] 1) Create an application using embedded SQL in COBOL, and 2) Client encoding is set to UTF-8, and 3) The ECOBPG_NCHAR environment variable is not set, or set to UTF16BE, and 4) The application of 1) has PIC N(n) host variable, and 5) INSERT statement is set to host variable of 4), and 6) The data which is got by 5) has UTF-8 4-byte character (Surrogate pair). (*) If the condition matches both [Requirements to reproduce Issue 1] and [Requirements to reproduce 1 of Issue 2], Issue 1 is occurred. - Action Fix the processing of calculating the character length in encoding conversion. - Compatibility Information None. 04 PH16473 [ ]Security failure [ ]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description Executing SQL with an outer join operator (+) may fail with either one of following messages: ERROR: invalid combination of outer join operator (+) and logical operators ERROR: unrecognized node type: 312 - Requirements to reproduce this issue 1) Execute SQL with an outer join operator (+), and 2) Either of following expressions are included in WHERE clause of 1)'s SQL, and - CASE - COALESCE - GREATEST - LEAST - IS TRUE or IS NOT TRUE - IS FALSE or IS NOT FALSE - IS UNKNOWN or IS NOT UNKNOWN - IS NULL or IS NOT NULL - ROW() - Type conversion - Comparison operators - Functions 3) 2)'s expression includes AND or NOT. - Action Corrects processing of parsing an outer join operator (+). - Compatibility Information None. 05 PH16631 [ ]Security failure [*]Serious failure ([*]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([ ]Always / [*]Rarely / [ ]Irregularly) - Description WAL mirroring is stopped after printing following messages. ERROR: could not open file "@1@": No such file or directory (10015) WARNING: a failure has occurred while multiplexing transaction log files (14366) - Requirements to reproduce this issue 1) backup_destination parameter is specified in postgresql.conf, and 2) Either following actions are done. 2-1) Execute pgx_rcvall command, or 2-2) Execute Point-in-Time Recovery, or 2-3) Promote standby server to primary server. (*) This failure only occurs when WAL record which Postgres REDO is exactly the last record in the WAL segment file. For this reason, this failure is not always occurred when "Requirements to reproduce this issue" is satisfied. - Action Fix the processing of WAL Mirroring feature. - Compatibility Information None. 06 PH16646 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([ ]Always / [*]Rarely / [ ]Irregularly) - Description The database cluster may not switch normally, although a database process error was detected during failover operation integrated with PRIMECLUSTER. - Requirements to reproduce this issue It may occur under the following conditions. 1) Setting Up Failover Operation integrated with PRIMECLUSTER, and 2) The one of following operation or issue is occured to a cluster application, and - Stop, or - Mutual switch, or - Forced switch, or - Resource error. 3) The postmaster process is unresponsive. - Action Fix the processing about forced stop of the database process when an error was detected. - Compatibility Information None. 07 PH17742 [ ]Security failure [ ]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description The index on the unlogged table may be broken and the following error may occur when referencing or updating the table. ERROR: invalid page in block 0 of relation xxxxx - Requirements to reproduce this issue 1) Use Transparent Data Encryption, and 2) Create a table with UNLOGGED clause, and 3) Create an index on the table of 2), and 4) The index of 3) exists in an encrypted tablespace, and 5) One of the following occurs, and - a crash recovery - a promotion from standby server to primary server 6) Execute an SQL which references or updates the table of 2). - Action Fix the processing for an unlogged table when using Transparent Data Encryption. - Compatibility Information None. 08 PH17860 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description Precompiling embedded SQL in COBOL fails with below error message when the "DO" command was used in the application. Error message: test.pco:xx: ERROR: syntax error at or near "do" - Requirements to reproduce this issue 1) An embedded SQL application is created using COBOL, and 2) The application has "WHENEVER" command, and 3) "DO" command is not used in 2)'s command, and 4) "DO" command is used as a part of SQL after 2)'s command, and 5) The application is precompiled by ecobpg command. - Action This update modifies the parsing of DO command in ecobpg. - Compatibility Information None. 09 PH18047 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description The result of SQL might not be masked when the data masking feature is enabled. - Requirements to reproduce this issue It may occur under the following conditions. 1) Use the data masking feature, and 2) Create the masking policy on the table, and 3) The masking target of 2) is the second or later column which is defined on the table, and 4) Any Index is created on the masking target of 2), and 5) Execute SELECT statement which refers to the masking target of 2), and 6) The execution plan of 5) contains IndexOnlyScan. (*) To check whether the execution plan contains IndexOnlyScan, you could execute EXPLAIN against the SQL of 6). - Action Fix the processing of data masking. - Compatibility Information None. 10 PH18842 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description [Issue 1] Using pgx_rcvall command, the instance might be recovered to an unintended state. [Issue 2] Following messages may be printed on checkpoint process. WARNING: could not open file "/backupdir/online_wal/000000010000000000000001": No such file or directory - Requirements to reproduce this issue [Requirements to reproduce Issue 1] 1) WAL mirroring is enabled, and 2) WAL segment files exist in the both of transaction log storage destination and mirrored transaction log destination, and 3) Either of following conditions exists, and 3-1) Execute pg_ctl stop command, or 3-2) Execute pgx_rcvall command, or 3-3) Execute pg_start_backup command by fast mode, or 3-4) Execute pgx_dmpall -C command by fast mode, or 3-5) WAL segment files in the transaction log storage marked as obsolete by the previous checkpoint have not been archived. 4) In 3), WAL archiving is failed, and 5) Excecute data recovery by pgx_rcvall command. (*) As internal condition, this issue is occured when the mirrored transaction logs to use recovery are removed on 3). [Requirements to reproduce Issue 2] 1) WAL mirroring is enabled, and 2) WAL segment files exist in the both of transaction log storage destination and mirrored transaction log destination, and 3) Either of following conditions exists, and 3-1) Execute pg_ctl stop command, or 3-2) Execute pgx_rcvall command, or 3-3) Execute pg_start_backup command by fast mode, or 3-4) Execute pgx_dmpall -C command by fast mode, or 3-5) WAL segment files in the transaction log storage marked as obsolete by the previous checkpoint have not been archived. 4) After 3), processing with checkpoint is performed. - Action Fix the processing to specify which multiplexed transaction logs are removed on checkpoint. - Compatibility Information None. 11 PH18942 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no particular phenomena because bug corrections in Orafce 3.9.0, 3.11.0, 3.12.0 and 3.13.4 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of Orafce 3.9.0, 3.11.0, 3.12.0 and 3.13.4 to FUJITSU Enterprise Postgres. You can see applied changes in the below URLs. https://github.com/orafce/orafce/releases/tag/VERSION_3_9_0 https://github.com/orafce/orafce/releases/tag/VERSION_3_11_0 https://github.com/orafce/orafce/releases/tag/VERSION_3_12_0 https://github.com/orafce/orafce/releases/tag/VERSION_3_13_4 - Action Apply the changes of Orafce to FUJITSU Enterprise Postgres. - Compatibility Information None. 12 PH19802 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description There is no issue phenomena because bug corrections in PostgreSQL 12.2, 12.3, 12.4 and 12.5 apply to FUJITSU Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of PostgreSQL 12.2, 12.3, 12.4 and 12.5 to FUJITSU Enterprise Postgres. You can see applied changes in the below URL. https://www.postgresql.org/docs/12/release-12-2.html https://www.postgresql.org/docs/12/release-12-3.html https://www.postgresql.org/docs/12/release-12-4.html https://www.postgresql.org/docs/12/release-12-5.html - Action Apply the changes of PostgreSQL 12 to FUJITSU Enterprise Postgres. - Compatibility Information None. Fix Number: FJSVfsep-SV-ORJ-12-1200-1.el7.x86_64 01 PH18746 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([ ]Always / [ ]Rarely / [*]Irregularly) - Description The database server may crash when using Global Meta Cache feature. - Requirements to reproduce this issue 1) Use Global Meta Cache feature. (*) As an internal condition, this issue occurs when either of the following conditions. 1) Satisfy the following conditions, or 1-1) A process of arranging the tuple of the system catalog in the GMC area and a process of updating the tuple of the system catalog are executed simultaneously, and the old tuple is arranged in the GMC area, and 1-2) The old tuple is removed by Vacuum, and 1-3) The tuple is updated. 2) The meta cache corresponding to the meta cache header for each process has been removed from the GMC area. - Action Fix the processing of Global Meta Cache. - Compatibility Information None. 02 PH18945 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([ ]Always / [ ]Rarely / [*]Irregularly) - Description Database might become unresponsive with the following message: WARNING: Sleep until another process releases global meta cache because global meta cache cannot be swept away yet. Please increase pgx_global_metacache. - Requirements to reproduce this issue 1) The Global Meta Cache (CMC) feature is enabled, and 2) One of the following conditions is satisfied: - When system catalogs are searched by using non-unique keys. - When a query is executed and become an error. - Action Fix GMC feature. - Compatibility Information None. 03 PH18958 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([ ]Always / [ ]Rarely / [*]Irregularly) - Description The performance of the database may degrade when using Global Meta Cache feature. (*) The degree of the performance degradation depends on the application. The degree of the performance degradation may be more than 10 times compared with not using Global Meta Cache feature. - Requirements to reproduce this issue 1) Use Global Meta Cache feature. (*) As an internal condition, this issue occurs when the following condition. 1) A SQL statement referring to the same tuple of the system catalog is executed in about 20 multiplexes or more. - Action Fix the processing of Global Meta Cache. - Compatibility Information None. 04 PH18962 [ ]Security failure [*]Serious failure ([*]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description To take advantage of JIT compilation, only a fixed version of LLVM is available. As a result, only the desupported version may be available. - Requirements to reproduce this issue 1) The jit parameter in postgresql.conf is set to on. - Action llvmjit.so for multiple versions of LLVM will be provided. It will become the fact that the desirable version of LLVM can be selected. Also, the following will be added to "Required Operating System" in the Installation and Setup Guide for Server. - Available LLVM versions - The jit_provider parameter must be set depending on the version of LLVM will be used. Modules for multiple versions of LLVM will be provided. For Red Hat (R) Enterprise Linux (R) 7, a set of modules for LLVM version 9 will be provided. For Red Hat (R) Enterprise Linux (R) 8, a set of modules for LLVM versions 7, 8 and 9 will be provided. For SUSE Linux Enterprise Server 12, a set of modules for LLVM version 7 will be provided. By specifying the desirable version of LLVM, JIT compilation can be used. Even after this revision is applied, modules compatible with the legacy version of LLVM can be used. Version 5 of the LLVM for Red Hat (R) Enterprise Linux (R) 7, version 8 of the LLVM for Red Hat (R) Enterprise Linux (R) 8 and version 5 of the LLVM for SUSE Linux Enterprise Server 12 is respectively available as a legacy version. Please follow the instructions below. [How to use] 1.Install the desirable version of LLVM into the environment. 2.In postgresql.conf, set the jit parameter to on. 3.In postgresql.conf, set the jit_provider parameter to the following: - Set jit_provider to llvmjit to take advantage of JIT compilation with a legacy version of LLVM. - Set jit_provider to llvmjit-vsn$ to take advantage of JIT compilation using LLVM version$ which is not a legacy version. *After applying this fix, it is possible to use JIT compilation using LLVM version 8 by specifying llvmjit or llvmjit-vsn8 as the jit _ provider value on Red Hat (R) Enterprise Linux (R) 8. It is recommended to specify llvmjit-vsn8 when using JIT compilation using LLVM version 8 after applying this fix. llvmjit is maintained for compatibility. - Compatibility Information None. 05 PH19008 [ ]Security failure [*]Serious failure ([*]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description - Issue 1 When a PL/pgSQL function or procedure is executed with pgaudit enabled, one of the following errors occurs. - ERROR: row variable has no tupdesc - ERROR: record "xxx" is not assigned yet DETAIL: The tuple structure of a not-yet-assigned record is indeterminate. - Issue 2 When pg_statsinfo or pg_dbms_stats is used with pgaudit, one of the following errors occurs. - ERROR: row variable has no tupdesc - ERROR: record "xxx" is not assigned yet DETAIL: The tuple structure of a not-yet-assigned record is indeterminate. - Requirements to reproduce this issue - Requirements to reproduce issue 1 1) Enable pgaudit, and 2) Set the parameter of pgaudit log_parameter to on, and 3) A PL/pgSQL function or procedure contains one of the following commands, excluding a dynamic command, and 3-1) Refer to the declared parameter in the function or procedure from a SQL command. 3-2) Refer to the argument of the parameter or procedure from a SQL command. 3-3) Refer to the special variables for trigger (e.g. NEW, OLD) from a SQL command. Reference) PostgreSQL Documentation Server Programming Trigger Functions Supplement) Command text: a string of SQL command a dynamic command: a SQL command executed by EXECUTE statement Reference) PostgreSQL Documentation Server Programming Executing Dynamic Commands 4) The function or procedure contains one of the following commands, and 4-1) FOR target IN query LOOP statement 4-2) INTO clause 4-3) name CURSOR (arguments) FOR query statement 4-4) Accessing a field of a RECORD type variable. 5) Execute the function or procedure that satisfies an audit rule by one of the following method. 5-1) SELECT or CALL statement 5-2) Execute by a trigger Supplement) This error occurs when the first SQL command that satisfies 3) condition in the function or procedure is executed. - Requirements to reproduce issue 2 1) Enable pgaudit, and 2) Set the parameter of pgaudit log_parameter to on, and 3) Enable one of the following extensions. 3-1) pg_statsinfo 3-2) pg_dbms_stats Supplement) Some of these functions can be used, but we described that pg_statsinfo and pg_dbms_stats cannot be used entirely because the API required to use the function causes the issue 1 error. - Action Fix the parameter value output processing of pgaudit. - Compatibility Information None. 06 PH19013 [*]Security failure [*]Serious failure ([*]Degradation) [ ]Incompatibility does not exist / [*]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description When a PL/pgSQL function or procedure is executed, there's a possibility that first two arguments or a variable declared in the function are not emitted in the audit log. - Requirements to reproduce this issue 1) Enable pgaudit. And, 2) Set the parameter of pgaudit log_parameter to on. And, 3) A PL/pgSQL function or procedure contains one of the following commands, excluding a dynamic command. And, 3-1) Refer to the variable declared in the function or procedure from a SQL command. Or, 3-2) Refer to the argument of the function or procedure from a SQL command. Reference) PostgreSQL Documentation Server Programming Trigger Functions Supplement) Command text: a string of SQL command a dynamic command: SQL command executed by EXECUTE statement Reference) PostgreSQL Documentation Server Programming Executing Dynamic Commands 4) Arguments of the function or procedure or variables declared in the function or procedure are defined as one of the following case. And, 4-1) Arguments or variables are defined as below. Or, 4-1-1) One or more Arguments are defined. 4-2) Arguments or variables are defined as below. 4-2-1) Arguments is not defined. And, 4-2-2) One or more variables are declared in the function or procedure. And, 4-2-3) The value of the variable declared first in the function or procedure is set before the SQL command which matches the conditions of 3). 5) Execute the function or procedure that satisfies an audit rule by one of the following methods. 5-1) Execute the SELECT statement. Or, 5-2) Execute the CALL statement. - Action Fix the parameter value output processing of pgaudit. - Compatibility Information - Abstraction After applying PH19013, NEW and OLD parameters of the trigger function will be logged in the audit log when pgaudit.log_parameter is set to on. - Requirements to reproduce incompatibility issue When using specific feature, the issue occurs. - Abstraction of requirements to reproduce incompatibility issue/ Product combination to be suffered incompatibility issue When pgaudit.log_parameter is set to on and parameters of the trigger function is logged in the audit log, this issue is occurred. FUJITSU Enterprise Postgres AE 11/12. - The reason of causing incompatibility issue Because we determined to log all of parameters of the function. - Impact Though NEW and OLD parameters will be newly logged, it is ok to log those because those are already logged when executing a SQL statement to a table which a trigger function is defined. If using the application that do some processing by observing a log in the audit log which shows parameters of a trigger function, the application might need to be modified because the order of the parameters will be changed. However, there might be almost no users using such an application, because it should satisfy below conditions and it is hard to satisfy those conditions. - Observing a SQL statement in the trigger function. And - Set the parameter of pgaudit log_parameter to on. And, - Understanding the order of the parameters of the trigger function. Supplement) To understand the order of the parameters, reading source code is required. There are no impact in other cases. - Description(Abstraction and the difference between before and after applying modification) After applying modification, NEW and OLD parameters are logged at the position of (18) in the below example. Before applying modifiation: AUDIT: SESSION,WRITE,2020-09-03 07:07:39 UTC, (1) (2) (3) [local],9775,psql,k5user,postgres,3/536, 1, 2, INSERT, , (4) (5) (6) (7) (8) (9) (10)(11)(12)(13) TABLE,public.trig_audit, , (14) (15) (16) "INSERT INTO trig_audit SELECT 'U', now(), user, OLD.*, NEW.*", (17) trig_audit AFTER ROW UPDATE 92027 trig_test trig_test public 0 f aaaa (18) After applying modification: AUDIT: SESSION,WRITE,2020-09-03 07:07:39 UTC, [local],9775,psql,k5user,postgres,3/536,1,2,INSERT,,TABLE,public. trig_audit,, "INSERT INTO trig_audit SELECT 'U', now(), user, OLD.*, NEW.*", (bbb) (aaa) trig_audit AFTER ROW UPDATE 92027 trig_test trig_test public 0 f aaaa Supplement: About (18) : When log_parameter is set to on and parameters are used in the SQL statement, parameters are logged by space separated. When parameters are not used in the SQL statement, "" is logged. About (1)-(17) : See the below reference. Reference) Security Operation Guide Audit Log Feature Session Audit Logging - Action If using the application that do some processing by observing a log in the audit log which shows parameters of a trigger function, modify the application to run correctly if NEW and OLD parameters are logged. -The method of disabling this feature Set not to log parameters of the function in the audit log. - User action Set pgaudit.log_parameter to off. 07 PH19111 [ ]Security failure [ ]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description The password in the password file is not available when connecting to the database using Connection Manager, and an authentication failure error is output. - Requirements to reproduce this issue 1) Use Connection Manager, and 2) The password authentication for users connecting to the database is required, and 3) Use the password file, and 4) Use either of the following. 4-1) PostgreSQL Client Applications which can specify the --password option (ex. psql), or 4-2) Either of the following client interfaces. 4-2-1) libpq C Library 4-2-2) Embedded SQL in C 4-2-3) Embedded SQL in COBOL - Action Fix the connection processing of libpq C Library. - Compatibility Information None. 08 PH19182 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description conmgr process may exit abnormally with the following message. could not listen for socket: Too many open files - Requirements to reproduce this issue 1) Use Connection Manager, and 2) Connections to conmgr process is over the user limit for the maximum number (*) of open file descriptors. (*) You can confirm it by ulimit command with -n option. - Action Fix conmgr process for accepting connections from client and add the following configuration parameter that allows user to limit the number of connections before reaching the user limit for the maximum number of open file descriptors. The additional specification is added to Connection Manager User's Guide. max_connections (integer) Specify the maximum number of connections from client. If a client connects to conmgr process over the limit, conmgr process forcibly closes the connection without error message and logs the fact to log_destination as "LOG" level message. The value must be 0 or more. 0 means unlimited. The default value is 0. You must restart conmgr process for this parameter change to take effect. Change the user limit for the maximum number of open file descriptors to value of the following expression or more. If not specified, conmgr process exits abnormally by exceeding the user limit for the maximum number of open file descriptors. 9 + the number of database instance specified in conmgr.conf * 2 + the value of max_connections specified in conmgr.conf - Compatibility Information None. 09 PH19184 [ ]Security failure [ ]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description Libpq forgets closing socket to conmgr process and leaks memory when a client connects to database using Connection Manager. If the client connects and disconnects repeatedly, the following may be occured: - An action using file descriptor fails with user limit for the maximum number of open file descriptors. - conmgr process stops abnormally with the following error message. could not listen for socket: Too many open files - Requirements to reproduce this issue 1) Use one of the following client interfaces or PostgreSQL client application, and 1-1) libpq - C Library 1-2) ECPG - Embedded SQL in C 1-3) ECOBPG - Embedded SQL in COBOL 1-4) psql command 2) Connect to database using Connection Manager, and 3) Disconnect the above connection with the following method, and 3-1) in case of 1-1), call PQfinish(). 3-2) in case of 1-2), execute DISCONNECT statement. 3-3) in case of 1-3), execute DISCONNECT statement. 3-4) in case of 1-4), execute psql meta command '\c'. 4) Do not stop the client process. Note 1: The resource leaking is occured in 3), but if the client process exits, the failure is not occured because operating system releases the resource. Note 2: Size of leaked memory is as the following: String value length of host or hostaddr parameter + String value length of port parameter + String value length of target_session_attrs parameter - Action Fix PQfinish() of libpq. - Compatibility Information None. ------------------------------------------------------------------------------- [List of fixed files] Files replaced by the patch: $INS_DIR/FJQSS/fjqss_tool1/CollectionInfo.html $INS_DIR/FJQSS/fjqss_tool1/CollectionInfo.txt $INS_DIR/FJQSS/fjqss_tool1/CollectionInfoEn.html $INS_DIR/FJQSS/fjqss_tool1/CollectionInfoEn.txt $INS_DIR/FJQSS/fjqss_tool1/FJQSSConf.txt $INS_DIR/FJQSS/fjqss_tool1/env/EZversion_c.txt $INS_DIR/FJQSS/fjqss_tool1/env/EZversion_euc.txt $INS_DIR/FJQSS/fjqss_tool1/env/EZversion_sjis.txt $INS_DIR/FJQSS/fjqss_tool1/env/EZversion_utf8.txt $INS_DIR/FJQSS/fjqss_tool1/env/FJQSS-ArcVL.txt $INS_DIR/FJQSS/fjqss_tool1/env/outline_c.txt $INS_DIR/FJQSS/fjqss_tool1/env/outline_euc.txt $INS_DIR/FJQSS/fjqss_tool1/env/outline_sjis.txt $INS_DIR/FJQSS/fjqss_tool1/env/outline_utf8.txt $INS_DIR/FJQSS/fjqss_tool1/env/qss14487._mainte_iil $INS_DIR/FJQSS/fjqss_tool1/env/qss14496_product $INS_DIR/FJQSS/fjqss_tool2/CollectionInfo.html $INS_DIR/FJQSS/fjqss_tool2/CollectionInfo.txt $INS_DIR/FJQSS/fjqss_tool2/CollectionInfoEn.html $INS_DIR/FJQSS/fjqss_tool2/CollectionInfoEn.txt $INS_DIR/FJQSS/fjqss_tool2/FJQSSConf.txt $INS_DIR/FJQSS/fjqss_tool2/env/EZversion_c.txt $INS_DIR/FJQSS/fjqss_tool2/env/EZversion_euc.txt $INS_DIR/FJQSS/fjqss_tool2/env/EZversion_sjis.txt $INS_DIR/FJQSS/fjqss_tool2/env/EZversion_utf8.txt $INS_DIR/FJQSS/fjqss_tool2/env/FJQSS-ArcVL.txt $INS_DIR/FJQSS/fjqss_tool2/env/outline_c.txt $INS_DIR/FJQSS/fjqss_tool2/env/outline_euc.txt $INS_DIR/FJQSS/fjqss_tool2/env/outline_sjis.txt $INS_DIR/FJQSS/fjqss_tool2/env/outline_utf8.txt $INS_DIR/FJQSS/fjqss_tool2/env/qss14485._mainte_iil $INS_DIR/FJQSS/fjqss_tool2/env/qss14494_product $INS_DIR/FJQSS/fjqss_tool3/CollectionInfo.html $INS_DIR/FJQSS/fjqss_tool3/CollectionInfo.txt $INS_DIR/FJQSS/fjqss_tool3/CollectionInfoEn.html $INS_DIR/FJQSS/fjqss_tool3/CollectionInfoEn.txt $INS_DIR/FJQSS/fjqss_tool3/FJQSSConf.txt $INS_DIR/FJQSS/fjqss_tool3/env/EZversion_c.txt $INS_DIR/FJQSS/fjqss_tool3/env/EZversion_euc.txt $INS_DIR/FJQSS/fjqss_tool3/env/EZversion_sjis.txt $INS_DIR/FJQSS/fjqss_tool3/env/EZversion_utf8.txt $INS_DIR/FJQSS/fjqss_tool3/env/FJQSS-ArcVL.txt $INS_DIR/FJQSS/fjqss_tool3/env/outline_c.txt $INS_DIR/FJQSS/fjqss_tool3/env/outline_euc.txt $INS_DIR/FJQSS/fjqss_tool3/env/outline_sjis.txt $INS_DIR/FJQSS/fjqss_tool3/env/outline_utf8.txt $INS_DIR/FJQSS/fjqss_tool3/env/qss14489._mainte_iil $INS_DIR/FJQSS/fjqss_tool3/env/qss14497_product $INS_DIR/LIC/FEP_CheckLicense $INS_DIR/LIC/FEP_CheckLicense.sh $INS_DIR/LIC/fjlic $INS_DIR/LIC/fjlic-client.jar $INS_DIR/LIC/fjlic.conf $INS_DIR/LIC/jna.jar $INS_DIR/LIC/libfjlicclient.so $INS_DIR/LIC/message.ja_JP.EUC.txt $INS_DIR/LIC/message.ja_JP.SJIS.txt $INS_DIR/LIC/message.ja_JP.UTF8.txt $INS_DIR/LIC/message.txt $INS_DIR/OSS/Pgpool-II/lib/pgpool-recovery.so $INS_DIR/OSS/Pgpool-II/share/extension/pgpool-recovery.sql $INS_DIR/OSS/Pgpool-II/share/extension/pgpool_recovery--1.1--1.2.sql $INS_DIR/OSS/Pgpool-II/share/extension/pgpool_recovery--1.1.sql $INS_DIR/OSS/Pgpool-II/share/extension/pgpool_recovery--1.2--1.3.sql $INS_DIR/OSS/Pgpool-II/share/extension/pgpool_recovery--1.2.sql $INS_DIR/OSS/Pgpool-II/share/extension/pgpool_recovery--1.3.sql $INS_DIR/OSS/Pgpool-II/share/extension/pgpool_recovery.control $INS_DIR/OSS/oracle_fdw/lib/oracle_fdw.so $INS_DIR/OSS/oracle_fdw/share/doc/extension/README.oracle_fdw $INS_DIR/OSS/oracle_fdw/share/extension/oracle_fdw--1.0--1.1.sql $INS_DIR/OSS/oracle_fdw/share/extension/oracle_fdw--1.1--1.2.sql $INS_DIR/OSS/oracle_fdw/share/extension/oracle_fdw--1.2.sql $INS_DIR/OSS/oracle_fdw/share/extension/oracle_fdw.control $INS_DIR/OSS/pg_bigm/lib/pg_bigm.so $INS_DIR/OSS/pg_bigm/share/extension/pg_bigm--1.0--1.1.sql $INS_DIR/OSS/pg_bigm/share/extension/pg_bigm--1.1--1.2.sql $INS_DIR/OSS/pg_bigm/share/extension/pg_bigm--1.2.sql $INS_DIR/OSS/pg_bigm/share/extension/pg_bigm.control $INS_DIR/OSS/pg_dbms_stats/lib/pg_dbms_stats.so $INS_DIR/OSS/pg_dbms_stats/share/doc/extension /export_effective_stats-12.sql.sample $INS_DIR/OSS/pg_dbms_stats/share/doc/extension /export_plain_stats-12.sql.sample $INS_DIR/OSS/pg_dbms_stats/share/extension/pg_dbms_stats--1.3.11.sql $INS_DIR/OSS/pg_dbms_stats/share/extension/pg_dbms_stats.control $INS_DIR/OSS/pg_hint_plan/lib/pg_hint_plan.so $INS_DIR/OSS/pg_hint_plan/share/extension/pg_hint_plan--1.3.5--1.3.6.sql $INS_DIR/OSS/pg_hint_plan/share/extension/pg_hint_plan--1.3.6--1.3.7.sql $INS_DIR/OSS/pg_hint_plan/share/extension/pg_hint_plan--1.3.7.sql $INS_DIR/OSS/pg_hint_plan/share/extension/pg_hint_plan.control $INS_DIR/OSS/pg_repack/bin/pg_repack $INS_DIR/OSS/pg_repack/lib/pg_repack.so $INS_DIR/OSS/pg_repack/share/extension/pg_repack--1.4.6.sql $INS_DIR/OSS/pg_repack/share/extension/pg_repack.control $INS_DIR/OSS/pg_rman/bin/pg_rman $INS_DIR/OSS/pg_statsinfo/bin/archive_pglog.sh $INS_DIR/OSS/pg_statsinfo/bin/pg_statsinfo $INS_DIR/OSS/pg_statsinfo/bin/pg_statsinfod $INS_DIR/OSS/pg_statsinfo/lib/pg_statsinfo.so $INS_DIR/OSS/pg_statsinfo/share/contrib/pg_statsinfo.sql $INS_DIR/OSS/pg_statsinfo/share/contrib/pg_statsrepo.sql $INS_DIR/OSS/pg_statsinfo/share/contrib/pg_statsrepo_alert.sql $INS_DIR/OSS/pg_statsinfo/share/contrib/uninstall_pg_statsinfo.sql $INS_DIR/OSS/pg_statsinfo/share/contrib/uninstall_pg_statsrepo.sql $INS_DIR/OSS/pgaudit/lib/pgaudit.so $INS_DIR/OSS/pgaudit/share/extension/pgaudit--1.0.sql $INS_DIR/OSS/pgaudit/share/extension/pgaudit.control $INS_DIR/OSS/pgaudit/share/locale/en/LC_MESSAGES/pgaudit-12.mo $INS_DIR/OSS/pgaudit/share/locale/ja/LC_MESSAGES/pgaudit-12.mo $INS_DIR/OSS/pgbadger/usr/bin/pgbadger $INS_DIR/OSS/pgbadger/usr/lib64/perl5/auto/pgBadger/.packlist $INS_DIR/OSS/pgbadger/usr/lib64/perl5/perllocal.pod $INS_DIR/OSS/pgbadger/usr/share/man/man1/pgbadger.1p $INS_DIR/bin/clusterdb $INS_DIR/bin/cm_ctl $INS_DIR/bin/conmgr $INS_DIR/bin/createdb $INS_DIR/bin/createuser $INS_DIR/bin/dropdb $INS_DIR/bin/dropuser $INS_DIR/bin/ecobpg $INS_DIR/bin/ecpg $INS_DIR/bin/fsep_script.func $INS_DIR/bin/fsep_script.offline $INS_DIR/bin/fsep_script.online $INS_DIR/bin/fsep_script.preonline $INS_DIR/bin/hvdet_fsep $INS_DIR/bin/initdb $INS_DIR/bin/mc_agent $INS_DIR/bin/mc_ctl $INS_DIR/bin/mc_keeper $INS_DIR/bin/mc_std $INS_DIR/bin/oid2name $INS_DIR/bin/pg_archivecleanup $INS_DIR/bin/pg_basebackup $INS_DIR/bin/pg_checksums $INS_DIR/bin/pg_config $INS_DIR/bin/pg_controldata $INS_DIR/bin/pg_ctl $INS_DIR/bin/pg_dump $INS_DIR/bin/pg_dumpall $INS_DIR/bin/pg_isready $INS_DIR/bin/pg_receivewal $INS_DIR/bin/pg_recvlogical $INS_DIR/bin/pg_resetwal $INS_DIR/bin/pg_restore $INS_DIR/bin/pg_rewind $INS_DIR/bin/pg_standby $INS_DIR/bin/pg_test_fsync $INS_DIR/bin/pg_test_timing $INS_DIR/bin/pg_upgrade $INS_DIR/bin/pg_waldump $INS_DIR/bin/pgbench $INS_DIR/bin/pgx_copy $INS_DIR/bin/pgx_dmpall $INS_DIR/bin/pgx_fjqssinf $INS_DIR/bin/pgx_getenvdata $INS_DIR/bin/pgx_hslock $INS_DIR/bin/pgx_keystore $INS_DIR/bin/pgx_loader $INS_DIR/bin/pgx_pclrsc $INS_DIR/bin/pgx_pcltrace $INS_DIR/bin/pgx_rcvall $INS_DIR/bin/pgx_symstd $INS_DIR/bin/pgx_userlog_control $INS_DIR/bin/pgx_walcopy.cmd $INS_DIR/bin/pgx_wch_svprocess $INS_DIR/bin/postgres $INS_DIR/bin/psql $INS_DIR/bin/reindexdb $INS_DIR/bin/vacuumdb $INS_DIR/bin/vacuumlo $INS_DIR/doc/Licence/ConvertUTF.txt $INS_DIR/doc/Licence/EntityFramework6.Npgsql.txt $INS_DIR/doc/Licence/Jackson-databind.txt $INS_DIR/doc/Licence/Kerberos-5.txt $INS_DIR/doc/Licence/Marionette.js.txt $INS_DIR/doc/Licence/MigLayout.txt $INS_DIR/doc/Licence/Npgsql.EntityFrameworkCore.PostgreSQL.txt $INS_DIR/doc/Licence/Npgsql.txt $INS_DIR/doc/Licence/OSSP-uuid.txt $INS_DIR/doc/Licence/OSS_List.pdf $INS_DIR/doc/Licence/OpenLDAP.txt $INS_DIR/doc/Licence/OpenSSL.txt $INS_DIR/doc/Licence/Pgpool-II.txt $INS_DIR/doc/Licence/PostgreSQL-JDBC-driver.txt $INS_DIR/doc/Licence/PostgreSQL.txt $INS_DIR/doc/Licence/Qt.txt $INS_DIR/doc/Licence/SQLite.txt $INS_DIR/doc/Licence/Shaj.txt $INS_DIR/doc/Licence/WiX-Toolset.txt $INS_DIR/doc/Licence/angular-block-ui.txt $INS_DIR/doc/Licence/angular-spinner.txt $INS_DIR/doc/Licence/angular-translate.txt $INS_DIR/doc/Licence/angular-visjs.txt $INS_DIR/doc/Licence/angular.js.txt $INS_DIR/doc/Licence/aopalliance.txt $INS_DIR/doc/Licence/apache-commons-codec.txt $INS_DIR/doc/Licence/apache-commons-configuration.txt $INS_DIR/doc/Licence/apache-commons-io.txt $INS_DIR/doc/Licence/apache-commons-lang.txt $INS_DIR/doc/Licence/apache-commons-logging.txt $INS_DIR/doc/Licence/apache-commons-pool.txt $INS_DIR/doc/Licence/apache-dbcp.txt $INS_DIR/doc/Licence/apache-derby.txt $INS_DIR/doc/Licence/apache-log4j.txt $INS_DIR/doc/Licence/apache-tomcat.txt $INS_DIR/doc/Licence/backbone.js.txt $INS_DIR/doc/Licence/cryptopp.txt $INS_DIR/doc/Licence/ecj.txt $INS_DIR/doc/Licence/elevate.txt $INS_DIR/doc/Licence/gettext_libintl.txt $INS_DIR/doc/Licence/icu.txt $INS_DIR/doc/Licence/jackson-annotations.txt $INS_DIR/doc/Licence/jackson-core.txt $INS_DIR/doc/Licence/jakarta-regexp.txt $INS_DIR/doc/Licence/java-native-access.txt $INS_DIR/doc/Licence/javax-inject.txt $INS_DIR/doc/Licence/jcl-over-slf4j.txt $INS_DIR/doc/Licence/jquery-html5storage.txt $INS_DIR/doc/Licence/jquery-ui.txt $INS_DIR/doc/Licence/jquery.txt $INS_DIR/doc/Licence/json2.txt $INS_DIR/doc/Licence/jstl.txt $INS_DIR/doc/Licence/libedit.txt $INS_DIR/doc/Licence/libevent.txt $INS_DIR/doc/Licence/libiconv.txt $INS_DIR/doc/Licence/libxml2.txt $INS_DIR/doc/Licence/libxslt.txt $INS_DIR/doc/Licence/log4cplus.txt $INS_DIR/doc/Licence/lombok.txt $INS_DIR/doc/Licence/moment.js.txt $INS_DIR/doc/Licence/ms-vc2010_en.txt $INS_DIR/doc/Licence/ms-vc2010_jp.txt $INS_DIR/doc/Licence/ms-vc2013_en.txt $INS_DIR/doc/Licence/ms-vc2013_jp.txt $INS_DIR/doc/Licence/ms-vc2015-2019_en.txt $INS_DIR/doc/Licence/ms-vc2015-2019_jp.txt $INS_DIR/doc/Licence/numeral-js.txt $INS_DIR/doc/Licence/oracle_fdw.txt $INS_DIR/doc/Licence/orafce.txt $INS_DIR/doc/Licence/paexec.txt $INS_DIR/doc/Licence/pgAdmin4.txt $INS_DIR/doc/Licence/pgBadger.txt $INS_DIR/doc/Licence/pg_bigm.txt $INS_DIR/doc/Licence/pg_dbms_stats.txt $INS_DIR/doc/Licence/pg_hint_plan.txt $INS_DIR/doc/Licence/pg_repack.txt $INS_DIR/doc/Licence/pg_rman.txt $INS_DIR/doc/Licence/pg_statsinfo.txt $INS_DIR/doc/Licence/pgaudit.txt $INS_DIR/doc/Licence/psqlODBC.txt $INS_DIR/doc/Licence/python.txt $INS_DIR/doc/Licence/slf4j.txt $INS_DIR/doc/Licence/spin.js.txt $INS_DIR/doc/Licence/spring-framework.txt $INS_DIR/doc/Licence/spring-security-web.txt $INS_DIR/doc/Licence/tcl.txt $INS_DIR/doc/Licence/tk.txt $INS_DIR/doc/Licence/underscore.js.txt $INS_DIR/doc/Licence/vis.js.txt $INS_DIR/doc/Licence/xerces-c.txt $INS_DIR/doc/Licence/yarn.txt $INS_DIR/doc/Licence/zlib.txt $INS_DIR/etc/mcversion $INS_DIR/include/SQLCA-COBOL $INS_DIR/include/SQLCA-COBOL.cob $INS_DIR/include/ecpg_config.h $INS_DIR/include/ecpg_informix.h $INS_DIR/include/ecpgerrno.h $INS_DIR/include/ecpglib.h $INS_DIR/include/ecpgtype.h $INS_DIR/include/informix/esql/datetime.h $INS_DIR/include/informix/esql/decimal.h $INS_DIR/include/informix/esql/sqltypes.h $INS_DIR/include/internal/c.h $INS_DIR/include/internal/libpq-int.h $INS_DIR/include/internal/libpq/pqcomm.h $INS_DIR/include/internal/port.h $INS_DIR/include/internal/postgres_fe.h $INS_DIR/include/internal/pqexpbuffer.h $INS_DIR/include/libpq-events.h $INS_DIR/include/libpq-fe.h $INS_DIR/include/libpq/libpq-fs.h $INS_DIR/include/pg_config.h $INS_DIR/include/pg_config_ext.h $INS_DIR/include/pg_config_manual.h $INS_DIR/include/pg_config_os.h $INS_DIR/include/pgtypes.h $INS_DIR/include/pgtypes_date.h $INS_DIR/include/pgtypes_error.h $INS_DIR/include/pgtypes_interval.h $INS_DIR/include/pgtypes_numeric.h $INS_DIR/include/pgtypes_timestamp.h $INS_DIR/include/postgres_ext.h $INS_DIR/include/server/FSEP_vci.h $INS_DIR/include/server/access/amapi.h $INS_DIR/include/server/access/amvalidate.h $INS_DIR/include/server/access/attnum.h $INS_DIR/include/server/access/brin.h $INS_DIR/include/server/access/brin_internal.h $INS_DIR/include/server/access/brin_page.h $INS_DIR/include/server/access/brin_pageops.h $INS_DIR/include/server/access/brin_revmap.h $INS_DIR/include/server/access/brin_tuple.h $INS_DIR/include/server/access/brin_xlog.h $INS_DIR/include/server/access/bufmask.h $INS_DIR/include/server/access/clog.h $INS_DIR/include/server/access/commit_ts.h $INS_DIR/include/server/access/genam.h $INS_DIR/include/server/access/generic_xlog.h $INS_DIR/include/server/access/gin.h $INS_DIR/include/server/access/gin_private.h $INS_DIR/include/server/access/ginblock.h $INS_DIR/include/server/access/ginxlog.h $INS_DIR/include/server/access/gist.h $INS_DIR/include/server/access/gist_private.h $INS_DIR/include/server/access/gistscan.h $INS_DIR/include/server/access/gistxlog.h $INS_DIR/include/server/access/hash.h $INS_DIR/include/server/access/hash_xlog.h $INS_DIR/include/server/access/heapam.h $INS_DIR/include/server/access/heapam_xlog.h $INS_DIR/include/server/access/hio.h $INS_DIR/include/server/access/htup.h $INS_DIR/include/server/access/htup_details.h $INS_DIR/include/server/access/itup.h $INS_DIR/include/server/access/multixact.h $INS_DIR/include/server/access/nbtree.h $INS_DIR/include/server/access/nbtxlog.h $INS_DIR/include/server/access/parallel.h $INS_DIR/include/server/access/printsimple.h $INS_DIR/include/server/access/printtup.h $INS_DIR/include/server/access/relation.h $INS_DIR/include/server/access/reloptions.h $INS_DIR/include/server/access/relscan.h $INS_DIR/include/server/access/rewriteheap.h $INS_DIR/include/server/access/rmgr.h $INS_DIR/include/server/access/rmgrlist.h $INS_DIR/include/server/access/sdir.h $INS_DIR/include/server/access/session.h $INS_DIR/include/server/access/skey.h $INS_DIR/include/server/access/slru.h $INS_DIR/include/server/access/spgist.h $INS_DIR/include/server/access/spgist_private.h $INS_DIR/include/server/access/spgxlog.h $INS_DIR/include/server/access/stratnum.h $INS_DIR/include/server/access/subtrans.h $INS_DIR/include/server/access/sysattr.h $INS_DIR/include/server/access/table.h $INS_DIR/include/server/access/tableam.h $INS_DIR/include/server/access/timeline.h $INS_DIR/include/server/access/transam.h $INS_DIR/include/server/access/tsmapi.h $INS_DIR/include/server/access/tupconvert.h $INS_DIR/include/server/access/tupdesc.h $INS_DIR/include/server/access/tupdesc_details.h $INS_DIR/include/server/access/tupmacs.h $INS_DIR/include/server/access/tuptoaster.h $INS_DIR/include/server/access/twophase.h $INS_DIR/include/server/access/twophase_rmgr.h $INS_DIR/include/server/access/valid.h $INS_DIR/include/server/access/visibilitymap.h $INS_DIR/include/server/access/xact.h $INS_DIR/include/server/access/xlog.h $INS_DIR/include/server/access/xlog_internal.h $INS_DIR/include/server/access/xlogdefs.h $INS_DIR/include/server/access/xloginsert.h $INS_DIR/include/server/access/xlogreader.h $INS_DIR/include/server/access/xlogrecord.h $INS_DIR/include/server/access/xlogutils.h $INS_DIR/include/server/bootstrap/bootstrap.h $INS_DIR/include/server/c.h $INS_DIR/include/server/catalog/binary_upgrade.h $INS_DIR/include/server/catalog/catalog.h $INS_DIR/include/server/catalog/catversion.h $INS_DIR/include/server/catalog/dependency.h $INS_DIR/include/server/catalog/genbki.h $INS_DIR/include/server/catalog/heap.h $INS_DIR/include/server/catalog/index.h $INS_DIR/include/server/catalog/indexing.h $INS_DIR/include/server/catalog/namespace.h $INS_DIR/include/server/catalog/objectaccess.h $INS_DIR/include/server/catalog/objectaddress.h $INS_DIR/include/server/catalog/opfam_internal.h $INS_DIR/include/server/catalog/partition.h $INS_DIR/include/server/catalog/pg_aggregate.h $INS_DIR/include/server/catalog/pg_aggregate_d.h $INS_DIR/include/server/catalog/pg_am.h $INS_DIR/include/server/catalog/pg_am_d.h $INS_DIR/include/server/catalog/pg_amop.h $INS_DIR/include/server/catalog/pg_amop_d.h $INS_DIR/include/server/catalog/pg_amproc.h $INS_DIR/include/server/catalog/pg_amproc_d.h $INS_DIR/include/server/catalog/pg_attrdef.h $INS_DIR/include/server/catalog/pg_attrdef_d.h $INS_DIR/include/server/catalog/pg_attribute.h $INS_DIR/include/server/catalog/pg_attribute_d.h $INS_DIR/include/server/catalog/pg_auth_members.h $INS_DIR/include/server/catalog/pg_auth_members_d.h $INS_DIR/include/server/catalog/pg_authid.h $INS_DIR/include/server/catalog/pg_authid_d.h $INS_DIR/include/server/catalog/pg_cast.h $INS_DIR/include/server/catalog/pg_cast_d.h $INS_DIR/include/server/catalog/pg_class.h $INS_DIR/include/server/catalog/pg_class_d.h $INS_DIR/include/server/catalog/pg_collation.h $INS_DIR/include/server/catalog/pg_collation_d.h $INS_DIR/include/server/catalog/pg_constraint.h $INS_DIR/include/server/catalog/pg_constraint_d.h $INS_DIR/include/server/catalog/pg_control.h $INS_DIR/include/server/catalog/pg_conversion.h $INS_DIR/include/server/catalog/pg_conversion_d.h $INS_DIR/include/server/catalog/pg_database.h $INS_DIR/include/server/catalog/pg_database_d.h $INS_DIR/include/server/catalog/pg_db_role_setting.h $INS_DIR/include/server/catalog/pg_db_role_setting_d.h $INS_DIR/include/server/catalog/pg_default_acl.h $INS_DIR/include/server/catalog/pg_default_acl_d.h $INS_DIR/include/server/catalog/pg_depend.h $INS_DIR/include/server/catalog/pg_depend_d.h $INS_DIR/include/server/catalog/pg_description.h $INS_DIR/include/server/catalog/pg_description_d.h $INS_DIR/include/server/catalog/pg_enum.h $INS_DIR/include/server/catalog/pg_enum_d.h $INS_DIR/include/server/catalog/pg_event_trigger.h $INS_DIR/include/server/catalog/pg_event_trigger_d.h $INS_DIR/include/server/catalog/pg_extension.h $INS_DIR/include/server/catalog/pg_extension_d.h $INS_DIR/include/server/catalog/pg_foreign_data_wrapper.h $INS_DIR/include/server/catalog/pg_foreign_data_wrapper_d.h $INS_DIR/include/server/catalog/pg_foreign_server.h $INS_DIR/include/server/catalog/pg_foreign_server_d.h $INS_DIR/include/server/catalog/pg_foreign_table.h $INS_DIR/include/server/catalog/pg_foreign_table_d.h $INS_DIR/include/server/catalog/pg_index.h $INS_DIR/include/server/catalog/pg_index_d.h $INS_DIR/include/server/catalog/pg_inherits.h $INS_DIR/include/server/catalog/pg_inherits_d.h $INS_DIR/include/server/catalog/pg_init_privs.h $INS_DIR/include/server/catalog/pg_init_privs_d.h $INS_DIR/include/server/catalog/pg_language.h $INS_DIR/include/server/catalog/pg_language_d.h $INS_DIR/include/server/catalog/pg_largeobject.h $INS_DIR/include/server/catalog/pg_largeobject_d.h $INS_DIR/include/server/catalog/pg_largeobject_metadata.h $INS_DIR/include/server/catalog/pg_largeobject_metadata_d.h $INS_DIR/include/server/catalog/pg_namespace.h $INS_DIR/include/server/catalog/pg_namespace_d.h $INS_DIR/include/server/catalog/pg_opclass.h $INS_DIR/include/server/catalog/pg_opclass_d.h $INS_DIR/include/server/catalog/pg_operator.h $INS_DIR/include/server/catalog/pg_operator_d.h $INS_DIR/include/server/catalog/pg_opfamily.h $INS_DIR/include/server/catalog/pg_opfamily_d.h $INS_DIR/include/server/catalog/pg_partitioned_table.h $INS_DIR/include/server/catalog/pg_partitioned_table_d.h $INS_DIR/include/server/catalog/pg_pltemplate.h $INS_DIR/include/server/catalog/pg_pltemplate_d.h $INS_DIR/include/server/catalog/pg_policy.h $INS_DIR/include/server/catalog/pg_policy_d.h $INS_DIR/include/server/catalog/pg_proc.h $INS_DIR/include/server/catalog/pg_proc_d.h $INS_DIR/include/server/catalog/pg_publication.h $INS_DIR/include/server/catalog/pg_publication_d.h $INS_DIR/include/server/catalog/pg_publication_rel.h $INS_DIR/include/server/catalog/pg_publication_rel_d.h $INS_DIR/include/server/catalog/pg_range.h $INS_DIR/include/server/catalog/pg_range_d.h $INS_DIR/include/server/catalog/pg_replication_origin.h $INS_DIR/include/server/catalog/pg_replication_origin_d.h $INS_DIR/include/server/catalog/pg_rewrite.h $INS_DIR/include/server/catalog/pg_rewrite_d.h $INS_DIR/include/server/catalog/pg_seclabel.h $INS_DIR/include/server/catalog/pg_seclabel_d.h $INS_DIR/include/server/catalog/pg_sequence.h $INS_DIR/include/server/catalog/pg_sequence_d.h $INS_DIR/include/server/catalog/pg_shdepend.h $INS_DIR/include/server/catalog/pg_shdepend_d.h $INS_DIR/include/server/catalog/pg_shdescription.h $INS_DIR/include/server/catalog/pg_shdescription_d.h $INS_DIR/include/server/catalog/pg_shseclabel.h $INS_DIR/include/server/catalog/pg_shseclabel_d.h $INS_DIR/include/server/catalog/pg_statistic.h $INS_DIR/include/server/catalog/pg_statistic_d.h $INS_DIR/include/server/catalog/pg_statistic_ext.h $INS_DIR/include/server/catalog/pg_statistic_ext_d.h $INS_DIR/include/server/catalog/pg_statistic_ext_data.h $INS_DIR/include/server/catalog/pg_statistic_ext_data_d.h $INS_DIR/include/server/catalog/pg_subscription.h $INS_DIR/include/server/catalog/pg_subscription_d.h $INS_DIR/include/server/catalog/pg_subscription_rel.h $INS_DIR/include/server/catalog/pg_subscription_rel_d.h $INS_DIR/include/server/catalog/pg_tablespace.h $INS_DIR/include/server/catalog/pg_tablespace_d.h $INS_DIR/include/server/catalog/pg_transform.h $INS_DIR/include/server/catalog/pg_transform_d.h $INS_DIR/include/server/catalog/pg_trigger.h $INS_DIR/include/server/catalog/pg_trigger_d.h $INS_DIR/include/server/catalog/pg_ts_config.h $INS_DIR/include/server/catalog/pg_ts_config_d.h $INS_DIR/include/server/catalog/pg_ts_config_map.h $INS_DIR/include/server/catalog/pg_ts_config_map_d.h $INS_DIR/include/server/catalog/pg_ts_dict.h $INS_DIR/include/server/catalog/pg_ts_dict_d.h $INS_DIR/include/server/catalog/pg_ts_parser.h $INS_DIR/include/server/catalog/pg_ts_parser_d.h $INS_DIR/include/server/catalog/pg_ts_template.h $INS_DIR/include/server/catalog/pg_ts_template_d.h $INS_DIR/include/server/catalog/pg_type.h $INS_DIR/include/server/catalog/pg_type_d.h $INS_DIR/include/server/catalog/pg_user_mapping.h $INS_DIR/include/server/catalog/pg_user_mapping_d.h $INS_DIR/include/server/catalog/schemapg.h $INS_DIR/include/server/catalog/storage.h $INS_DIR/include/server/catalog/storage_xlog.h $INS_DIR/include/server/catalog/toasting.h $INS_DIR/include/server/commands/alter.h $INS_DIR/include/server/commands/async.h $INS_DIR/include/server/commands/cluster.h $INS_DIR/include/server/commands/collationcmds.h $INS_DIR/include/server/commands/comment.h $INS_DIR/include/server/commands/conversioncmds.h $INS_DIR/include/server/commands/copy.h $INS_DIR/include/server/commands/createas.h $INS_DIR/include/server/commands/dbcommands.h $INS_DIR/include/server/commands/dbcommands_xlog.h $INS_DIR/include/server/commands/defrem.h $INS_DIR/include/server/commands/discard.h $INS_DIR/include/server/commands/event_trigger.h $INS_DIR/include/server/commands/explain.h $INS_DIR/include/server/commands/extension.h $INS_DIR/include/server/commands/lockcmds.h $INS_DIR/include/server/commands/matview.h $INS_DIR/include/server/commands/policy.h $INS_DIR/include/server/commands/portalcmds.h $INS_DIR/include/server/commands/prepare.h $INS_DIR/include/server/commands/proclang.h $INS_DIR/include/server/commands/progress.h $INS_DIR/include/server/commands/publicationcmds.h $INS_DIR/include/server/commands/schemacmds.h $INS_DIR/include/server/commands/seclabel.h $INS_DIR/include/server/commands/sequence.h $INS_DIR/include/server/commands/subscriptioncmds.h $INS_DIR/include/server/commands/tablecmds.h $INS_DIR/include/server/commands/tablespace.h $INS_DIR/include/server/commands/trigger.h $INS_DIR/include/server/commands/typecmds.h $INS_DIR/include/server/commands/user.h $INS_DIR/include/server/commands/vacuum.h $INS_DIR/include/server/commands/variable.h $INS_DIR/include/server/commands/view.h $INS_DIR/include/server/common/base64.h $INS_DIR/include/server/common/config_info.h $INS_DIR/include/server/common/connect.h $INS_DIR/include/server/common/controldata_utils.h $INS_DIR/include/server/common/fe_memutils.h $INS_DIR/include/server/common/file_perm.h $INS_DIR/include/server/common/file_utils.h $INS_DIR/include/server/common/int.h $INS_DIR/include/server/common/int128.h $INS_DIR/include/server/common/ip.h $INS_DIR/include/server/common/keywords.h $INS_DIR/include/server/common/kwlookup.h $INS_DIR/include/server/common/link-canary.h $INS_DIR/include/server/common/logging.h $INS_DIR/include/server/common/md5.h $INS_DIR/include/server/common/pg_lzcompress.h $INS_DIR/include/server/common/relpath.h $INS_DIR/include/server/common/restricted_token.h $INS_DIR/include/server/common/saslprep.h $INS_DIR/include/server/common/scram-common.h $INS_DIR/include/server/common/sha2.h $INS_DIR/include/server/common/shortest_dec.h $INS_DIR/include/server/common/string.h $INS_DIR/include/server/common/unicode_norm.h $INS_DIR/include/server/common/unicode_norm_table.h $INS_DIR/include/server/common/username.h $INS_DIR/include/server/datatype/timestamp.h $INS_DIR/include/server/executor/execExpr.h $INS_DIR/include/server/executor/execParallel.h $INS_DIR/include/server/executor/execPartition.h $INS_DIR/include/server/executor/execdebug.h $INS_DIR/include/server/executor/execdesc.h $INS_DIR/include/server/executor/executor.h $INS_DIR/include/server/executor/functions.h $INS_DIR/include/server/executor/hashjoin.h $INS_DIR/include/server/executor/instrument.h $INS_DIR/include/server/executor/nodeAgg.h $INS_DIR/include/server/executor/nodeAppend.h $INS_DIR/include/server/executor/nodeBitmapAnd.h $INS_DIR/include/server/executor/nodeBitmapHeapscan.h $INS_DIR/include/server/executor/nodeBitmapIndexscan.h $INS_DIR/include/server/executor/nodeBitmapOr.h $INS_DIR/include/server/executor/nodeCtescan.h $INS_DIR/include/server/executor/nodeCustom.h $INS_DIR/include/server/executor/nodeForeignscan.h $INS_DIR/include/server/executor/nodeFunctionscan.h $INS_DIR/include/server/executor/nodeGather.h $INS_DIR/include/server/executor/nodeGatherMerge.h $INS_DIR/include/server/executor/nodeGroup.h $INS_DIR/include/server/executor/nodeHash.h $INS_DIR/include/server/executor/nodeHashjoin.h $INS_DIR/include/server/executor/nodeIndexonlyscan.h $INS_DIR/include/server/executor/nodeIndexscan.h $INS_DIR/include/server/executor/nodeLimit.h $INS_DIR/include/server/executor/nodeLockRows.h $INS_DIR/include/server/executor/nodeMaterial.h $INS_DIR/include/server/executor/nodeMergeAppend.h $INS_DIR/include/server/executor/nodeMergejoin.h $INS_DIR/include/server/executor/nodeModifyTable.h $INS_DIR/include/server/executor/nodeNamedtuplestorescan.h $INS_DIR/include/server/executor/nodeNestloop.h $INS_DIR/include/server/executor/nodeProjectSet.h $INS_DIR/include/server/executor/nodeRecursiveunion.h $INS_DIR/include/server/executor/nodeResult.h $INS_DIR/include/server/executor/nodeSamplescan.h $INS_DIR/include/server/executor/nodeSeqscan.h $INS_DIR/include/server/executor/nodeSetOp.h $INS_DIR/include/server/executor/nodeSort.h $INS_DIR/include/server/executor/nodeSubplan.h $INS_DIR/include/server/executor/nodeSubqueryscan.h $INS_DIR/include/server/executor/nodeTableFuncscan.h $INS_DIR/include/server/executor/nodeTidscan.h $INS_DIR/include/server/executor/nodeUnique.h $INS_DIR/include/server/executor/nodeValuesscan.h $INS_DIR/include/server/executor/nodeWindowAgg.h $INS_DIR/include/server/executor/nodeWorktablescan.h $INS_DIR/include/server/executor/spi.h $INS_DIR/include/server/executor/spi_priv.h $INS_DIR/include/server/executor/tablefunc.h $INS_DIR/include/server/executor/tqueue.h $INS_DIR/include/server/executor/tstoreReceiver.h $INS_DIR/include/server/executor/tuptable.h $INS_DIR/include/server/extension/cube/cubedata.h $INS_DIR/include/server/extension/hstore/hstore.h $INS_DIR/include/server/extension/isn/isn.h $INS_DIR/include/server/extension/ltree/ltree.h $INS_DIR/include/server/extension/seg/segdata.h $INS_DIR/include/server/fe_utils/conditional.h $INS_DIR/include/server/fe_utils/connect.h $INS_DIR/include/server/fe_utils/mbprint.h $INS_DIR/include/server/fe_utils/print.h $INS_DIR/include/server/fe_utils/psqlscan.h $INS_DIR/include/server/fe_utils/psqlscan_int.h $INS_DIR/include/server/fe_utils/simple_list.h $INS_DIR/include/server/fe_utils/string_utils.h $INS_DIR/include/server/fmgr.h $INS_DIR/include/server/foreign/fdwapi.h $INS_DIR/include/server/foreign/foreign.h $INS_DIR/include/server/funcapi.h $INS_DIR/include/server/getaddrinfo.h $INS_DIR/include/server/getopt_long.h $INS_DIR/include/server/jit/jit.h $INS_DIR/include/server/jit/llvmjit.h $INS_DIR/include/server/jit/llvmjit_emit.h $INS_DIR/include/server/lib/binaryheap.h $INS_DIR/include/server/lib/bipartite_match.h $INS_DIR/include/server/lib/bloomfilter.h $INS_DIR/include/server/lib/dshash.h $INS_DIR/include/server/lib/hyperloglog.h $INS_DIR/include/server/lib/ilist.h $INS_DIR/include/server/lib/integerset.h $INS_DIR/include/server/lib/knapsack.h $INS_DIR/include/server/lib/pairingheap.h $INS_DIR/include/server/lib/rbtree.h $INS_DIR/include/server/lib/simplehash.h $INS_DIR/include/server/lib/stringinfo.h $INS_DIR/include/server/libpq/auth.h $INS_DIR/include/server/libpq/be-fsstubs.h $INS_DIR/include/server/libpq/be-gssapi-common.h $INS_DIR/include/server/libpq/crypt.h $INS_DIR/include/server/libpq/hba.h $INS_DIR/include/server/libpq/ifaddr.h $INS_DIR/include/server/libpq/libpq-be.h $INS_DIR/include/server/libpq/libpq-fs.h $INS_DIR/include/server/libpq/libpq.h $INS_DIR/include/server/libpq/pqcomm.h $INS_DIR/include/server/libpq/pqformat.h $INS_DIR/include/server/libpq/pqmq.h $INS_DIR/include/server/libpq/pqsignal.h $INS_DIR/include/server/libpq/scram.h $INS_DIR/include/server/lic/fjlic-client.h $INS_DIR/include/server/mb/char_conv.h $INS_DIR/include/server/mb/char_edf.h $INS_DIR/include/server/mb/iconv.h $INS_DIR/include/server/mb/pg_wchar.h $INS_DIR/include/server/mb/rdb2biconv.h $INS_DIR/include/server/miscadmin.h $INS_DIR/include/server/nodes/bitmapset.h $INS_DIR/include/server/nodes/execnodes.h $INS_DIR/include/server/nodes/extensible.h $INS_DIR/include/server/nodes/lockoptions.h $INS_DIR/include/server/nodes/makefuncs.h $INS_DIR/include/server/nodes/memnodes.h $INS_DIR/include/server/nodes/nodeFuncs.h $INS_DIR/include/server/nodes/nodes.h $INS_DIR/include/server/nodes/params.h $INS_DIR/include/server/nodes/parsenodes.h $INS_DIR/include/server/nodes/pathnodes.h $INS_DIR/include/server/nodes/pg_list.h $INS_DIR/include/server/nodes/plannodes.h $INS_DIR/include/server/nodes/primnodes.h $INS_DIR/include/server/nodes/print.h $INS_DIR/include/server/nodes/readfuncs.h $INS_DIR/include/server/nodes/replnodes.h $INS_DIR/include/server/nodes/supportnodes.h $INS_DIR/include/server/nodes/tidbitmap.h $INS_DIR/include/server/nodes/value.h $INS_DIR/include/server/optimizer/appendinfo.h $INS_DIR/include/server/optimizer/clauses.h $INS_DIR/include/server/optimizer/cost.h $INS_DIR/include/server/optimizer/geqo.h $INS_DIR/include/server/optimizer/geqo_copy.h $INS_DIR/include/server/optimizer/geqo_gene.h $INS_DIR/include/server/optimizer/geqo_misc.h $INS_DIR/include/server/optimizer/geqo_mutation.h $INS_DIR/include/server/optimizer/geqo_pool.h $INS_DIR/include/server/optimizer/geqo_random.h $INS_DIR/include/server/optimizer/geqo_recombination.h $INS_DIR/include/server/optimizer/geqo_selection.h $INS_DIR/include/server/optimizer/inherit.h $INS_DIR/include/server/optimizer/joininfo.h $INS_DIR/include/server/optimizer/optimizer.h $INS_DIR/include/server/optimizer/orclauses.h $INS_DIR/include/server/optimizer/paramassign.h $INS_DIR/include/server/optimizer/pathnode.h $INS_DIR/include/server/optimizer/paths.h $INS_DIR/include/server/optimizer/placeholder.h $INS_DIR/include/server/optimizer/plancat.h $INS_DIR/include/server/optimizer/planmain.h $INS_DIR/include/server/optimizer/planner.h $INS_DIR/include/server/optimizer/prep.h $INS_DIR/include/server/optimizer/restrictinfo.h $INS_DIR/include/server/optimizer/subselect.h $INS_DIR/include/server/optimizer/tlist.h $INS_DIR/include/server/parser/analyze.h $INS_DIR/include/server/parser/convert.h $INS_DIR/include/server/parser/convert_item.h $INS_DIR/include/server/parser/gram.h $INS_DIR/include/server/parser/gramparse.h $INS_DIR/include/server/parser/kwlist.h $INS_DIR/include/server/parser/parse_agg.h $INS_DIR/include/server/parser/parse_clause.h $INS_DIR/include/server/parser/parse_coerce.h $INS_DIR/include/server/parser/parse_collate.h $INS_DIR/include/server/parser/parse_cte.h $INS_DIR/include/server/parser/parse_enr.h $INS_DIR/include/server/parser/parse_expr.h $INS_DIR/include/server/parser/parse_func.h $INS_DIR/include/server/parser/parse_node.h $INS_DIR/include/server/parser/parse_oper.h $INS_DIR/include/server/parser/parse_param.h $INS_DIR/include/server/parser/parse_relation.h $INS_DIR/include/server/parser/parse_target.h $INS_DIR/include/server/parser/parse_type.h $INS_DIR/include/server/parser/parse_utilcmd.h $INS_DIR/include/server/parser/parser.h $INS_DIR/include/server/parser/parsetree.h $INS_DIR/include/server/parser/scanner.h $INS_DIR/include/server/parser/scansup.h $INS_DIR/include/server/partitioning/partbounds.h $INS_DIR/include/server/partitioning/partdefs.h $INS_DIR/include/server/partitioning/partdesc.h $INS_DIR/include/server/partitioning/partprune.h $INS_DIR/include/server/pg_config.h $INS_DIR/include/server/pg_config_ext.h $INS_DIR/include/server/pg_config_manual.h $INS_DIR/include/server/pg_config_os.h $INS_DIR/include/server/pg_getopt.h $INS_DIR/include/server/pg_trace.h $INS_DIR/include/server/pgstat.h $INS_DIR/include/server/pgtar.h $INS_DIR/include/server/pgtime.h $INS_DIR/include/server/plperl.h $INS_DIR/include/server/plperl_helpers.h $INS_DIR/include/server/plpgsql.h $INS_DIR/include/server/plpy_cursorobject.h $INS_DIR/include/server/plpy_elog.h $INS_DIR/include/server/plpy_exec.h $INS_DIR/include/server/plpy_main.h $INS_DIR/include/server/plpy_planobject.h $INS_DIR/include/server/plpy_plpymodule.h $INS_DIR/include/server/plpy_procedure.h $INS_DIR/include/server/plpy_resultobject.h $INS_DIR/include/server/plpy_spi.h $INS_DIR/include/server/plpy_subxactobject.h $INS_DIR/include/server/plpy_typeio.h $INS_DIR/include/server/plpy_util.h $INS_DIR/include/server/plpython.h $INS_DIR/include/server/port.h $INS_DIR/include/server/port/aix.h $INS_DIR/include/server/port/atomics.h $INS_DIR/include/server/port/atomics/arch-arm.h $INS_DIR/include/server/port/atomics/arch-hppa.h $INS_DIR/include/server/port/atomics/arch-ia64.h $INS_DIR/include/server/port/atomics/arch-ppc.h $INS_DIR/include/server/port/atomics/arch-x86.h $INS_DIR/include/server/port/atomics/fallback.h $INS_DIR/include/server/port/atomics/generic-acc.h $INS_DIR/include/server/port/atomics/generic-gcc.h $INS_DIR/include/server/port/atomics/generic-msvc.h $INS_DIR/include/server/port/atomics/generic-sunpro.h $INS_DIR/include/server/port/atomics/generic-xlc.h $INS_DIR/include/server/port/atomics/generic.h $INS_DIR/include/server/port/cygwin.h $INS_DIR/include/server/port/darwin.h $INS_DIR/include/server/port/freebsd.h $INS_DIR/include/server/port/hpux.h $INS_DIR/include/server/port/linux.h $INS_DIR/include/server/port/netbsd.h $INS_DIR/include/server/port/openbsd.h $INS_DIR/include/server/port/pg_bitutils.h $INS_DIR/include/server/port/pg_bswap.h $INS_DIR/include/server/port/pg_crc32c.h $INS_DIR/include/server/port/solaris.h $INS_DIR/include/server/port/win32.h $INS_DIR/include/server/port/win32/arpa/inet.h $INS_DIR/include/server/port/win32/dlfcn.h $INS_DIR/include/server/port/win32/grp.h $INS_DIR/include/server/port/win32/netdb.h $INS_DIR/include/server/port/win32/netinet/in.h $INS_DIR/include/server/port/win32/pwd.h $INS_DIR/include/server/port/win32/sys/socket.h $INS_DIR/include/server/port/win32/sys/wait.h $INS_DIR/include/server/port/win32_msvc/dirent.h $INS_DIR/include/server/port/win32_msvc/sys/file.h $INS_DIR/include/server/port/win32_msvc/sys/param.h $INS_DIR/include/server/port/win32_msvc/sys/time.h $INS_DIR/include/server/port/win32_msvc/unistd.h $INS_DIR/include/server/port/win32_msvc/utime.h $INS_DIR/include/server/port/win32_port.h $INS_DIR/include/server/portability/instr_time.h $INS_DIR/include/server/portability/mem.h $INS_DIR/include/server/postgres.h $INS_DIR/include/server/postgres_ext.h $INS_DIR/include/server/postgres_fe.h $INS_DIR/include/server/postmaster/autovacuum.h $INS_DIR/include/server/postmaster/bgworker.h $INS_DIR/include/server/postmaster/bgworker_internals.h $INS_DIR/include/server/postmaster/bgwriter.h $INS_DIR/include/server/postmaster/fork_process.h $INS_DIR/include/server/postmaster/pgarch.h $INS_DIR/include/server/postmaster/postmaster.h $INS_DIR/include/server/postmaster/startup.h $INS_DIR/include/server/postmaster/syslogger.h $INS_DIR/include/server/postmaster/walwriter.h $INS_DIR/include/server/postmaster/xlogmultiplexer.h $INS_DIR/include/server/ppport.h $INS_DIR/include/server/regex/regcustom.h $INS_DIR/include/server/regex/regerrs.h $INS_DIR/include/server/regex/regex.h $INS_DIR/include/server/regex/regexport.h $INS_DIR/include/server/regex/regguts.h $INS_DIR/include/server/replication/basebackup.h $INS_DIR/include/server/replication/decode.h $INS_DIR/include/server/replication/followsend.h $INS_DIR/include/server/replication/logical.h $INS_DIR/include/server/replication/logicalfuncs.h $INS_DIR/include/server/replication/logicallauncher.h $INS_DIR/include/server/replication/logicalproto.h $INS_DIR/include/server/replication/logicalrelation.h $INS_DIR/include/server/replication/logicalworker.h $INS_DIR/include/server/replication/message.h $INS_DIR/include/server/replication/origin.h $INS_DIR/include/server/replication/output_plugin.h $INS_DIR/include/server/replication/pgoutput.h $INS_DIR/include/server/replication/reorderbuffer.h $INS_DIR/include/server/replication/slot.h $INS_DIR/include/server/replication/snapbuild.h $INS_DIR/include/server/replication/syncrep.h $INS_DIR/include/server/replication/walreceiver.h $INS_DIR/include/server/replication/walsender.h $INS_DIR/include/server/replication/walsender_private.h $INS_DIR/include/server/replication/worker_internal.h $INS_DIR/include/server/rewrite/prs2lock.h $INS_DIR/include/server/rewrite/rewriteDefine.h $INS_DIR/include/server/rewrite/rewriteHandler.h $INS_DIR/include/server/rewrite/rewriteManip.h $INS_DIR/include/server/rewrite/rewriteRemove.h $INS_DIR/include/server/rewrite/rewriteSupport.h $INS_DIR/include/server/rewrite/rowsecurity.h $INS_DIR/include/server/rusagestub.h $INS_DIR/include/server/snowball/header.h $INS_DIR/include/server/snowball/libstemmer/api.h $INS_DIR/include/server/snowball/libstemmer/header.h $INS_DIR/include/server/snowball/libstemmer/stem_ISO_8859_1_danish.h $INS_DIR/include/server/snowball/libstemmer/stem_ISO_8859_1_dutch.h $INS_DIR/include/server/snowball/libstemmer/stem_ISO_8859_1_english.h $INS_DIR/include/server/snowball/libstemmer/stem_ISO_8859_1_finnish.h $INS_DIR/include/server/snowball/libstemmer/stem_ISO_8859_1_french.h $INS_DIR/include/server/snowball/libstemmer/stem_ISO_8859_1_german.h $INS_DIR/include/server/snowball/libstemmer/stem_ISO_8859_1_indonesian.h $INS_DIR/include/server/snowball/libstemmer/stem_ISO_8859_1_irish.h $INS_DIR/include/server/snowball/libstemmer/stem_ISO_8859_1_italian.h $INS_DIR/include/server/snowball/libstemmer/stem_ISO_8859_1_norwegian.h $INS_DIR/include/server/snowball/libstemmer/stem_ISO_8859_1_porter.h $INS_DIR/include/server/snowball/libstemmer/stem_ISO_8859_1_portuguese.h $INS_DIR/include/server/snowball/libstemmer/stem_ISO_8859_1_spanish.h $INS_DIR/include/server/snowball/libstemmer/stem_ISO_8859_1_swedish.h $INS_DIR/include/server/snowball/libstemmer/stem_ISO_8859_2_hungarian.h $INS_DIR/include/server/snowball/libstemmer/stem_ISO_8859_2_romanian.h $INS_DIR/include/server/snowball/libstemmer/stem_KOI8_R_russian.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_arabic.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_danish.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_dutch.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_english.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_finnish.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_french.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_german.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_hungarian.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_indonesian.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_irish.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_italian.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_lithuanian.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_nepali.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_norwegian.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_porter.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_portuguese.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_romanian.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_russian.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_spanish.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_swedish.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_tamil.h $INS_DIR/include/server/snowball/libstemmer/stem_UTF_8_turkish.h $INS_DIR/include/server/statistics/extended_stats_internal.h $INS_DIR/include/server/statistics/statistics.h $INS_DIR/include/server/storage/backendid.h $INS_DIR/include/server/storage/barrier.h $INS_DIR/include/server/storage/block.h $INS_DIR/include/server/storage/buf.h $INS_DIR/include/server/storage/buf_internals.h $INS_DIR/include/server/storage/buffile.h $INS_DIR/include/server/storage/bufmgr.h $INS_DIR/include/server/storage/bufpage.h $INS_DIR/include/server/storage/checksum.h $INS_DIR/include/server/storage/checksum_impl.h $INS_DIR/include/server/storage/condition_variable.h $INS_DIR/include/server/storage/copydir.h $INS_DIR/include/server/storage/dsm.h $INS_DIR/include/server/storage/dsm_impl.h $INS_DIR/include/server/storage/fd.h $INS_DIR/include/server/storage/freespace.h $INS_DIR/include/server/storage/fsm_internals.h $INS_DIR/include/server/storage/indexfsm.h $INS_DIR/include/server/storage/ipc.h $INS_DIR/include/server/storage/item.h $INS_DIR/include/server/storage/itemid.h $INS_DIR/include/server/storage/itemptr.h $INS_DIR/include/server/storage/large_object.h $INS_DIR/include/server/storage/latch.h $INS_DIR/include/server/storage/lmgr.h $INS_DIR/include/server/storage/lock.h $INS_DIR/include/server/storage/lockdefs.h $INS_DIR/include/server/storage/lwlock.h $INS_DIR/include/server/storage/lwlocknames.h $INS_DIR/include/server/storage/md.h $INS_DIR/include/server/storage/off.h $INS_DIR/include/server/storage/pg_sema.h $INS_DIR/include/server/storage/pg_shmem.h $INS_DIR/include/server/storage/pmsignal.h $INS_DIR/include/server/storage/predicate.h $INS_DIR/include/server/storage/predicate_internals.h $INS_DIR/include/server/storage/proc.h $INS_DIR/include/server/storage/procarray.h $INS_DIR/include/server/storage/proclist.h $INS_DIR/include/server/storage/proclist_types.h $INS_DIR/include/server/storage/procsignal.h $INS_DIR/include/server/storage/reinit.h $INS_DIR/include/server/storage/relfilenode.h $INS_DIR/include/server/storage/s_lock.h $INS_DIR/include/server/storage/sharedfileset.h $INS_DIR/include/server/storage/shm_mq.h $INS_DIR/include/server/storage/shm_toc.h $INS_DIR/include/server/storage/shmem.h $INS_DIR/include/server/storage/sinval.h $INS_DIR/include/server/storage/sinvaladt.h $INS_DIR/include/server/storage/smgr.h $INS_DIR/include/server/storage/spin.h $INS_DIR/include/server/storage/standby.h $INS_DIR/include/server/storage/standbydefs.h $INS_DIR/include/server/storage/sync.h $INS_DIR/include/server/tcop/deparse_utility.h $INS_DIR/include/server/tcop/dest.h $INS_DIR/include/server/tcop/fastpath.h $INS_DIR/include/server/tcop/pquery.h $INS_DIR/include/server/tcop/tcopprot.h $INS_DIR/include/server/tcop/utility.h $INS_DIR/include/server/tsearch/dicts/regis.h $INS_DIR/include/server/tsearch/dicts/spell.h $INS_DIR/include/server/tsearch/ts_cache.h $INS_DIR/include/server/tsearch/ts_locale.h $INS_DIR/include/server/tsearch/ts_public.h $INS_DIR/include/server/tsearch/ts_type.h $INS_DIR/include/server/tsearch/ts_utils.h $INS_DIR/include/server/utils/acl.h $INS_DIR/include/server/utils/aclchk_internal.h $INS_DIR/include/server/utils/array.h $INS_DIR/include/server/utils/arrayaccess.h $INS_DIR/include/server/utils/ascii.h $INS_DIR/include/server/utils/attoptcache.h $INS_DIR/include/server/utils/builtins.h $INS_DIR/include/server/utils/bytea.h $INS_DIR/include/server/utils/cash.h $INS_DIR/include/server/utils/catcache.h $INS_DIR/include/server/utils/combocid.h $INS_DIR/include/server/utils/compatible_dbms.h $INS_DIR/include/server/utils/cpu.h $INS_DIR/include/server/utils/date.h $INS_DIR/include/server/utils/datetime.h $INS_DIR/include/server/utils/datum.h $INS_DIR/include/server/utils/dsa.h $INS_DIR/include/server/utils/dynahash.h $INS_DIR/include/server/utils/elog.h $INS_DIR/include/server/utils/encryption.h $INS_DIR/include/server/utils/errcodes.h $INS_DIR/include/server/utils/evtcache.h $INS_DIR/include/server/utils/expandeddatum.h $INS_DIR/include/server/utils/expandedrecord.h $INS_DIR/include/server/utils/float.h $INS_DIR/include/server/utils/fmgroids.h $INS_DIR/include/server/utils/fmgrprotos.h $INS_DIR/include/server/utils/fmgrtab.h $INS_DIR/include/server/utils/formatting.h $INS_DIR/include/server/utils/freepage.h $INS_DIR/include/server/utils/geo_decls.h $INS_DIR/include/server/utils/guc.h $INS_DIR/include/server/utils/guc_tables.h $INS_DIR/include/server/utils/hashutils.h $INS_DIR/include/server/utils/help_config.h $INS_DIR/include/server/utils/hsearch.h $INS_DIR/include/server/utils/index_selfuncs.h $INS_DIR/include/server/utils/inet.h $INS_DIR/include/server/utils/int8.h $INS_DIR/include/server/utils/inval.h $INS_DIR/include/server/utils/json.h $INS_DIR/include/server/utils/jsonapi.h $INS_DIR/include/server/utils/jsonb.h $INS_DIR/include/server/utils/jsonpath.h $INS_DIR/include/server/utils/logtape.h $INS_DIR/include/server/utils/lsyscache.h $INS_DIR/include/server/utils/memdebug.h $INS_DIR/include/server/utils/memutils.h $INS_DIR/include/server/utils/numeric.h $INS_DIR/include/server/utils/palloc.h $INS_DIR/include/server/utils/partcache.h $INS_DIR/include/server/utils/pg_crc.h $INS_DIR/include/server/utils/pg_locale.h $INS_DIR/include/server/utils/pg_lsn.h $INS_DIR/include/server/utils/pg_rusage.h $INS_DIR/include/server/utils/pidfile.h $INS_DIR/include/server/utils/plancache.h $INS_DIR/include/server/utils/portal.h $INS_DIR/include/server/utils/probes.h $INS_DIR/include/server/utils/ps_status.h $INS_DIR/include/server/utils/queryenvironment.h $INS_DIR/include/server/utils/rangetypes.h $INS_DIR/include/server/utils/regproc.h $INS_DIR/include/server/utils/rel.h $INS_DIR/include/server/utils/relcache.h $INS_DIR/include/server/utils/relfilenodemap.h $INS_DIR/include/server/utils/relmapper.h $INS_DIR/include/server/utils/relptr.h $INS_DIR/include/server/utils/reltrigger.h $INS_DIR/include/server/utils/resowner.h $INS_DIR/include/server/utils/resowner_private.h $INS_DIR/include/server/utils/rls.h $INS_DIR/include/server/utils/ruleutils.h $INS_DIR/include/server/utils/sampling.h $INS_DIR/include/server/utils/selfuncs.h $INS_DIR/include/server/utils/shared_meta_cache.h $INS_DIR/include/server/utils/sharedtuplestore.h $INS_DIR/include/server/utils/snapmgr.h $INS_DIR/include/server/utils/snapshot.h $INS_DIR/include/server/utils/sortsupport.h $INS_DIR/include/server/utils/spccache.h $INS_DIR/include/server/utils/syscache.h $INS_DIR/include/server/utils/timeout.h $INS_DIR/include/server/utils/timestamp.h $INS_DIR/include/server/utils/tuplesort.h $INS_DIR/include/server/utils/tuplesortstate.h $INS_DIR/include/server/utils/tuplestore.h $INS_DIR/include/server/utils/typcache.h $INS_DIR/include/server/utils/tzparser.h $INS_DIR/include/server/utils/uuid.h $INS_DIR/include/server/utils/varbit.h $INS_DIR/include/server/utils/varlena.h $INS_DIR/include/server/utils/xml.h $INS_DIR/include/server/windowapi.h $INS_DIR/include/sql3types.h $INS_DIR/include/sqlca.h $INS_DIR/include/sqlda-compat.h $INS_DIR/include/sqlda-native.h $INS_DIR/include/sqlda.h $INS_DIR/lib/_int.so $INS_DIR/lib/adminpack.so $INS_DIR/lib/amcheck.so $INS_DIR/lib/ascii_and_mic.so $INS_DIR/lib/auth_delay.so $INS_DIR/lib/auto_explain.so $INS_DIR/lib/autoinc.so $INS_DIR/lib/bitcode/_int.index.bc $INS_DIR/lib/bitcode/_int/_int_bool.bc $INS_DIR/lib/bitcode/_int/_int_gin.bc $INS_DIR/lib/bitcode/_int/_int_gist.bc $INS_DIR/lib/bitcode/_int/_int_op.bc $INS_DIR/lib/bitcode/_int/_int_selfuncs.bc $INS_DIR/lib/bitcode/_int/_int_tool.bc $INS_DIR/lib/bitcode/_int/_intbig_gist.bc $INS_DIR/lib/bitcode/adminpack.index.bc $INS_DIR/lib/bitcode/adminpack/adminpack.bc $INS_DIR/lib/bitcode/amcheck.index.bc $INS_DIR/lib/bitcode/amcheck/verify_nbtree.bc $INS_DIR/lib/bitcode/auth_delay.index.bc $INS_DIR/lib/bitcode/auth_delay/auth_delay.bc $INS_DIR/lib/bitcode/auto_explain.index.bc $INS_DIR/lib/bitcode/auto_explain/auto_explain.bc $INS_DIR/lib/bitcode/autoinc.index.bc $INS_DIR/lib/bitcode/autoinc/autoinc.bc $INS_DIR/lib/bitcode/bloom.index.bc $INS_DIR/lib/bitcode/bloom/blcost.bc $INS_DIR/lib/bitcode/bloom/blinsert.bc $INS_DIR/lib/bitcode/bloom/blscan.bc $INS_DIR/lib/bitcode/bloom/blutils.bc $INS_DIR/lib/bitcode/bloom/blvacuum.bc $INS_DIR/lib/bitcode/bloom/blvalidate.bc $INS_DIR/lib/bitcode/btree_gin.index.bc $INS_DIR/lib/bitcode/btree_gin/btree_gin.bc $INS_DIR/lib/bitcode/btree_gist.index.bc $INS_DIR/lib/bitcode/btree_gist/btree_bit.bc $INS_DIR/lib/bitcode/btree_gist/btree_bytea.bc $INS_DIR/lib/bitcode/btree_gist/btree_cash.bc $INS_DIR/lib/bitcode/btree_gist/btree_date.bc $INS_DIR/lib/bitcode/btree_gist/btree_enum.bc $INS_DIR/lib/bitcode/btree_gist/btree_float4.bc $INS_DIR/lib/bitcode/btree_gist/btree_float8.bc $INS_DIR/lib/bitcode/btree_gist/btree_gist.bc $INS_DIR/lib/bitcode/btree_gist/btree_inet.bc $INS_DIR/lib/bitcode/btree_gist/btree_int2.bc $INS_DIR/lib/bitcode/btree_gist/btree_int4.bc $INS_DIR/lib/bitcode/btree_gist/btree_int8.bc $INS_DIR/lib/bitcode/btree_gist/btree_interval.bc $INS_DIR/lib/bitcode/btree_gist/btree_macaddr.bc $INS_DIR/lib/bitcode/btree_gist/btree_macaddr8.bc $INS_DIR/lib/bitcode/btree_gist/btree_numeric.bc $INS_DIR/lib/bitcode/btree_gist/btree_oid.bc $INS_DIR/lib/bitcode/btree_gist/btree_text.bc $INS_DIR/lib/bitcode/btree_gist/btree_time.bc $INS_DIR/lib/bitcode/btree_gist/btree_ts.bc $INS_DIR/lib/bitcode/btree_gist/btree_utils_num.bc $INS_DIR/lib/bitcode/btree_gist/btree_utils_var.bc $INS_DIR/lib/bitcode/btree_gist/btree_uuid.bc $INS_DIR/lib/bitcode/citext.index.bc $INS_DIR/lib/bitcode/citext/citext.bc $INS_DIR/lib/bitcode/cube.index.bc $INS_DIR/lib/bitcode/cube/cube.bc $INS_DIR/lib/bitcode/cube/cubeparse.bc $INS_DIR/lib/bitcode/dblink.index.bc $INS_DIR/lib/bitcode/dblink/dblink.bc $INS_DIR/lib/bitcode/dict_int.index.bc $INS_DIR/lib/bitcode/dict_int/dict_int.bc $INS_DIR/lib/bitcode/dict_xsyn.index.bc $INS_DIR/lib/bitcode/dict_xsyn/dict_xsyn.bc $INS_DIR/lib/bitcode/earthdistance.index.bc $INS_DIR/lib/bitcode/earthdistance/earthdistance.bc $INS_DIR/lib/bitcode/file_fdw.index.bc $INS_DIR/lib/bitcode/file_fdw/file_fdw.bc $INS_DIR/lib/bitcode/fuzzystrmatch.index.bc $INS_DIR/lib/bitcode/fuzzystrmatch/dmetaphone.bc $INS_DIR/lib/bitcode/fuzzystrmatch/fuzzystrmatch.bc $INS_DIR/lib/bitcode/hstore.index.bc $INS_DIR/lib/bitcode/hstore/hstore_compat.bc $INS_DIR/lib/bitcode/hstore/hstore_gin.bc $INS_DIR/lib/bitcode/hstore/hstore_gist.bc $INS_DIR/lib/bitcode/hstore/hstore_io.bc $INS_DIR/lib/bitcode/hstore/hstore_op.bc $INS_DIR/lib/bitcode/hstore_plperl.index.bc $INS_DIR/lib/bitcode/hstore_plperl/hstore_plperl.bc $INS_DIR/lib/bitcode/hstore_plpython3.index.bc $INS_DIR/lib/bitcode/hstore_plpython3/hstore_plpython.bc $INS_DIR/lib/bitcode/insert_username.index.bc $INS_DIR/lib/bitcode/insert_username/insert_username.bc $INS_DIR/lib/bitcode/isn.index.bc $INS_DIR/lib/bitcode/isn/isn.bc $INS_DIR/lib/bitcode/jsonb_plperl.index.bc $INS_DIR/lib/bitcode/jsonb_plperl/jsonb_plperl.bc $INS_DIR/lib/bitcode/jsonb_plpython3.index.bc $INS_DIR/lib/bitcode/jsonb_plpython3/jsonb_plpython.bc $INS_DIR/lib/bitcode/lo.index.bc $INS_DIR/lib/bitcode/lo/lo.bc $INS_DIR/lib/bitcode/ltree.index.bc $INS_DIR/lib/bitcode/ltree/_ltree_gist.bc $INS_DIR/lib/bitcode/ltree/_ltree_op.bc $INS_DIR/lib/bitcode/ltree/crc32.bc $INS_DIR/lib/bitcode/ltree/lquery_op.bc $INS_DIR/lib/bitcode/ltree/ltree_gist.bc $INS_DIR/lib/bitcode/ltree/ltree_io.bc $INS_DIR/lib/bitcode/ltree/ltree_op.bc $INS_DIR/lib/bitcode/ltree/ltxtquery_io.bc $INS_DIR/lib/bitcode/ltree/ltxtquery_op.bc $INS_DIR/lib/bitcode/ltree_plpython3.index.bc $INS_DIR/lib/bitcode/ltree_plpython3/ltree_plpython.bc $INS_DIR/lib/bitcode/moddatetime.index.bc $INS_DIR/lib/bitcode/moddatetime/moddatetime.bc $INS_DIR/lib/bitcode/orafce.index.bc $INS_DIR/lib/bitcode/orafce/aggregate.bc $INS_DIR/lib/bitcode/orafce/alert.bc $INS_DIR/lib/bitcode/orafce/assert.bc $INS_DIR/lib/bitcode/orafce/charlen.bc $INS_DIR/lib/bitcode/orafce/charpad.bc $INS_DIR/lib/bitcode/orafce/convert.bc $INS_DIR/lib/bitcode/orafce/datefce.bc $INS_DIR/lib/bitcode/orafce/dbms_sql.bc $INS_DIR/lib/bitcode/orafce/dbms_sql_scan.bc $INS_DIR/lib/bitcode/orafce/file.bc $INS_DIR/lib/bitcode/orafce/magic.bc $INS_DIR/lib/bitcode/orafce/nvarchar2.bc $INS_DIR/lib/bitcode/orafce/orafce.bc $INS_DIR/lib/bitcode/orafce/others.bc $INS_DIR/lib/bitcode/orafce/parse_keyword.bc $INS_DIR/lib/bitcode/orafce/pipe.bc $INS_DIR/lib/bitcode/orafce/plunit.bc $INS_DIR/lib/bitcode/orafce/plvdate.bc $INS_DIR/lib/bitcode/orafce/plvlex.bc $INS_DIR/lib/bitcode/orafce/plvstr.bc $INS_DIR/lib/bitcode/orafce/plvsubst.bc $INS_DIR/lib/bitcode/orafce/putline.bc $INS_DIR/lib/bitcode/orafce/random.bc $INS_DIR/lib/bitcode/orafce/replace_empty_string.bc $INS_DIR/lib/bitcode/orafce/shmmc.bc $INS_DIR/lib/bitcode/orafce/sqlparse.bc $INS_DIR/lib/bitcode/orafce/utility.bc $INS_DIR/lib/bitcode/orafce/varchar2.bc $INS_DIR/lib/bitcode/pageinspect.index.bc $INS_DIR/lib/bitcode/pageinspect/brinfuncs.bc $INS_DIR/lib/bitcode/pageinspect/btreefuncs.bc $INS_DIR/lib/bitcode/pageinspect/fsmfuncs.bc $INS_DIR/lib/bitcode/pageinspect/ginfuncs.bc $INS_DIR/lib/bitcode/pageinspect/hashfuncs.bc $INS_DIR/lib/bitcode/pageinspect/heapfuncs.bc $INS_DIR/lib/bitcode/pageinspect/rawpage.bc $INS_DIR/lib/bitcode/passwordcheck.index.bc $INS_DIR/lib/bitcode/passwordcheck/passwordcheck.bc $INS_DIR/lib/bitcode/pg_bigm.index.bc $INS_DIR/lib/bitcode/pg_bigm/bigm_gin.bc $INS_DIR/lib/bitcode/pg_bigm/bigm_op.bc $INS_DIR/lib/bitcode/pg_buffercache.index.bc $INS_DIR/lib/bitcode/pg_buffercache/pg_buffercache_pages.bc $INS_DIR/lib/bitcode/pg_dbms_stats.index.bc $INS_DIR/lib/bitcode/pg_dbms_stats/dump.bc $INS_DIR/lib/bitcode/pg_dbms_stats/import.bc $INS_DIR/lib/bitcode/pg_dbms_stats/pg_dbms_stats.bc $INS_DIR/lib/bitcode/pg_freespacemap.index.bc $INS_DIR/lib/bitcode/pg_freespacemap/pg_freespacemap.bc $INS_DIR/lib/bitcode/pg_hint_plan.index.bc $INS_DIR/lib/bitcode/pg_hint_plan/pg_hint_plan.bc $INS_DIR/lib/bitcode/pg_prewarm.index.bc $INS_DIR/lib/bitcode/pg_prewarm/autoprewarm.bc $INS_DIR/lib/bitcode/pg_prewarm/pg_prewarm.bc $INS_DIR/lib/bitcode/pg_repack.index.bc $INS_DIR/lib/bitcode/pg_repack/pgut/pgut-spi.bc $INS_DIR/lib/bitcode/pg_repack/repack.bc $INS_DIR/lib/bitcode/pg_stat_statements.index.bc $INS_DIR/lib/bitcode/pg_stat_statements/pg_stat_statements.bc $INS_DIR/lib/bitcode/pg_statsinfo.index.bc $INS_DIR/lib/bitcode/pg_statsinfo/last_xact_activity.bc $INS_DIR/lib/bitcode/pg_statsinfo/libstatsinfo.bc $INS_DIR/lib/bitcode/pg_statsinfo/pg_control.bc $INS_DIR/lib/bitcode/pg_statsinfo/pgut/pgut-be.bc $INS_DIR/lib/bitcode/pg_statsinfo/pgut/pgut-spi.bc $INS_DIR/lib/bitcode/pg_statsinfo/port.bc $INS_DIR/lib/bitcode/pg_trgm.index.bc $INS_DIR/lib/bitcode/pg_trgm/trgm_gin.bc $INS_DIR/lib/bitcode/pg_trgm/trgm_gist.bc $INS_DIR/lib/bitcode/pg_trgm/trgm_op.bc $INS_DIR/lib/bitcode/pg_trgm/trgm_regexp.bc $INS_DIR/lib/bitcode/pg_visibility.index.bc $INS_DIR/lib/bitcode/pg_visibility/pg_visibility.bc $INS_DIR/lib/bitcode/pgaudit.index.bc $INS_DIR/lib/bitcode/pgaudit/auditlog.bc $INS_DIR/lib/bitcode/pgaudit/auditlogger.bc $INS_DIR/lib/bitcode/pgaudit/config.bc $INS_DIR/lib/bitcode/pgaudit/pgaudit.bc $INS_DIR/lib/bitcode/pgaudit/rule.bc $INS_DIR/lib/bitcode/pgcrypto.index.bc $INS_DIR/lib/bitcode/pgcrypto/crypt-blowfish.bc $INS_DIR/lib/bitcode/pgcrypto/crypt-des.bc $INS_DIR/lib/bitcode/pgcrypto/crypt-gensalt.bc $INS_DIR/lib/bitcode/pgcrypto/crypt-md5.bc $INS_DIR/lib/bitcode/pgcrypto/mbuf.bc $INS_DIR/lib/bitcode/pgcrypto/openssl.bc $INS_DIR/lib/bitcode/pgcrypto/pgcrypto.bc $INS_DIR/lib/bitcode/pgcrypto/pgp-armor.bc $INS_DIR/lib/bitcode/pgcrypto/pgp-cfb.bc $INS_DIR/lib/bitcode/pgcrypto/pgp-compress.bc $INS_DIR/lib/bitcode/pgcrypto/pgp-decrypt.bc $INS_DIR/lib/bitcode/pgcrypto/pgp-encrypt.bc $INS_DIR/lib/bitcode/pgcrypto/pgp-info.bc $INS_DIR/lib/bitcode/pgcrypto/pgp-mpi-openssl.bc $INS_DIR/lib/bitcode/pgcrypto/pgp-mpi.bc $INS_DIR/lib/bitcode/pgcrypto/pgp-pgsql.bc $INS_DIR/lib/bitcode/pgcrypto/pgp-pubdec.bc $INS_DIR/lib/bitcode/pgcrypto/pgp-pubenc.bc $INS_DIR/lib/bitcode/pgcrypto/pgp-pubkey.bc $INS_DIR/lib/bitcode/pgcrypto/pgp-s2k.bc $INS_DIR/lib/bitcode/pgcrypto/pgp.bc $INS_DIR/lib/bitcode/pgcrypto/px-crypt.bc $INS_DIR/lib/bitcode/pgcrypto/px-hmac.bc $INS_DIR/lib/bitcode/pgcrypto/px.bc $INS_DIR/lib/bitcode/pgpool-recovery.index.bc $INS_DIR/lib/bitcode/pgpool-recovery/pgpool-recovery.bc $INS_DIR/lib/bitcode/pgrowlocks.index.bc $INS_DIR/lib/bitcode/pgrowlocks/pgrowlocks.bc $INS_DIR/lib/bitcode/pgstattuple.index.bc $INS_DIR/lib/bitcode/pgstattuple/pgstatapprox.bc $INS_DIR/lib/bitcode/pgstattuple/pgstatindex.bc $INS_DIR/lib/bitcode/pgstattuple/pgstattuple.bc $INS_DIR/lib/bitcode/pgx_datamasking.index.bc $INS_DIR/lib/bitcode/pgx_datamasking/DM_ExecMain.bc $INS_DIR/lib/bitcode/pgx_datamasking/DM_confidential.bc $INS_DIR/lib/bitcode/pgx_datamasking/analyzePlantree.bc $INS_DIR/lib/bitcode/pgx_datamasking/execRedaction.bc $INS_DIR/lib/bitcode/pgx_loader.index.bc $INS_DIR/lib/bitcode/pgx_loader/ipc.bc $INS_DIR/lib/bitcode/pgx_loader/pgx_loader.bc $INS_DIR/lib/bitcode/pgxml.index.bc $INS_DIR/lib/bitcode/pgxml/xpath.bc $INS_DIR/lib/bitcode/pgxml/xslt_proc.bc $INS_DIR/lib/bitcode/postgres.index.bc $INS_DIR/lib/bitcode/postgres/access/brin/brin.bc $INS_DIR/lib/bitcode/postgres/access/brin/brin_inclusion.bc $INS_DIR/lib/bitcode/postgres/access/brin/brin_minmax.bc $INS_DIR/lib/bitcode/postgres/access/brin/brin_pageops.bc $INS_DIR/lib/bitcode/postgres/access/brin/brin_revmap.bc $INS_DIR/lib/bitcode/postgres/access/brin/brin_tuple.bc $INS_DIR/lib/bitcode/postgres/access/brin/brin_validate.bc $INS_DIR/lib/bitcode/postgres/access/brin/brin_xlog.bc $INS_DIR/lib/bitcode/postgres/access/common/bufmask.bc $INS_DIR/lib/bitcode/postgres/access/common/heaptuple.bc $INS_DIR/lib/bitcode/postgres/access/common/indextuple.bc $INS_DIR/lib/bitcode/postgres/access/common/printsimple.bc $INS_DIR/lib/bitcode/postgres/access/common/printtup.bc $INS_DIR/lib/bitcode/postgres/access/common/relation.bc $INS_DIR/lib/bitcode/postgres/access/common/reloptions.bc $INS_DIR/lib/bitcode/postgres/access/common/scankey.bc $INS_DIR/lib/bitcode/postgres/access/common/session.bc $INS_DIR/lib/bitcode/postgres/access/common/tupconvert.bc $INS_DIR/lib/bitcode/postgres/access/common/tupdesc.bc $INS_DIR/lib/bitcode/postgres/access/gin/ginarrayproc.bc $INS_DIR/lib/bitcode/postgres/access/gin/ginbtree.bc $INS_DIR/lib/bitcode/postgres/access/gin/ginbulk.bc $INS_DIR/lib/bitcode/postgres/access/gin/gindatapage.bc $INS_DIR/lib/bitcode/postgres/access/gin/ginentrypage.bc $INS_DIR/lib/bitcode/postgres/access/gin/ginfast.bc $INS_DIR/lib/bitcode/postgres/access/gin/ginget.bc $INS_DIR/lib/bitcode/postgres/access/gin/gininsert.bc $INS_DIR/lib/bitcode/postgres/access/gin/ginlogic.bc $INS_DIR/lib/bitcode/postgres/access/gin/ginpostinglist.bc $INS_DIR/lib/bitcode/postgres/access/gin/ginscan.bc $INS_DIR/lib/bitcode/postgres/access/gin/ginutil.bc $INS_DIR/lib/bitcode/postgres/access/gin/ginvacuum.bc $INS_DIR/lib/bitcode/postgres/access/gin/ginvalidate.bc $INS_DIR/lib/bitcode/postgres/access/gin/ginxlog.bc $INS_DIR/lib/bitcode/postgres/access/gist/gist.bc $INS_DIR/lib/bitcode/postgres/access/gist/gistbuild.bc $INS_DIR/lib/bitcode/postgres/access/gist/gistbuildbuffers.bc $INS_DIR/lib/bitcode/postgres/access/gist/gistget.bc $INS_DIR/lib/bitcode/postgres/access/gist/gistproc.bc $INS_DIR/lib/bitcode/postgres/access/gist/gistscan.bc $INS_DIR/lib/bitcode/postgres/access/gist/gistsplit.bc $INS_DIR/lib/bitcode/postgres/access/gist/gistutil.bc $INS_DIR/lib/bitcode/postgres/access/gist/gistvacuum.bc $INS_DIR/lib/bitcode/postgres/access/gist/gistvalidate.bc $INS_DIR/lib/bitcode/postgres/access/gist/gistxlog.bc $INS_DIR/lib/bitcode/postgres/access/hash/hash.bc $INS_DIR/lib/bitcode/postgres/access/hash/hash_xlog.bc $INS_DIR/lib/bitcode/postgres/access/hash/hashfunc.bc $INS_DIR/lib/bitcode/postgres/access/hash/hashinsert.bc $INS_DIR/lib/bitcode/postgres/access/hash/hashovfl.bc $INS_DIR/lib/bitcode/postgres/access/hash/hashpage.bc $INS_DIR/lib/bitcode/postgres/access/hash/hashsearch.bc $INS_DIR/lib/bitcode/postgres/access/hash/hashsort.bc $INS_DIR/lib/bitcode/postgres/access/hash/hashutil.bc $INS_DIR/lib/bitcode/postgres/access/hash/hashvalidate.bc $INS_DIR/lib/bitcode/postgres/access/heap/heapam.bc $INS_DIR/lib/bitcode/postgres/access/heap/heapam_handler.bc $INS_DIR/lib/bitcode/postgres/access/heap/heapam_visibility.bc $INS_DIR/lib/bitcode/postgres/access/heap/hio.bc $INS_DIR/lib/bitcode/postgres/access/heap/pruneheap.bc $INS_DIR/lib/bitcode/postgres/access/heap/rewriteheap.bc $INS_DIR/lib/bitcode/postgres/access/heap/syncscan.bc $INS_DIR/lib/bitcode/postgres/access/heap/tuptoaster.bc $INS_DIR/lib/bitcode/postgres/access/heap/vacuumlazy.bc $INS_DIR/lib/bitcode/postgres/access/heap/visibilitymap.bc $INS_DIR/lib/bitcode/postgres/access/index/amapi.bc $INS_DIR/lib/bitcode/postgres/access/index/amvalidate.bc $INS_DIR/lib/bitcode/postgres/access/index/genam.bc $INS_DIR/lib/bitcode/postgres/access/index/indexam.bc $INS_DIR/lib/bitcode/postgres/access/nbtree/nbtcompare.bc $INS_DIR/lib/bitcode/postgres/access/nbtree/nbtinsert.bc $INS_DIR/lib/bitcode/postgres/access/nbtree/nbtpage.bc $INS_DIR/lib/bitcode/postgres/access/nbtree/nbtree.bc $INS_DIR/lib/bitcode/postgres/access/nbtree/nbtsearch.bc $INS_DIR/lib/bitcode/postgres/access/nbtree/nbtsort.bc $INS_DIR/lib/bitcode/postgres/access/nbtree/nbtsplitloc.bc $INS_DIR/lib/bitcode/postgres/access/nbtree/nbtutils.bc $INS_DIR/lib/bitcode/postgres/access/nbtree/nbtvalidate.bc $INS_DIR/lib/bitcode/postgres/access/nbtree/nbtxlog.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/brindesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/clogdesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/committsdesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/dbasedesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/genericdesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/gindesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/gistdesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/hashdesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/heapdesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/keystoredesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/logicalmsgdesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/mxactdesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/nbtdesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/relmapdesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/replorigindesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/seqdesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/smgrdesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/spgdesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/standbydesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/tblspcdesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/xactdesc.bc $INS_DIR/lib/bitcode/postgres/access/rmgrdesc/xlogdesc.bc $INS_DIR/lib/bitcode/postgres/access/spgist/spgdoinsert.bc $INS_DIR/lib/bitcode/postgres/access/spgist/spginsert.bc $INS_DIR/lib/bitcode/postgres/access/spgist/spgkdtreeproc.bc $INS_DIR/lib/bitcode/postgres/access/spgist/spgproc.bc $INS_DIR/lib/bitcode/postgres/access/spgist/spgquadtreeproc.bc $INS_DIR/lib/bitcode/postgres/access/spgist/spgscan.bc $INS_DIR/lib/bitcode/postgres/access/spgist/spgtextproc.bc $INS_DIR/lib/bitcode/postgres/access/spgist/spgutils.bc $INS_DIR/lib/bitcode/postgres/access/spgist/spgvacuum.bc $INS_DIR/lib/bitcode/postgres/access/spgist/spgvalidate.bc $INS_DIR/lib/bitcode/postgres/access/spgist/spgxlog.bc $INS_DIR/lib/bitcode/postgres/access/table/table.bc $INS_DIR/lib/bitcode/postgres/access/table/tableam.bc $INS_DIR/lib/bitcode/postgres/access/table/tableamapi.bc $INS_DIR/lib/bitcode/postgres/access/tablesample/bernoulli.bc $INS_DIR/lib/bitcode/postgres/access/tablesample/system.bc $INS_DIR/lib/bitcode/postgres/access/tablesample/tablesample.bc $INS_DIR/lib/bitcode/postgres/access/transam/clog.bc $INS_DIR/lib/bitcode/postgres/access/transam/commit_ts.bc $INS_DIR/lib/bitcode/postgres/access/transam/generic_xlog.bc $INS_DIR/lib/bitcode/postgres/access/transam/multixact.bc $INS_DIR/lib/bitcode/postgres/access/transam/parallel.bc $INS_DIR/lib/bitcode/postgres/access/transam/rmgr.bc $INS_DIR/lib/bitcode/postgres/access/transam/slru.bc $INS_DIR/lib/bitcode/postgres/access/transam/subtrans.bc $INS_DIR/lib/bitcode/postgres/access/transam/timeline.bc $INS_DIR/lib/bitcode/postgres/access/transam/transam.bc $INS_DIR/lib/bitcode/postgres/access/transam/twophase.bc $INS_DIR/lib/bitcode/postgres/access/transam/twophase_rmgr.bc $INS_DIR/lib/bitcode/postgres/access/transam/varsup.bc $INS_DIR/lib/bitcode/postgres/access/transam/xact.bc $INS_DIR/lib/bitcode/postgres/access/transam/xlog.bc $INS_DIR/lib/bitcode/postgres/access/transam/xlogarchive.bc $INS_DIR/lib/bitcode/postgres/access/transam/xlogfuncs.bc $INS_DIR/lib/bitcode/postgres/access/transam/xloginsert.bc $INS_DIR/lib/bitcode/postgres/access/transam/xlogreader.bc $INS_DIR/lib/bitcode/postgres/access/transam/xlogutils.bc $INS_DIR/lib/bitcode/postgres/bootstrap/bootparse.bc $INS_DIR/lib/bitcode/postgres/bootstrap/bootstrap.bc $INS_DIR/lib/bitcode/postgres/catalog/aclchk.bc $INS_DIR/lib/bitcode/postgres/catalog/catalog.bc $INS_DIR/lib/bitcode/postgres/catalog/dependency.bc $INS_DIR/lib/bitcode/postgres/catalog/heap.bc $INS_DIR/lib/bitcode/postgres/catalog/index.bc $INS_DIR/lib/bitcode/postgres/catalog/indexing.bc $INS_DIR/lib/bitcode/postgres/catalog/namespace.bc $INS_DIR/lib/bitcode/postgres/catalog/objectaccess.bc $INS_DIR/lib/bitcode/postgres/catalog/objectaddress.bc $INS_DIR/lib/bitcode/postgres/catalog/partition.bc $INS_DIR/lib/bitcode/postgres/catalog/pg_aggregate.bc $INS_DIR/lib/bitcode/postgres/catalog/pg_collation.bc $INS_DIR/lib/bitcode/postgres/catalog/pg_constraint.bc $INS_DIR/lib/bitcode/postgres/catalog/pg_conversion.bc $INS_DIR/lib/bitcode/postgres/catalog/pg_db_role_setting.bc $INS_DIR/lib/bitcode/postgres/catalog/pg_depend.bc $INS_DIR/lib/bitcode/postgres/catalog/pg_enum.bc $INS_DIR/lib/bitcode/postgres/catalog/pg_inherits.bc $INS_DIR/lib/bitcode/postgres/catalog/pg_largeobject.bc $INS_DIR/lib/bitcode/postgres/catalog/pg_namespace.bc $INS_DIR/lib/bitcode/postgres/catalog/pg_operator.bc $INS_DIR/lib/bitcode/postgres/catalog/pg_proc.bc $INS_DIR/lib/bitcode/postgres/catalog/pg_publication.bc $INS_DIR/lib/bitcode/postgres/catalog/pg_range.bc $INS_DIR/lib/bitcode/postgres/catalog/pg_shdepend.bc $INS_DIR/lib/bitcode/postgres/catalog/pg_subscription.bc $INS_DIR/lib/bitcode/postgres/catalog/pg_type.bc $INS_DIR/lib/bitcode/postgres/catalog/storage.bc $INS_DIR/lib/bitcode/postgres/catalog/toasting.bc $INS_DIR/lib/bitcode/postgres/commands/aggregatecmds.bc $INS_DIR/lib/bitcode/postgres/commands/alter.bc $INS_DIR/lib/bitcode/postgres/commands/amcmds.bc $INS_DIR/lib/bitcode/postgres/commands/analyze.bc $INS_DIR/lib/bitcode/postgres/commands/async.bc $INS_DIR/lib/bitcode/postgres/commands/cluster.bc $INS_DIR/lib/bitcode/postgres/commands/collationcmds.bc $INS_DIR/lib/bitcode/postgres/commands/comment.bc $INS_DIR/lib/bitcode/postgres/commands/constraint.bc $INS_DIR/lib/bitcode/postgres/commands/conversioncmds.bc $INS_DIR/lib/bitcode/postgres/commands/copy.bc $INS_DIR/lib/bitcode/postgres/commands/createas.bc $INS_DIR/lib/bitcode/postgres/commands/dbcommands.bc $INS_DIR/lib/bitcode/postgres/commands/define.bc $INS_DIR/lib/bitcode/postgres/commands/discard.bc $INS_DIR/lib/bitcode/postgres/commands/dropcmds.bc $INS_DIR/lib/bitcode/postgres/commands/event_trigger.bc $INS_DIR/lib/bitcode/postgres/commands/explain.bc $INS_DIR/lib/bitcode/postgres/commands/extension.bc $INS_DIR/lib/bitcode/postgres/commands/foreigncmds.bc $INS_DIR/lib/bitcode/postgres/commands/functioncmds.bc $INS_DIR/lib/bitcode/postgres/commands/indexcmds.bc $INS_DIR/lib/bitcode/postgres/commands/lockcmds.bc $INS_DIR/lib/bitcode/postgres/commands/matview.bc $INS_DIR/lib/bitcode/postgres/commands/opclasscmds.bc $INS_DIR/lib/bitcode/postgres/commands/operatorcmds.bc $INS_DIR/lib/bitcode/postgres/commands/policy.bc $INS_DIR/lib/bitcode/postgres/commands/portalcmds.bc $INS_DIR/lib/bitcode/postgres/commands/prepare.bc $INS_DIR/lib/bitcode/postgres/commands/proclang.bc $INS_DIR/lib/bitcode/postgres/commands/publicationcmds.bc $INS_DIR/lib/bitcode/postgres/commands/schemacmds.bc $INS_DIR/lib/bitcode/postgres/commands/seclabel.bc $INS_DIR/lib/bitcode/postgres/commands/sequence.bc $INS_DIR/lib/bitcode/postgres/commands/statscmds.bc $INS_DIR/lib/bitcode/postgres/commands/subscriptioncmds.bc $INS_DIR/lib/bitcode/postgres/commands/tablecmds.bc $INS_DIR/lib/bitcode/postgres/commands/tablespace.bc $INS_DIR/lib/bitcode/postgres/commands/trigger.bc $INS_DIR/lib/bitcode/postgres/commands/tsearchcmds.bc $INS_DIR/lib/bitcode/postgres/commands/typecmds.bc $INS_DIR/lib/bitcode/postgres/commands/user.bc $INS_DIR/lib/bitcode/postgres/commands/vacuum.bc $INS_DIR/lib/bitcode/postgres/commands/variable.bc $INS_DIR/lib/bitcode/postgres/commands/view.bc $INS_DIR/lib/bitcode/postgres/executor/execAmi.bc $INS_DIR/lib/bitcode/postgres/executor/execCurrent.bc $INS_DIR/lib/bitcode/postgres/executor/execExpr.bc $INS_DIR/lib/bitcode/postgres/executor/execExprInterp.bc $INS_DIR/lib/bitcode/postgres/executor/execGrouping.bc $INS_DIR/lib/bitcode/postgres/executor/execIndexing.bc $INS_DIR/lib/bitcode/postgres/executor/execJunk.bc $INS_DIR/lib/bitcode/postgres/executor/execMain.bc $INS_DIR/lib/bitcode/postgres/executor/execParallel.bc $INS_DIR/lib/bitcode/postgres/executor/execPartition.bc $INS_DIR/lib/bitcode/postgres/executor/execProcnode.bc $INS_DIR/lib/bitcode/postgres/executor/execReplication.bc $INS_DIR/lib/bitcode/postgres/executor/execSRF.bc $INS_DIR/lib/bitcode/postgres/executor/execScan.bc $INS_DIR/lib/bitcode/postgres/executor/execTuples.bc $INS_DIR/lib/bitcode/postgres/executor/execUtils.bc $INS_DIR/lib/bitcode/postgres/executor/functions.bc $INS_DIR/lib/bitcode/postgres/executor/instrument.bc $INS_DIR/lib/bitcode/postgres/executor/nodeAgg.bc $INS_DIR/lib/bitcode/postgres/executor/nodeAppend.bc $INS_DIR/lib/bitcode/postgres/executor/nodeBitmapAnd.bc $INS_DIR/lib/bitcode/postgres/executor/nodeBitmapHeapscan.bc $INS_DIR/lib/bitcode/postgres/executor/nodeBitmapIndexscan.bc $INS_DIR/lib/bitcode/postgres/executor/nodeBitmapOr.bc $INS_DIR/lib/bitcode/postgres/executor/nodeCtescan.bc $INS_DIR/lib/bitcode/postgres/executor/nodeCustom.bc $INS_DIR/lib/bitcode/postgres/executor/nodeForeignscan.bc $INS_DIR/lib/bitcode/postgres/executor/nodeFunctionscan.bc $INS_DIR/lib/bitcode/postgres/executor/nodeGather.bc $INS_DIR/lib/bitcode/postgres/executor/nodeGatherMerge.bc $INS_DIR/lib/bitcode/postgres/executor/nodeGroup.bc $INS_DIR/lib/bitcode/postgres/executor/nodeHash.bc $INS_DIR/lib/bitcode/postgres/executor/nodeHashjoin.bc $INS_DIR/lib/bitcode/postgres/executor/nodeIndexonlyscan.bc $INS_DIR/lib/bitcode/postgres/executor/nodeIndexscan.bc $INS_DIR/lib/bitcode/postgres/executor/nodeLimit.bc $INS_DIR/lib/bitcode/postgres/executor/nodeLockRows.bc $INS_DIR/lib/bitcode/postgres/executor/nodeMaterial.bc $INS_DIR/lib/bitcode/postgres/executor/nodeMergeAppend.bc $INS_DIR/lib/bitcode/postgres/executor/nodeMergejoin.bc $INS_DIR/lib/bitcode/postgres/executor/nodeModifyTable.bc $INS_DIR/lib/bitcode/postgres/executor/nodeNamedtuplestorescan.bc $INS_DIR/lib/bitcode/postgres/executor/nodeNestloop.bc $INS_DIR/lib/bitcode/postgres/executor/nodeProjectSet.bc $INS_DIR/lib/bitcode/postgres/executor/nodeRecursiveunion.bc $INS_DIR/lib/bitcode/postgres/executor/nodeResult.bc $INS_DIR/lib/bitcode/postgres/executor/nodeSamplescan.bc $INS_DIR/lib/bitcode/postgres/executor/nodeSeqscan.bc $INS_DIR/lib/bitcode/postgres/executor/nodeSetOp.bc $INS_DIR/lib/bitcode/postgres/executor/nodeSort.bc $INS_DIR/lib/bitcode/postgres/executor/nodeSubplan.bc $INS_DIR/lib/bitcode/postgres/executor/nodeSubqueryscan.bc $INS_DIR/lib/bitcode/postgres/executor/nodeTableFuncscan.bc $INS_DIR/lib/bitcode/postgres/executor/nodeTidscan.bc $INS_DIR/lib/bitcode/postgres/executor/nodeUnique.bc $INS_DIR/lib/bitcode/postgres/executor/nodeValuesscan.bc $INS_DIR/lib/bitcode/postgres/executor/nodeWindowAgg.bc $INS_DIR/lib/bitcode/postgres/executor/nodeWorktablescan.bc $INS_DIR/lib/bitcode/postgres/executor/spi.bc $INS_DIR/lib/bitcode/postgres/executor/tqueue.bc $INS_DIR/lib/bitcode/postgres/executor/tstoreReceiver.bc $INS_DIR/lib/bitcode/postgres/foreign/foreign.bc $INS_DIR/lib/bitcode/postgres/jit/jit.bc $INS_DIR/lib/bitcode/postgres/lib/binaryheap.bc $INS_DIR/lib/bitcode/postgres/lib/bipartite_match.bc $INS_DIR/lib/bitcode/postgres/lib/bloomfilter.bc $INS_DIR/lib/bitcode/postgres/lib/dshash.bc $INS_DIR/lib/bitcode/postgres/lib/hyperloglog.bc $INS_DIR/lib/bitcode/postgres/lib/ilist.bc $INS_DIR/lib/bitcode/postgres/lib/integerset.bc $INS_DIR/lib/bitcode/postgres/lib/knapsack.bc $INS_DIR/lib/bitcode/postgres/lib/pairingheap.bc $INS_DIR/lib/bitcode/postgres/lib/rbtree.bc $INS_DIR/lib/bitcode/postgres/lib/stringinfo.bc $INS_DIR/lib/bitcode/postgres/libpq/auth-scram.bc $INS_DIR/lib/bitcode/postgres/libpq/auth.bc $INS_DIR/lib/bitcode/postgres/libpq/be-fsstubs.bc $INS_DIR/lib/bitcode/postgres/libpq/be-gssapi-common.bc $INS_DIR/lib/bitcode/postgres/libpq/be-secure-common.bc $INS_DIR/lib/bitcode/postgres/libpq/be-secure-gssapi.bc $INS_DIR/lib/bitcode/postgres/libpq/be-secure-openssl.bc $INS_DIR/lib/bitcode/postgres/libpq/be-secure.bc $INS_DIR/lib/bitcode/postgres/libpq/crypt.bc $INS_DIR/lib/bitcode/postgres/libpq/hba.bc $INS_DIR/lib/bitcode/postgres/libpq/ifaddr.bc $INS_DIR/lib/bitcode/postgres/libpq/pqcomm.bc $INS_DIR/lib/bitcode/postgres/libpq/pqformat.bc $INS_DIR/lib/bitcode/postgres/libpq/pqmq.bc $INS_DIR/lib/bitcode/postgres/libpq/pqsignal.bc $INS_DIR/lib/bitcode/postgres/lic/checklicense.bc $INS_DIR/lib/bitcode/postgres/main/main.bc $INS_DIR/lib/bitcode/postgres/nodes/bitmapset.bc $INS_DIR/lib/bitcode/postgres/nodes/copyfuncs.bc $INS_DIR/lib/bitcode/postgres/nodes/equalfuncs.bc $INS_DIR/lib/bitcode/postgres/nodes/extensible.bc $INS_DIR/lib/bitcode/postgres/nodes/list.bc $INS_DIR/lib/bitcode/postgres/nodes/makefuncs.bc $INS_DIR/lib/bitcode/postgres/nodes/nodeFuncs.bc $INS_DIR/lib/bitcode/postgres/nodes/nodes.bc $INS_DIR/lib/bitcode/postgres/nodes/outfuncs.bc $INS_DIR/lib/bitcode/postgres/nodes/params.bc $INS_DIR/lib/bitcode/postgres/nodes/print.bc $INS_DIR/lib/bitcode/postgres/nodes/read.bc $INS_DIR/lib/bitcode/postgres/nodes/readfuncs.bc $INS_DIR/lib/bitcode/postgres/nodes/tidbitmap.bc $INS_DIR/lib/bitcode/postgres/nodes/value.bc $INS_DIR/lib/bitcode/postgres/optimizer/geqo/geqo_copy.bc $INS_DIR/lib/bitcode/postgres/optimizer/geqo/geqo_cx.bc $INS_DIR/lib/bitcode/postgres/optimizer/geqo/geqo_erx.bc $INS_DIR/lib/bitcode/postgres/optimizer/geqo/geqo_eval.bc $INS_DIR/lib/bitcode/postgres/optimizer/geqo/geqo_main.bc $INS_DIR/lib/bitcode/postgres/optimizer/geqo/geqo_misc.bc $INS_DIR/lib/bitcode/postgres/optimizer/geqo/geqo_mutation.bc $INS_DIR/lib/bitcode/postgres/optimizer/geqo/geqo_ox1.bc $INS_DIR/lib/bitcode/postgres/optimizer/geqo/geqo_ox2.bc $INS_DIR/lib/bitcode/postgres/optimizer/geqo/geqo_pmx.bc $INS_DIR/lib/bitcode/postgres/optimizer/geqo/geqo_pool.bc $INS_DIR/lib/bitcode/postgres/optimizer/geqo/geqo_px.bc $INS_DIR/lib/bitcode/postgres/optimizer/geqo/geqo_random.bc $INS_DIR/lib/bitcode/postgres/optimizer/geqo/geqo_recombination.bc $INS_DIR/lib/bitcode/postgres/optimizer/geqo/geqo_selection.bc $INS_DIR/lib/bitcode/postgres/optimizer/path/allpaths.bc $INS_DIR/lib/bitcode/postgres/optimizer/path/clausesel.bc $INS_DIR/lib/bitcode/postgres/optimizer/path/costsize.bc $INS_DIR/lib/bitcode/postgres/optimizer/path/equivclass.bc $INS_DIR/lib/bitcode/postgres/optimizer/path/indxpath.bc $INS_DIR/lib/bitcode/postgres/optimizer/path/joinpath.bc $INS_DIR/lib/bitcode/postgres/optimizer/path/joinrels.bc $INS_DIR/lib/bitcode/postgres/optimizer/path/pathkeys.bc $INS_DIR/lib/bitcode/postgres/optimizer/path/tidpath.bc $INS_DIR/lib/bitcode/postgres/optimizer/plan/analyzejoins.bc $INS_DIR/lib/bitcode/postgres/optimizer/plan/createplan.bc $INS_DIR/lib/bitcode/postgres/optimizer/plan/initsplan.bc $INS_DIR/lib/bitcode/postgres/optimizer/plan/planagg.bc $INS_DIR/lib/bitcode/postgres/optimizer/plan/planmain.bc $INS_DIR/lib/bitcode/postgres/optimizer/plan/planner.bc $INS_DIR/lib/bitcode/postgres/optimizer/plan/setrefs.bc $INS_DIR/lib/bitcode/postgres/optimizer/plan/subselect.bc $INS_DIR/lib/bitcode/postgres/optimizer/prep/prepjointree.bc $INS_DIR/lib/bitcode/postgres/optimizer/prep/prepqual.bc $INS_DIR/lib/bitcode/postgres/optimizer/prep/preptlist.bc $INS_DIR/lib/bitcode/postgres/optimizer/prep/prepunion.bc $INS_DIR/lib/bitcode/postgres/optimizer/util/appendinfo.bc $INS_DIR/lib/bitcode/postgres/optimizer/util/clauses.bc $INS_DIR/lib/bitcode/postgres/optimizer/util/inherit.bc $INS_DIR/lib/bitcode/postgres/optimizer/util/joininfo.bc $INS_DIR/lib/bitcode/postgres/optimizer/util/orclauses.bc $INS_DIR/lib/bitcode/postgres/optimizer/util/paramassign.bc $INS_DIR/lib/bitcode/postgres/optimizer/util/pathnode.bc $INS_DIR/lib/bitcode/postgres/optimizer/util/placeholder.bc $INS_DIR/lib/bitcode/postgres/optimizer/util/plancat.bc $INS_DIR/lib/bitcode/postgres/optimizer/util/predtest.bc $INS_DIR/lib/bitcode/postgres/optimizer/util/relnode.bc $INS_DIR/lib/bitcode/postgres/optimizer/util/restrictinfo.bc $INS_DIR/lib/bitcode/postgres/optimizer/util/tlist.bc $INS_DIR/lib/bitcode/postgres/optimizer/util/var.bc $INS_DIR/lib/bitcode/postgres/parser/analyze.bc $INS_DIR/lib/bitcode/postgres/parser/convert.bc $INS_DIR/lib/bitcode/postgres/parser/gram.bc $INS_DIR/lib/bitcode/postgres/parser/parse_agg.bc $INS_DIR/lib/bitcode/postgres/parser/parse_clause.bc $INS_DIR/lib/bitcode/postgres/parser/parse_coerce.bc $INS_DIR/lib/bitcode/postgres/parser/parse_collate.bc $INS_DIR/lib/bitcode/postgres/parser/parse_cte.bc $INS_DIR/lib/bitcode/postgres/parser/parse_enr.bc $INS_DIR/lib/bitcode/postgres/parser/parse_expr.bc $INS_DIR/lib/bitcode/postgres/parser/parse_func.bc $INS_DIR/lib/bitcode/postgres/parser/parse_node.bc $INS_DIR/lib/bitcode/postgres/parser/parse_oper.bc $INS_DIR/lib/bitcode/postgres/parser/parse_param.bc $INS_DIR/lib/bitcode/postgres/parser/parse_relation.bc $INS_DIR/lib/bitcode/postgres/parser/parse_target.bc $INS_DIR/lib/bitcode/postgres/parser/parse_type.bc $INS_DIR/lib/bitcode/postgres/parser/parse_utilcmd.bc $INS_DIR/lib/bitcode/postgres/parser/parser.bc $INS_DIR/lib/bitcode/postgres/parser/scan.bc $INS_DIR/lib/bitcode/postgres/parser/scansup.bc $INS_DIR/lib/bitcode/postgres/partitioning/partbounds.bc $INS_DIR/lib/bitcode/postgres/partitioning/partdesc.bc $INS_DIR/lib/bitcode/postgres/partitioning/partprune.bc $INS_DIR/lib/bitcode/postgres/port/atomics.bc $INS_DIR/lib/bitcode/postgres/port/pg_sema.bc $INS_DIR/lib/bitcode/postgres/port/pg_shmem.bc $INS_DIR/lib/bitcode/postgres/postmaster/autovacuum.bc $INS_DIR/lib/bitcode/postgres/postmaster/bgworker.bc $INS_DIR/lib/bitcode/postgres/postmaster/bgwriter.bc $INS_DIR/lib/bitcode/postgres/postmaster/checkpointer.bc $INS_DIR/lib/bitcode/postgres/postmaster/fork_process.bc $INS_DIR/lib/bitcode/postgres/postmaster/pgarch.bc $INS_DIR/lib/bitcode/postgres/postmaster/pgstat.bc $INS_DIR/lib/bitcode/postgres/postmaster/postmaster.bc $INS_DIR/lib/bitcode/postgres/postmaster/startup.bc $INS_DIR/lib/bitcode/postgres/postmaster/syslogger.bc $INS_DIR/lib/bitcode/postgres/postmaster/walwriter.bc $INS_DIR/lib/bitcode/postgres/postmaster/xlogmultiplexer.bc $INS_DIR/lib/bitcode/postgres/regex/regcomp.bc $INS_DIR/lib/bitcode/postgres/regex/regerror.bc $INS_DIR/lib/bitcode/postgres/regex/regexec.bc $INS_DIR/lib/bitcode/postgres/regex/regexport.bc $INS_DIR/lib/bitcode/postgres/regex/regfree.bc $INS_DIR/lib/bitcode/postgres/regex/regprefix.bc $INS_DIR/lib/bitcode/postgres/replication/basebackup.bc $INS_DIR/lib/bitcode/postgres/replication/followsend.bc $INS_DIR/lib/bitcode/postgres/replication/followsend_gram.bc $INS_DIR/lib/bitcode/postgres/replication/logical/decode.bc $INS_DIR/lib/bitcode/postgres/replication/logical/launcher.bc $INS_DIR/lib/bitcode/postgres/replication/logical/logical.bc $INS_DIR/lib/bitcode/postgres/replication/logical/logicalfuncs.bc $INS_DIR/lib/bitcode/postgres/replication/logical/message.bc $INS_DIR/lib/bitcode/postgres/replication/logical/origin.bc $INS_DIR/lib/bitcode/postgres/replication/logical/proto.bc $INS_DIR/lib/bitcode/postgres/replication/logical/relation.bc $INS_DIR/lib/bitcode/postgres/replication/logical/reorderbuffer.bc $INS_DIR/lib/bitcode/postgres/replication/logical/snapbuild.bc $INS_DIR/lib/bitcode/postgres/replication/logical/tablesync.bc $INS_DIR/lib/bitcode/postgres/replication/logical/worker.bc $INS_DIR/lib/bitcode/postgres/replication/repl_gram.bc $INS_DIR/lib/bitcode/postgres/replication/slot.bc $INS_DIR/lib/bitcode/postgres/replication/slotfuncs.bc $INS_DIR/lib/bitcode/postgres/replication/syncrep.bc $INS_DIR/lib/bitcode/postgres/replication/syncrep_gram.bc $INS_DIR/lib/bitcode/postgres/replication/walreceiver.bc $INS_DIR/lib/bitcode/postgres/replication/walreceiverfuncs.bc $INS_DIR/lib/bitcode/postgres/replication/walsender.bc $INS_DIR/lib/bitcode/postgres/rewrite/rewriteDefine.bc $INS_DIR/lib/bitcode/postgres/rewrite/rewriteHandler.bc $INS_DIR/lib/bitcode/postgres/rewrite/rewriteManip.bc $INS_DIR/lib/bitcode/postgres/rewrite/rewriteRemove.bc $INS_DIR/lib/bitcode/postgres/rewrite/rewriteSupport.bc $INS_DIR/lib/bitcode/postgres/rewrite/rowsecurity.bc $INS_DIR/lib/bitcode/postgres/statistics/dependencies.bc $INS_DIR/lib/bitcode/postgres/statistics/extended_stats.bc $INS_DIR/lib/bitcode/postgres/statistics/mcv.bc $INS_DIR/lib/bitcode/postgres/statistics/mvdistinct.bc $INS_DIR/lib/bitcode/postgres/storage/buffer/buf_init.bc $INS_DIR/lib/bitcode/postgres/storage/buffer/buf_table.bc $INS_DIR/lib/bitcode/postgres/storage/buffer/bufmgr.bc $INS_DIR/lib/bitcode/postgres/storage/buffer/cached_buf.bc $INS_DIR/lib/bitcode/postgres/storage/buffer/freelist.bc $INS_DIR/lib/bitcode/postgres/storage/buffer/localbuf.bc $INS_DIR/lib/bitcode/postgres/storage/file/buffile.bc $INS_DIR/lib/bitcode/postgres/storage/file/copydir.bc $INS_DIR/lib/bitcode/postgres/storage/file/fd.bc $INS_DIR/lib/bitcode/postgres/storage/file/reinit.bc $INS_DIR/lib/bitcode/postgres/storage/file/sharedfileset.bc $INS_DIR/lib/bitcode/postgres/storage/freespace/freespace.bc $INS_DIR/lib/bitcode/postgres/storage/freespace/fsmpage.bc $INS_DIR/lib/bitcode/postgres/storage/freespace/indexfsm.bc $INS_DIR/lib/bitcode/postgres/storage/ipc/barrier.bc $INS_DIR/lib/bitcode/postgres/storage/ipc/dsm.bc $INS_DIR/lib/bitcode/postgres/storage/ipc/dsm_impl.bc $INS_DIR/lib/bitcode/postgres/storage/ipc/ipc.bc $INS_DIR/lib/bitcode/postgres/storage/ipc/ipci.bc $INS_DIR/lib/bitcode/postgres/storage/ipc/latch.bc $INS_DIR/lib/bitcode/postgres/storage/ipc/pmsignal.bc $INS_DIR/lib/bitcode/postgres/storage/ipc/procarray.bc $INS_DIR/lib/bitcode/postgres/storage/ipc/procsignal.bc $INS_DIR/lib/bitcode/postgres/storage/ipc/shm_mq.bc $INS_DIR/lib/bitcode/postgres/storage/ipc/shm_toc.bc $INS_DIR/lib/bitcode/postgres/storage/ipc/shmem.bc $INS_DIR/lib/bitcode/postgres/storage/ipc/shmqueue.bc $INS_DIR/lib/bitcode/postgres/storage/ipc/signalfuncs.bc $INS_DIR/lib/bitcode/postgres/storage/ipc/sinval.bc $INS_DIR/lib/bitcode/postgres/storage/ipc/sinvaladt.bc $INS_DIR/lib/bitcode/postgres/storage/ipc/standby.bc $INS_DIR/lib/bitcode/postgres/storage/large_object/inv_api.bc $INS_DIR/lib/bitcode/postgres/storage/lmgr/condition_variable.bc $INS_DIR/lib/bitcode/postgres/storage/lmgr/deadlock.bc $INS_DIR/lib/bitcode/postgres/storage/lmgr/lmgr.bc $INS_DIR/lib/bitcode/postgres/storage/lmgr/lock.bc $INS_DIR/lib/bitcode/postgres/storage/lmgr/lwlock.bc $INS_DIR/lib/bitcode/postgres/storage/lmgr/lwlocknames.bc $INS_DIR/lib/bitcode/postgres/storage/lmgr/predicate.bc $INS_DIR/lib/bitcode/postgres/storage/lmgr/proc.bc $INS_DIR/lib/bitcode/postgres/storage/lmgr/s_lock.bc $INS_DIR/lib/bitcode/postgres/storage/lmgr/spin.bc $INS_DIR/lib/bitcode/postgres/storage/page/bufpage.bc $INS_DIR/lib/bitcode/postgres/storage/page/checksum.bc $INS_DIR/lib/bitcode/postgres/storage/page/itemptr.bc $INS_DIR/lib/bitcode/postgres/storage/smgr/md.bc $INS_DIR/lib/bitcode/postgres/storage/smgr/smgr.bc $INS_DIR/lib/bitcode/postgres/storage/sync/sync.bc $INS_DIR/lib/bitcode/postgres/tcop/dest.bc $INS_DIR/lib/bitcode/postgres/tcop/fastpath.bc $INS_DIR/lib/bitcode/postgres/tcop/postgres.bc $INS_DIR/lib/bitcode/postgres/tcop/pquery.bc $INS_DIR/lib/bitcode/postgres/tcop/utility.bc $INS_DIR/lib/bitcode/postgres/tsearch/dict.bc $INS_DIR/lib/bitcode/postgres/tsearch/dict_ispell.bc $INS_DIR/lib/bitcode/postgres/tsearch/dict_simple.bc $INS_DIR/lib/bitcode/postgres/tsearch/dict_synonym.bc $INS_DIR/lib/bitcode/postgres/tsearch/dict_thesaurus.bc $INS_DIR/lib/bitcode/postgres/tsearch/regis.bc $INS_DIR/lib/bitcode/postgres/tsearch/spell.bc $INS_DIR/lib/bitcode/postgres/tsearch/to_tsany.bc $INS_DIR/lib/bitcode/postgres/tsearch/ts_locale.bc $INS_DIR/lib/bitcode/postgres/tsearch/ts_parse.bc $INS_DIR/lib/bitcode/postgres/tsearch/ts_selfuncs.bc $INS_DIR/lib/bitcode/postgres/tsearch/ts_typanalyze.bc $INS_DIR/lib/bitcode/postgres/tsearch/ts_utils.bc $INS_DIR/lib/bitcode/postgres/tsearch/wparser.bc $INS_DIR/lib/bitcode/postgres/tsearch/wparser_def.bc $INS_DIR/lib/bitcode/postgres/utils/adt/acl.bc $INS_DIR/lib/bitcode/postgres/utils/adt/amutils.bc $INS_DIR/lib/bitcode/postgres/utils/adt/array_expanded.bc $INS_DIR/lib/bitcode/postgres/utils/adt/array_selfuncs.bc $INS_DIR/lib/bitcode/postgres/utils/adt/array_typanalyze.bc $INS_DIR/lib/bitcode/postgres/utils/adt/array_userfuncs.bc $INS_DIR/lib/bitcode/postgres/utils/adt/arrayfuncs.bc $INS_DIR/lib/bitcode/postgres/utils/adt/arrayutils.bc $INS_DIR/lib/bitcode/postgres/utils/adt/ascii.bc $INS_DIR/lib/bitcode/postgres/utils/adt/bool.bc $INS_DIR/lib/bitcode/postgres/utils/adt/cash.bc $INS_DIR/lib/bitcode/postgres/utils/adt/char.bc $INS_DIR/lib/bitcode/postgres/utils/adt/cryptohashes.bc $INS_DIR/lib/bitcode/postgres/utils/adt/date.bc $INS_DIR/lib/bitcode/postgres/utils/adt/datetime.bc $INS_DIR/lib/bitcode/postgres/utils/adt/datum.bc $INS_DIR/lib/bitcode/postgres/utils/adt/dbsize.bc $INS_DIR/lib/bitcode/postgres/utils/adt/domains.bc $INS_DIR/lib/bitcode/postgres/utils/adt/encode.bc $INS_DIR/lib/bitcode/postgres/utils/adt/enum.bc $INS_DIR/lib/bitcode/postgres/utils/adt/expandeddatum.bc $INS_DIR/lib/bitcode/postgres/utils/adt/expandedrecord.bc $INS_DIR/lib/bitcode/postgres/utils/adt/float.bc $INS_DIR/lib/bitcode/postgres/utils/adt/format_type.bc $INS_DIR/lib/bitcode/postgres/utils/adt/formatting.bc $INS_DIR/lib/bitcode/postgres/utils/adt/genfile.bc $INS_DIR/lib/bitcode/postgres/utils/adt/geo_ops.bc $INS_DIR/lib/bitcode/postgres/utils/adt/geo_selfuncs.bc $INS_DIR/lib/bitcode/postgres/utils/adt/geo_spgist.bc $INS_DIR/lib/bitcode/postgres/utils/adt/inet_cidr_ntop.bc $INS_DIR/lib/bitcode/postgres/utils/adt/inet_net_pton.bc $INS_DIR/lib/bitcode/postgres/utils/adt/int.bc $INS_DIR/lib/bitcode/postgres/utils/adt/int8.bc $INS_DIR/lib/bitcode/postgres/utils/adt/json.bc $INS_DIR/lib/bitcode/postgres/utils/adt/jsonb.bc $INS_DIR/lib/bitcode/postgres/utils/adt/jsonb_gin.bc $INS_DIR/lib/bitcode/postgres/utils/adt/jsonb_op.bc $INS_DIR/lib/bitcode/postgres/utils/adt/jsonb_util.bc $INS_DIR/lib/bitcode/postgres/utils/adt/jsonfuncs.bc $INS_DIR/lib/bitcode/postgres/utils/adt/jsonpath.bc $INS_DIR/lib/bitcode/postgres/utils/adt/jsonpath_exec.bc $INS_DIR/lib/bitcode/postgres/utils/adt/jsonpath_gram.bc $INS_DIR/lib/bitcode/postgres/utils/adt/like.bc $INS_DIR/lib/bitcode/postgres/utils/adt/like_support.bc $INS_DIR/lib/bitcode/postgres/utils/adt/lockfuncs.bc $INS_DIR/lib/bitcode/postgres/utils/adt/mac.bc $INS_DIR/lib/bitcode/postgres/utils/adt/mac8.bc $INS_DIR/lib/bitcode/postgres/utils/adt/misc.bc $INS_DIR/lib/bitcode/postgres/utils/adt/name.bc $INS_DIR/lib/bitcode/postgres/utils/adt/network.bc $INS_DIR/lib/bitcode/postgres/utils/adt/network_gist.bc $INS_DIR/lib/bitcode/postgres/utils/adt/network_selfuncs.bc $INS_DIR/lib/bitcode/postgres/utils/adt/network_spgist.bc $INS_DIR/lib/bitcode/postgres/utils/adt/numeric.bc $INS_DIR/lib/bitcode/postgres/utils/adt/numutils.bc $INS_DIR/lib/bitcode/postgres/utils/adt/nvarchar.bc $INS_DIR/lib/bitcode/postgres/utils/adt/oid.bc $INS_DIR/lib/bitcode/postgres/utils/adt/oracle_compat.bc $INS_DIR/lib/bitcode/postgres/utils/adt/orderedsetaggs.bc $INS_DIR/lib/bitcode/postgres/utils/adt/partitionfuncs.bc $INS_DIR/lib/bitcode/postgres/utils/adt/pg_locale.bc $INS_DIR/lib/bitcode/postgres/utils/adt/pg_lsn.bc $INS_DIR/lib/bitcode/postgres/utils/adt/pg_upgrade_support.bc $INS_DIR/lib/bitcode/postgres/utils/adt/pgstatfuncs.bc $INS_DIR/lib/bitcode/postgres/utils/adt/pseudotypes.bc $INS_DIR/lib/bitcode/postgres/utils/adt/quote.bc $INS_DIR/lib/bitcode/postgres/utils/adt/rangetypes.bc $INS_DIR/lib/bitcode/postgres/utils/adt/rangetypes_gist.bc $INS_DIR/lib/bitcode/postgres/utils/adt/rangetypes_selfuncs.bc $INS_DIR/lib/bitcode/postgres/utils/adt/rangetypes_spgist.bc $INS_DIR/lib/bitcode/postgres/utils/adt/rangetypes_typanalyze.bc $INS_DIR/lib/bitcode/postgres/utils/adt/regexp.bc $INS_DIR/lib/bitcode/postgres/utils/adt/regproc.bc $INS_DIR/lib/bitcode/postgres/utils/adt/ri_triggers.bc $INS_DIR/lib/bitcode/postgres/utils/adt/rowtypes.bc $INS_DIR/lib/bitcode/postgres/utils/adt/ruleutils.bc $INS_DIR/lib/bitcode/postgres/utils/adt/selfuncs.bc $INS_DIR/lib/bitcode/postgres/utils/adt/tid.bc $INS_DIR/lib/bitcode/postgres/utils/adt/timestamp.bc $INS_DIR/lib/bitcode/postgres/utils/adt/trigfuncs.bc $INS_DIR/lib/bitcode/postgres/utils/adt/tsginidx.bc $INS_DIR/lib/bitcode/postgres/utils/adt/tsgistidx.bc $INS_DIR/lib/bitcode/postgres/utils/adt/tsquery.bc $INS_DIR/lib/bitcode/postgres/utils/adt/tsquery_cleanup.bc $INS_DIR/lib/bitcode/postgres/utils/adt/tsquery_gist.bc $INS_DIR/lib/bitcode/postgres/utils/adt/tsquery_op.bc $INS_DIR/lib/bitcode/postgres/utils/adt/tsquery_rewrite.bc $INS_DIR/lib/bitcode/postgres/utils/adt/tsquery_util.bc $INS_DIR/lib/bitcode/postgres/utils/adt/tsrank.bc $INS_DIR/lib/bitcode/postgres/utils/adt/tsvector.bc $INS_DIR/lib/bitcode/postgres/utils/adt/tsvector_op.bc $INS_DIR/lib/bitcode/postgres/utils/adt/tsvector_parser.bc $INS_DIR/lib/bitcode/postgres/utils/adt/txid.bc $INS_DIR/lib/bitcode/postgres/utils/adt/uuid.bc $INS_DIR/lib/bitcode/postgres/utils/adt/varbit.bc $INS_DIR/lib/bitcode/postgres/utils/adt/varchar.bc $INS_DIR/lib/bitcode/postgres/utils/adt/varlena.bc $INS_DIR/lib/bitcode/postgres/utils/adt/version.bc $INS_DIR/lib/bitcode/postgres/utils/adt/windowfuncs.bc $INS_DIR/lib/bitcode/postgres/utils/adt/xid.bc $INS_DIR/lib/bitcode/postgres/utils/adt/xml.bc $INS_DIR/lib/bitcode/postgres/utils/cache/attoptcache.bc $INS_DIR/lib/bitcode/postgres/utils/cache/catcache.bc $INS_DIR/lib/bitcode/postgres/utils/cache/evtcache.bc $INS_DIR/lib/bitcode/postgres/utils/cache/inval.bc $INS_DIR/lib/bitcode/postgres/utils/cache/lsyscache.bc $INS_DIR/lib/bitcode/postgres/utils/cache/partcache.bc $INS_DIR/lib/bitcode/postgres/utils/cache/plancache.bc $INS_DIR/lib/bitcode/postgres/utils/cache/relcache.bc $INS_DIR/lib/bitcode/postgres/utils/cache/relfilenodemap.bc $INS_DIR/lib/bitcode/postgres/utils/cache/relmapper.bc $INS_DIR/lib/bitcode/postgres/utils/cache/shared_bitmap.bc $INS_DIR/lib/bitcode/postgres/utils/cache/shared_cache.bc $INS_DIR/lib/bitcode/postgres/utils/cache/spccache.bc $INS_DIR/lib/bitcode/postgres/utils/cache/syscache.bc $INS_DIR/lib/bitcode/postgres/utils/cache/ts_cache.bc $INS_DIR/lib/bitcode/postgres/utils/cache/typcache.bc $INS_DIR/lib/bitcode/postgres/utils/encryption/encryption.bc $INS_DIR/lib/bitcode/postgres/utils/error/assert.bc $INS_DIR/lib/bitcode/postgres/utils/error/elog.bc $INS_DIR/lib/bitcode/postgres/utils/fmgr/dfmgr.bc $INS_DIR/lib/bitcode/postgres/utils/fmgr/fmgr.bc $INS_DIR/lib/bitcode/postgres/utils/fmgr/funcapi.bc $INS_DIR/lib/bitcode/postgres/utils/fmgrtab.bc $INS_DIR/lib/bitcode/postgres/utils/hash/dynahash.bc $INS_DIR/lib/bitcode/postgres/utils/hash/hashfn.bc $INS_DIR/lib/bitcode/postgres/utils/hash/pg_crc.bc $INS_DIR/lib/bitcode/postgres/utils/init/globals.bc $INS_DIR/lib/bitcode/postgres/utils/init/miscinit.bc $INS_DIR/lib/bitcode/postgres/utils/init/postinit.bc $INS_DIR/lib/bitcode/postgres/utils/mb/char_conv.bc $INS_DIR/lib/bitcode/postgres/utils/mb/char_edf.bc $INS_DIR/lib/bitcode/postgres/utils/mb/conv.bc $INS_DIR/lib/bitcode/postgres/utils/mb/encnames.bc $INS_DIR/lib/bitcode/postgres/utils/mb/mbutils.bc $INS_DIR/lib/bitcode/postgres/utils/mb/wchar.bc $INS_DIR/lib/bitcode/postgres/utils/mb/wstrcmp.bc $INS_DIR/lib/bitcode/postgres/utils/mb/wstrncmp.bc $INS_DIR/lib/bitcode/postgres/utils/misc/compatible_dbms.bc $INS_DIR/lib/bitcode/postgres/utils/misc/cpu.bc $INS_DIR/lib/bitcode/postgres/utils/misc/guc.bc $INS_DIR/lib/bitcode/postgres/utils/misc/help_config.bc $INS_DIR/lib/bitcode/postgres/utils/misc/pg_config.bc $INS_DIR/lib/bitcode/postgres/utils/misc/pg_controldata.bc $INS_DIR/lib/bitcode/postgres/utils/misc/pg_rusage.bc $INS_DIR/lib/bitcode/postgres/utils/misc/ps_status.bc $INS_DIR/lib/bitcode/postgres/utils/misc/queryenvironment.bc $INS_DIR/lib/bitcode/postgres/utils/misc/rls.bc $INS_DIR/lib/bitcode/postgres/utils/misc/sampling.bc $INS_DIR/lib/bitcode/postgres/utils/misc/superuser.bc $INS_DIR/lib/bitcode/postgres/utils/misc/timeout.bc $INS_DIR/lib/bitcode/postgres/utils/misc/tzparser.bc $INS_DIR/lib/bitcode/postgres/utils/mmgr/aset.bc $INS_DIR/lib/bitcode/postgres/utils/mmgr/dsa.bc $INS_DIR/lib/bitcode/postgres/utils/mmgr/freepage.bc $INS_DIR/lib/bitcode/postgres/utils/mmgr/generation.bc $INS_DIR/lib/bitcode/postgres/utils/mmgr/mcxt.bc $INS_DIR/lib/bitcode/postgres/utils/mmgr/memdebug.bc $INS_DIR/lib/bitcode/postgres/utils/mmgr/portalmem.bc $INS_DIR/lib/bitcode/postgres/utils/mmgr/shm_context.bc $INS_DIR/lib/bitcode/postgres/utils/mmgr/shm_retail.bc $INS_DIR/lib/bitcode/postgres/utils/mmgr/slab.bc $INS_DIR/lib/bitcode/postgres/utils/resowner/resowner.bc $INS_DIR/lib/bitcode/postgres/utils/sort/logtape.bc $INS_DIR/lib/bitcode/postgres/utils/sort/sharedtuplestore.bc $INS_DIR/lib/bitcode/postgres/utils/sort/sortsupport.bc $INS_DIR/lib/bitcode/postgres/utils/sort/tuplesort.bc $INS_DIR/lib/bitcode/postgres/utils/sort/tuplestore.bc $INS_DIR/lib/bitcode/postgres/utils/time/combocid.bc $INS_DIR/lib/bitcode/postgres/utils/time/snapmgr.bc $INS_DIR/lib/bitcode/postgres_fdw.index.bc $INS_DIR/lib/bitcode/postgres_fdw/connection.bc $INS_DIR/lib/bitcode/postgres_fdw/deparse.bc $INS_DIR/lib/bitcode/postgres_fdw/option.bc $INS_DIR/lib/bitcode/postgres_fdw/postgres_fdw.bc $INS_DIR/lib/bitcode/postgres_fdw/shippable.bc $INS_DIR/lib/bitcode/refint.index.bc $INS_DIR/lib/bitcode/refint/refint.bc $INS_DIR/lib/bitcode/seg.index.bc $INS_DIR/lib/bitcode/seg/seg.bc $INS_DIR/lib/bitcode/seg/segparse.bc $INS_DIR/lib/bitcode/sepgsql.index.bc $INS_DIR/lib/bitcode/sepgsql/database.bc $INS_DIR/lib/bitcode/sepgsql/dml.bc $INS_DIR/lib/bitcode/sepgsql/hooks.bc $INS_DIR/lib/bitcode/sepgsql/label.bc $INS_DIR/lib/bitcode/sepgsql/proc.bc $INS_DIR/lib/bitcode/sepgsql/relation.bc $INS_DIR/lib/bitcode/sepgsql/schema.bc $INS_DIR/lib/bitcode/sepgsql/selinux.bc $INS_DIR/lib/bitcode/sepgsql/uavc.bc $INS_DIR/lib/bitcode/sslinfo.index.bc $INS_DIR/lib/bitcode/sslinfo/sslinfo.bc $INS_DIR/lib/bitcode/tablefunc.index.bc $INS_DIR/lib/bitcode/tablefunc/tablefunc.bc $INS_DIR/lib/bitcode/tcn.index.bc $INS_DIR/lib/bitcode/tcn/tcn.bc $INS_DIR/lib/bitcode/test_decoding.index.bc $INS_DIR/lib/bitcode/test_decoding/test_decoding.bc $INS_DIR/lib/bitcode/tsm_system_rows.index.bc $INS_DIR/lib/bitcode/tsm_system_rows/tsm_system_rows.bc $INS_DIR/lib/bitcode/tsm_system_time.index.bc $INS_DIR/lib/bitcode/tsm_system_time/tsm_system_time.bc $INS_DIR/lib/bitcode/unaccent.index.bc $INS_DIR/lib/bitcode/unaccent/unaccent.bc $INS_DIR/lib/bitcode/userlog.index.bc $INS_DIR/lib/bitcode/userlog/userlog.bc $INS_DIR/lib/bitcode/uuid-ossp.index.bc $INS_DIR/lib/bitcode/uuid-ossp/uuid-ossp.bc $INS_DIR/lib/bitcode/vci.index.bc $INS_DIR/lib/bitcode/vci/executor/vci_agg.bc $INS_DIR/lib/bitcode/vci/executor/vci_aggmergetranstype.bc $INS_DIR/lib/bitcode/vci/executor/vci_aggref.bc $INS_DIR/lib/bitcode/vci/executor/vci_executor.bc $INS_DIR/lib/bitcode/vci/executor/vci_fetch_column_store.bc $INS_DIR/lib/bitcode/vci/executor/vci_gather.bc $INS_DIR/lib/bitcode/vci/executor/vci_hothash.bc $INS_DIR/lib/bitcode/vci/executor/vci_param.bc $INS_DIR/lib/bitcode/vci/executor/vci_plan.bc $INS_DIR/lib/bitcode/vci/executor/vci_plan_func.bc $INS_DIR/lib/bitcode/vci/executor/vci_planner.bc $INS_DIR/lib/bitcode/vci/executor/vci_planner_preanalyze.bc $INS_DIR/lib/bitcode/vci/executor/vci_scan.bc $INS_DIR/lib/bitcode/vci/executor/vci_sort.bc $INS_DIR/lib/bitcode/vci/executor/vci_vector_executor.bc $INS_DIR/lib/bitcode/vci/parallel/pef.bc $INS_DIR/lib/bitcode/vci/parallel/vci_buddy.bc $INS_DIR/lib/bitcode/vci/parallel/vci_parallel_agg.bc $INS_DIR/lib/bitcode/vci/parallel/vci_parallel_common.bc $INS_DIR/lib/bitcode/vci/parallel/vci_parallel_daemon.bc $INS_DIR/lib/bitcode/vci/parallel/vci_parallel_gather.bc $INS_DIR/lib/bitcode/vci/parallel/vci_parallel_instrument.bc $INS_DIR/lib/bitcode/vci/parallel/vci_parallel_scan.bc $INS_DIR/lib/bitcode/vci/parallel/vci_parallel_schedule.bc $INS_DIR/lib/bitcode/vci/parallel/vci_parallel_sort.bc $INS_DIR/lib/bitcode/vci/parallel/vci_parallel_test.bc $INS_DIR/lib/bitcode/vci/parallel/vci_smc.bc $INS_DIR/lib/bitcode/vci/port/vci_linux.bc $INS_DIR/lib/bitcode/vci/port/vci_posix.bc $INS_DIR/lib/bitcode/vci/prewarm/pgx_prewarm_vci.bc $INS_DIR/lib/bitcode/vci/storage/vci_chunk.bc $INS_DIR/lib/bitcode/vci/storage/vci_cmp_lzvf.bc $INS_DIR/lib/bitcode/vci/storage/vci_cmp_rle.bc $INS_DIR/lib/bitcode/vci/storage/vci_columns.bc $INS_DIR/lib/bitcode/vci/storage/vci_columns_data.bc $INS_DIR/lib/bitcode/vci/storage/vci_fetch.bc $INS_DIR/lib/bitcode/vci/storage/vci_freelist.bc $INS_DIR/lib/bitcode/vci/storage/vci_index.bc $INS_DIR/lib/bitcode/vci/storage/vci_internal_view.bc $INS_DIR/lib/bitcode/vci/storage/vci_low_utils.bc $INS_DIR/lib/bitcode/vci/storage/vci_memory_entry.bc $INS_DIR/lib/bitcode/vci/storage/vci_ros.bc $INS_DIR/lib/bitcode/vci/storage/vci_ros_command.bc $INS_DIR/lib/bitcode/vci/storage/vci_ros_daemon.bc $INS_DIR/lib/bitcode/vci/storage/vci_ros_minmax.bc $INS_DIR/lib/bitcode/vci/storage/vci_tidcrid.bc $INS_DIR/lib/bitcode/vci/storage/vci_wos.bc $INS_DIR/lib/bitcode/vci/storage/vci_xact.bc $INS_DIR/lib/bitcode/vci/utils/vci_coverage.bc $INS_DIR/lib/bitcode/vci/utils/vci_symbols.bc $INS_DIR/lib/bitcode/vci/utils/vci_topnsort.bc $INS_DIR/lib/bitcode/vci/vci_main.bc $INS_DIR/lib/bitcode/vci/vci_read_guc.bc $INS_DIR/lib/bitcode/vci/vci_shmem.bc $INS_DIR/lib/bitcode/vci/vci_supported_funcs.bc $INS_DIR/lib/bitcode/vci/vci_supported_types.bc $INS_DIR/lib/bitcode/vci_inspect.index.bc $INS_DIR/lib/bitcode/vci_inspect/vci_inspect.bc $INS_DIR/lib/bitcode/vci_inspect/vci_inspect_bgw.bc $INS_DIR/lib/bitcode/vci_inspect/vci_inspect_exec.bc $INS_DIR/lib/bitcode/vci_inspect/vci_inspect_main.bc $INS_DIR/lib/bitcode/watchdog.index.bc $INS_DIR/lib/bitcode/watchdog/hb.bc $INS_DIR/lib/bitcode/watchdog/pqmh.bc $INS_DIR/lib/bitcode/watchdog/watchdog.bc $INS_DIR/lib/bloom.so $INS_DIR/lib/btree_gin.so $INS_DIR/lib/btree_gist.so $INS_DIR/lib/citext.so $INS_DIR/lib/cube.so $INS_DIR/lib/cyrillic_and_mic.so $INS_DIR/lib/dblink.so $INS_DIR/lib/dict_int.so $INS_DIR/lib/dict_snowball.so $INS_DIR/lib/dict_xsyn.so $INS_DIR/lib/earthdistance.so $INS_DIR/lib/euc2004_sjis2004.so $INS_DIR/lib/euc_cn_and_mic.so $INS_DIR/lib/euc_jp_and_sjis.so $INS_DIR/lib/euc_kr_and_mic.so $INS_DIR/lib/euc_tw_and_big5.so $INS_DIR/lib/file_fdw.so $INS_DIR/lib/fuzzystrmatch.so $INS_DIR/lib/hstore.so $INS_DIR/lib/hstore_plperl.so $INS_DIR/lib/hstore_plpython3.so $INS_DIR/lib/iconv/librdb2bicv64_sv.so.1 $INS_DIR/lib/iconv/rdb2b11icv64_sv.so $INS_DIR/lib/iconv/rdb2b23icv64_sv.so $INS_DIR/lib/iconv/rdb2b25icv64_sv.so $INS_DIR/lib/iconv/rdb2b27icv64_sv.so $INS_DIR/lib/iconv/rdb2b34icv64_sv.so $INS_DIR/lib/iconv/rdb2b35icv64_sv.so $INS_DIR/lib/iconv/rdb2b77icv64_sv.so $INS_DIR/lib/iconv/rdb2bver.conf $INS_DIR/lib/insert_username.so $INS_DIR/lib/isn.so $INS_DIR/lib/iso_and_ebcdic.so $INS_DIR/lib/jsonb_plperl.so $INS_DIR/lib/jsonb_plpython3.so $INS_DIR/lib/latin2_and_win1250.so $INS_DIR/lib/latin_and_mic.so $INS_DIR/lib/libChangeCorePathNative.so $INS_DIR/lib/libCustomSysloggerNative.so $INS_DIR/lib/libSingleQueryExecutorNative.so $INS_DIR/lib/libcom_err.so.3 $INS_DIR/lib/libcrypto.so.1.1 $INS_DIR/lib/libecpg.a $INS_DIR/lib/libecpg.so.6.12 $INS_DIR/lib/libecpg_compat.a $INS_DIR/lib/libecpg_compat.so.3.12 $INS_DIR/lib/libedit.so.0 $INS_DIR/lib/libevent_core-2.1.so.7.0.0 $INS_DIR/lib/libgssapi_krb5.so.2 $INS_DIR/lib/libk5crypto.so.3 $INS_DIR/lib/libkrb5.so.3 $INS_DIR/lib/libkrb5support.so.0 $INS_DIR/lib/liblber-2.4.so.2 $INS_DIR/lib/libldap-2.4.so.2 $INS_DIR/lib/libldap_r-2.4.so.2 $INS_DIR/lib/libpgcommon.a $INS_DIR/lib/libpgcommon_shlib.a $INS_DIR/lib/libpgfeutils.a $INS_DIR/lib/libpgport.a $INS_DIR/lib/libpgport_shlib.a $INS_DIR/lib/libpgtypes.a $INS_DIR/lib/libpgtypes.so.3.12 $INS_DIR/lib/libpq.a $INS_DIR/lib/libpq.so.5.12 $INS_DIR/lib/libpqwalreceiver.so $INS_DIR/lib/libssl.so.1.1 $INS_DIR/lib/libuuid.so.16 $INS_DIR/lib/libxml2.so.2 $INS_DIR/lib/libxslt.so.1 $INS_DIR/lib/llvmjit-vsn9.so $INS_DIR/lib/llvmjit-vsn9_types.bc $INS_DIR/lib/llvmjit.so $INS_DIR/lib/llvmjit_types.bc $INS_DIR/lib/lo.so $INS_DIR/lib/ltree.so $INS_DIR/lib/ltree_plpython3.so $INS_DIR/lib/mc_common.jar $INS_DIR/lib/mc_core.jar $INS_DIR/lib/moddatetime.so $INS_DIR/lib/pageinspect.so $INS_DIR/lib/passwordcheck.so $INS_DIR/lib/pg_buffercache.so $INS_DIR/lib/pg_freespacemap.so $INS_DIR/lib/pg_prewarm.so $INS_DIR/lib/pg_stat_statements.so $INS_DIR/lib/pg_trgm.so $INS_DIR/lib/pg_visibility.so $INS_DIR/lib/pgcrypto.so $INS_DIR/lib/pgoutput.so $INS_DIR/lib/pgrowlocks.so $INS_DIR/lib/pgstattuple.so $INS_DIR/lib/pgx_datamasking.so $INS_DIR/lib/pgx_loader.so $INS_DIR/lib/pgx_oracle_compatible.so $INS_DIR/lib/pgxml.so $INS_DIR/lib/pgxs/config/install-sh $INS_DIR/lib/pgxs/config/missing $INS_DIR/lib/pgxs/src/Makefile.global $INS_DIR/lib/pgxs/src/Makefile.port $INS_DIR/lib/pgxs/src/Makefile.shlib $INS_DIR/lib/pgxs/src/makefiles/pgxs.mk $INS_DIR/lib/pgxs/src/nls-global.mk $INS_DIR/lib/pgxs/src/pl/plpython/regress-python3-mangle.mk $INS_DIR/lib/pgxs/src/test/regress/pg_regress $INS_DIR/lib/pkgconfig/libecpg.pc $INS_DIR/lib/pkgconfig/libecpg_compat.pc $INS_DIR/lib/pkgconfig/libpgtypes.pc $INS_DIR/lib/pkgconfig/libpq.pc $INS_DIR/lib/plperl.so $INS_DIR/lib/plpgsql.so $INS_DIR/lib/plpython3.so $INS_DIR/lib/pltcl.so $INS_DIR/lib/postgres_fdw.so $INS_DIR/lib/refint.so $INS_DIR/lib/seg.so $INS_DIR/lib/sepgsql.so $INS_DIR/lib/sslinfo.so $INS_DIR/lib/tablefunc.so $INS_DIR/lib/tcn.so $INS_DIR/lib/test_decoding.so $INS_DIR/lib/tsm_system_rows.so $INS_DIR/lib/tsm_system_time.so $INS_DIR/lib/unaccent.so $INS_DIR/lib/userlog.so $INS_DIR/lib/utf8_and_ascii.so $INS_DIR/lib/utf8_and_big5.so $INS_DIR/lib/utf8_and_cyrillic.so $INS_DIR/lib/utf8_and_ebcdic.so $INS_DIR/lib/utf8_and_edfutf.so $INS_DIR/lib/utf8_and_euc2004.so $INS_DIR/lib/utf8_and_euc_cn.so $INS_DIR/lib/utf8_and_euc_jp.so $INS_DIR/lib/utf8_and_euc_kr.so $INS_DIR/lib/utf8_and_euc_tw.so $INS_DIR/lib/utf8_and_gb18030.so $INS_DIR/lib/utf8_and_gbk.so $INS_DIR/lib/utf8_and_iso8859.so $INS_DIR/lib/utf8_and_iso8859_1.so $INS_DIR/lib/utf8_and_johab.so $INS_DIR/lib/utf8_and_sjis.so $INS_DIR/lib/utf8_and_sjis2004.so $INS_DIR/lib/utf8_and_uhc.so $INS_DIR/lib/utf8_and_win.so $INS_DIR/lib/uuid-ossp.so $INS_DIR/lib/vci.so $INS_DIR/lib/vci_inspect.so $INS_DIR/lib/watchdog.so $INS_DIR/mc/jdbc/lib/postgresql-jdbc42.jar $INS_DIR/mc/jre/COPYRIGHT $INS_DIR/mc/jre/LICENSE $INS_DIR/mc/jre/README $INS_DIR/mc/jre/THIRDPARTYLICENSEREADME.txt $INS_DIR/mc/jre/Welcome.html $INS_DIR/mc/jre/bin/java $INS_DIR/mc/jre/bin/jjs $INS_DIR/mc/jre/bin/keytool $INS_DIR/mc/jre/bin/orbd $INS_DIR/mc/jre/bin/pack200 $INS_DIR/mc/jre/bin/policytool $INS_DIR/mc/jre/bin/rmid $INS_DIR/mc/jre/bin/rmiregistry $INS_DIR/mc/jre/bin/servertool $INS_DIR/mc/jre/bin/tnameserv $INS_DIR/mc/jre/bin/unpack200 $INS_DIR/mc/jre/lib/amd64/fjvm/Xusage.txt $INS_DIR/mc/jre/lib/amd64/fjvm/fjvmrc $INS_DIR/mc/jre/lib/amd64/fjvm/libjvm.so $INS_DIR/mc/jre/lib/amd64/jli/libjli.so $INS_DIR/mc/jre/lib/amd64/jvm.cfg $INS_DIR/mc/jre/lib/amd64/libawt.so $INS_DIR/mc/jre/lib/amd64/libawt_headless.so $INS_DIR/mc/jre/lib/amd64/libawt_xawt.so $INS_DIR/mc/jre/lib/amd64/libdcpr.so $INS_DIR/mc/jre/lib/amd64/libdt_socket.so $INS_DIR/mc/jre/lib/amd64/libfontmanager.so $INS_DIR/mc/jre/lib/amd64/libhprof.so $INS_DIR/mc/jre/lib/amd64/libinstrument.so $INS_DIR/mc/jre/lib/amd64/libj2gss.so $INS_DIR/mc/jre/lib/amd64/libj2pcsc.so $INS_DIR/mc/jre/lib/amd64/libj2pkcs11.so $INS_DIR/mc/jre/lib/amd64/libjaas_unix.so $INS_DIR/mc/jre/lib/amd64/libjava.so $INS_DIR/mc/jre/lib/amd64/libjava_crw_demo.so $INS_DIR/mc/jre/lib/amd64/libjawt.so $INS_DIR/mc/jre/lib/amd64/libjdwp.so $INS_DIR/mc/jre/lib/amd64/libjpeg.so $INS_DIR/mc/jre/lib/amd64/libjsdt.so $INS_DIR/mc/jre/lib/amd64/libjsig.so $INS_DIR/mc/jre/lib/amd64/libjsound.so $INS_DIR/mc/jre/lib/amd64/libjsoundalsa.so $INS_DIR/mc/jre/lib/amd64/liblcms.so $INS_DIR/mc/jre/lib/amd64/libmanagement.so $INS_DIR/mc/jre/lib/amd64/libmlib_image.so $INS_DIR/mc/jre/lib/amd64/libnet.so $INS_DIR/mc/jre/lib/amd64/libnio.so $INS_DIR/mc/jre/lib/amd64/libnpt.so $INS_DIR/mc/jre/lib/amd64/libsctp.so $INS_DIR/mc/jre/lib/amd64/libsplashscreen.so $INS_DIR/mc/jre/lib/amd64/libsunec.so $INS_DIR/mc/jre/lib/amd64/libt2k.so $INS_DIR/mc/jre/lib/amd64/libunpack.so $INS_DIR/mc/jre/lib/amd64/libverify.so $INS_DIR/mc/jre/lib/amd64/libzip.so $INS_DIR/mc/jre/lib/calendars.properties $INS_DIR/mc/jre/lib/charsets.jar $INS_DIR/mc/jre/lib/classlist $INS_DIR/mc/jre/lib/cmm/CIEXYZ.pf $INS_DIR/mc/jre/lib/cmm/GRAY.pf $INS_DIR/mc/jre/lib/cmm/LINEAR_RGB.pf $INS_DIR/mc/jre/lib/cmm/PYCC.pf $INS_DIR/mc/jre/lib/cmm/sRGB.pf $INS_DIR/mc/jre/lib/content-types.properties $INS_DIR/mc/jre/lib/currency.data $INS_DIR/mc/jre/lib/ext/cldrdata.jar $INS_DIR/mc/jre/lib/ext/dnsns.jar $INS_DIR/mc/jre/lib/ext/jaccess.jar $INS_DIR/mc/jre/lib/ext/localedata.jar $INS_DIR/mc/jre/lib/ext/meta-index $INS_DIR/mc/jre/lib/ext/nashorn.jar $INS_DIR/mc/jre/lib/ext/sunec.jar $INS_DIR/mc/jre/lib/ext/sunjce_provider.jar $INS_DIR/mc/jre/lib/ext/sunpkcs11.jar $INS_DIR/mc/jre/lib/ext/zipfs.jar $INS_DIR/mc/jre/lib/flavormap.properties $INS_DIR/mc/jre/lib/fontconfig.RedHat.5.bfc $INS_DIR/mc/jre/lib/fontconfig.RedHat.5.properties.src $INS_DIR/mc/jre/lib/fontconfig.RedHat.6.bfc $INS_DIR/mc/jre/lib/fontconfig.RedHat.6.properties.src $INS_DIR/mc/jre/lib/fontconfig.SuSE.10.bfc $INS_DIR/mc/jre/lib/fontconfig.SuSE.10.properties.src $INS_DIR/mc/jre/lib/fontconfig.SuSE.11.bfc $INS_DIR/mc/jre/lib/fontconfig.SuSE.11.properties.src $INS_DIR/mc/jre/lib/fontconfig.Turbo.bfc $INS_DIR/mc/jre/lib/fontconfig.Turbo.properties.src $INS_DIR/mc/jre/lib/fontconfig.bfc $INS_DIR/mc/jre/lib/fontconfig.properties.src $INS_DIR/mc/jre/lib/fonts/LucidaBrightDemiBold.ttf $INS_DIR/mc/jre/lib/fonts/LucidaBrightDemiItalic.ttf $INS_DIR/mc/jre/lib/fonts/LucidaBrightItalic.ttf $INS_DIR/mc/jre/lib/fonts/LucidaBrightRegular.ttf $INS_DIR/mc/jre/lib/fonts/LucidaSansDemiBold.ttf $INS_DIR/mc/jre/lib/fonts/LucidaSansRegular.ttf $INS_DIR/mc/jre/lib/fonts/LucidaTypewriterBold.ttf $INS_DIR/mc/jre/lib/fonts/LucidaTypewriterRegular.ttf $INS_DIR/mc/jre/lib/fonts/fonts.dir $INS_DIR/mc/jre/lib/hijrah-config-umalqura.properties $INS_DIR/mc/jre/lib/images/cursors/cursors.properties $INS_DIR/mc/jre/lib/images/cursors/invalid32x32.gif $INS_DIR/mc/jre/lib/images/cursors/motif_CopyDrop32x32.gif $INS_DIR/mc/jre/lib/images/cursors/motif_CopyNoDrop32x32.gif $INS_DIR/mc/jre/lib/images/cursors/motif_LinkDrop32x32.gif $INS_DIR/mc/jre/lib/images/cursors/motif_LinkNoDrop32x32.gif $INS_DIR/mc/jre/lib/images/cursors/motif_MoveDrop32x32.gif $INS_DIR/mc/jre/lib/images/cursors/motif_MoveNoDrop32x32.gif $INS_DIR/mc/jre/lib/jce.jar $INS_DIR/mc/jre/lib/jexec $INS_DIR/mc/jre/lib/jsse.jar $INS_DIR/mc/jre/lib/jvm.hprof.txt $INS_DIR/mc/jre/lib/logging.properties $INS_DIR/mc/jre/lib/management-agent.jar $INS_DIR/mc/jre/lib/management/jmxremote.access $INS_DIR/mc/jre/lib/management/jmxremote.password.template $INS_DIR/mc/jre/lib/management/management.properties $INS_DIR/mc/jre/lib/management/snmp.acl.template $INS_DIR/mc/jre/lib/meta-index $INS_DIR/mc/jre/lib/net.properties $INS_DIR/mc/jre/lib/oblique-fonts/LucidaSansDemiOblique.ttf $INS_DIR/mc/jre/lib/oblique-fonts/LucidaSansOblique.ttf $INS_DIR/mc/jre/lib/oblique-fonts/LucidaTypewriterBoldOblique.ttf $INS_DIR/mc/jre/lib/oblique-fonts/LucidaTypewriterOblique.ttf $INS_DIR/mc/jre/lib/oblique-fonts/fonts.dir $INS_DIR/mc/jre/lib/psfont.properties.ja $INS_DIR/mc/jre/lib/psfontj2d.properties $INS_DIR/mc/jre/lib/resources.jar $INS_DIR/mc/jre/lib/rt.jar $INS_DIR/mc/jre/lib/security/blacklist $INS_DIR/mc/jre/lib/security/blacklisted.certs $INS_DIR/mc/jre/lib/security/cacerts $INS_DIR/mc/jre/lib/security/java.policy $INS_DIR/mc/jre/lib/security/java.security $INS_DIR/mc/jre/lib/security/policy/limited/US_export_policy.jar $INS_DIR/mc/jre/lib/security/policy/limited/local_policy.jar $INS_DIR/mc/jre/lib/security/policy/unlimited/US_export_policy.jar $INS_DIR/mc/jre/lib/security/policy/unlimited/local_policy.jar $INS_DIR/mc/jre/lib/security/trusted.libraries $INS_DIR/mc/jre/lib/sound.properties $INS_DIR/mc/jre/lib/tzdb.dat $INS_DIR/mc/jre/man/ja_JP.UTF-8/man1/java.1 $INS_DIR/mc/jre/man/ja_JP.UTF-8/man1/javaws.1 $INS_DIR/mc/jre/man/ja_JP.UTF-8/man1/jjs.1 $INS_DIR/mc/jre/man/ja_JP.UTF-8/man1/keytool.1 $INS_DIR/mc/jre/man/ja_JP.UTF-8/man1/orbd.1 $INS_DIR/mc/jre/man/ja_JP.UTF-8/man1/pack200.1 $INS_DIR/mc/jre/man/ja_JP.UTF-8/man1/policytool.1 $INS_DIR/mc/jre/man/ja_JP.UTF-8/man1/rmid.1 $INS_DIR/mc/jre/man/ja_JP.UTF-8/man1/rmiregistry.1 $INS_DIR/mc/jre/man/ja_JP.UTF-8/man1/servertool.1 $INS_DIR/mc/jre/man/ja_JP.UTF-8/man1/tnameserv.1 $INS_DIR/mc/jre/man/ja_JP.UTF-8/man1/unpack200.1 $INS_DIR/mc/jre/man/man1/java.1 $INS_DIR/mc/jre/man/man1/javaws.1 $INS_DIR/mc/jre/man/man1/jjs.1 $INS_DIR/mc/jre/man/man1/keytool.1 $INS_DIR/mc/jre/man/man1/orbd.1 $INS_DIR/mc/jre/man/man1/pack200.1 $INS_DIR/mc/jre/man/man1/policytool.1 $INS_DIR/mc/jre/man/man1/rmid.1 $INS_DIR/mc/jre/man/man1/rmiregistry.1 $INS_DIR/mc/jre/man/man1/servertool.1 $INS_DIR/mc/jre/man/man1/tnameserv.1 $INS_DIR/mc/jre/man/man1/unpack200.1 $INS_DIR/mc/jre/release $INS_DIR/mc/jre/tools/fjtrace/Jakarta-Regexp-License.txt $INS_DIR/mc/jre/tools/fjtrace/fjtrace.conf $INS_DIR/mc/jre/tools/fjtrace/jakarta-regexp-1.2.jar $INS_DIR/mc/jre/tools/fjtrace/libfjtrace.so $INS_DIR/mc/jre/tools/fjtrace/libtraceagent.so $INS_DIR/mc/jre/tools/fjtrace/mt.jar $INS_DIR/mc/jre/tools/jheap/jheap $INS_DIR/share/cobol_entry.info $INS_DIR/share/contrib/sepgsql.sql $INS_DIR/share/copy_command.archive.sh.sample $INS_DIR/share/copy_command.esf_acm1.sh.sample $INS_DIR/share/copy_command.esf_acm2.sh.sample $INS_DIR/share/doc/extension/COPYRIGHT.orafce $INS_DIR/share/doc/extension/INSTALL.orafce $INS_DIR/share/doc/extension/README.asciidoc $INS_DIR/share/doc/extension/autoinc.example $INS_DIR/share/doc/extension/insert_username.example $INS_DIR/share/doc/extension/moddatetime.example $INS_DIR/share/doc/extension/refint.example $INS_DIR/share/doc/html/acronyms.html $INS_DIR/share/doc/html/admin.html $INS_DIR/share/doc/html/adminpack.html $INS_DIR/share/doc/html/amcheck.html $INS_DIR/share/doc/html/app-clusterdb.html $INS_DIR/share/doc/html/app-createdb.html $INS_DIR/share/doc/html/app-createuser.html $INS_DIR/share/doc/html/app-dropdb.html $INS_DIR/share/doc/html/app-dropuser.html $INS_DIR/share/doc/html/app-ecpg.html $INS_DIR/share/doc/html/app-initdb.html $INS_DIR/share/doc/html/app-pg-ctl.html $INS_DIR/share/doc/html/app-pg-dumpall.html $INS_DIR/share/doc/html/app-pg-isready.html $INS_DIR/share/doc/html/app-pgbasebackup.html $INS_DIR/share/doc/html/app-pgchecksums.html $INS_DIR/share/doc/html/app-pgconfig.html $INS_DIR/share/doc/html/app-pgcontroldata.html $INS_DIR/share/doc/html/app-pgdump.html $INS_DIR/share/doc/html/app-pgreceivewal.html $INS_DIR/share/doc/html/app-pgreceivexlog.html $INS_DIR/share/doc/html/app-pgrecvlogical.html $INS_DIR/share/doc/html/app-pgresetwal.html $INS_DIR/share/doc/html/app-pgresetxlog.html $INS_DIR/share/doc/html/app-pgrestore.html $INS_DIR/share/doc/html/app-pgrewind.html $INS_DIR/share/doc/html/app-postgres.html $INS_DIR/share/doc/html/app-postmaster.html $INS_DIR/share/doc/html/app-psql.html $INS_DIR/share/doc/html/app-reindexdb.html $INS_DIR/share/doc/html/app-vacuumdb.html $INS_DIR/share/doc/html/appendix-obsolete.html $INS_DIR/share/doc/html/appendixes.html $INS_DIR/share/doc/html/applevel-consistency.html $INS_DIR/share/doc/html/arrays.html $INS_DIR/share/doc/html/auth-bsd.html $INS_DIR/share/doc/html/auth-cert.html $INS_DIR/share/doc/html/auth-delay.html $INS_DIR/share/doc/html/auth-ident.html $INS_DIR/share/doc/html/auth-ldap.html $INS_DIR/share/doc/html/auth-methods.html $INS_DIR/share/doc/html/auth-pam.html $INS_DIR/share/doc/html/auth-password.html $INS_DIR/share/doc/html/auth-peer.html $INS_DIR/share/doc/html/auth-pg-hba-conf.html $INS_DIR/share/doc/html/auth-radius.html $INS_DIR/share/doc/html/auth-trust.html $INS_DIR/share/doc/html/auth-username-maps.html $INS_DIR/share/doc/html/auto-explain.html $INS_DIR/share/doc/html/backup-dump.html $INS_DIR/share/doc/html/backup-file.html $INS_DIR/share/doc/html/backup.html $INS_DIR/share/doc/html/bgworker.html $INS_DIR/share/doc/html/biblio.html $INS_DIR/share/doc/html/bki-commands.html $INS_DIR/share/doc/html/bki-example.html $INS_DIR/share/doc/html/bki-format.html $INS_DIR/share/doc/html/bki-structure.html $INS_DIR/share/doc/html/bki.html $INS_DIR/share/doc/html/bloom.html $INS_DIR/share/doc/html/bookindex.html $INS_DIR/share/doc/html/brin-builtin-opclasses.html $INS_DIR/share/doc/html/brin-extensibility.html $INS_DIR/share/doc/html/brin-intro.html $INS_DIR/share/doc/html/brin.html $INS_DIR/share/doc/html/btree-behavior.html $INS_DIR/share/doc/html/btree-gin.html $INS_DIR/share/doc/html/btree-gist.html $INS_DIR/share/doc/html/btree-implementation.html $INS_DIR/share/doc/html/btree-intro.html $INS_DIR/share/doc/html/btree-support-funcs.html $INS_DIR/share/doc/html/btree.html $INS_DIR/share/doc/html/bug-reporting.html $INS_DIR/share/doc/html/catalog-pg-aggregate.html $INS_DIR/share/doc/html/catalog-pg-am.html $INS_DIR/share/doc/html/catalog-pg-amop.html $INS_DIR/share/doc/html/catalog-pg-amproc.html $INS_DIR/share/doc/html/catalog-pg-attrdef.html $INS_DIR/share/doc/html/catalog-pg-attribute.html $INS_DIR/share/doc/html/catalog-pg-auth-members.html $INS_DIR/share/doc/html/catalog-pg-authid.html $INS_DIR/share/doc/html/catalog-pg-cast.html $INS_DIR/share/doc/html/catalog-pg-class.html $INS_DIR/share/doc/html/catalog-pg-collation.html $INS_DIR/share/doc/html/catalog-pg-constraint.html $INS_DIR/share/doc/html/catalog-pg-conversion.html $INS_DIR/share/doc/html/catalog-pg-database.html $INS_DIR/share/doc/html/catalog-pg-db-role-setting.html $INS_DIR/share/doc/html/catalog-pg-default-acl.html $INS_DIR/share/doc/html/catalog-pg-depend.html $INS_DIR/share/doc/html/catalog-pg-description.html $INS_DIR/share/doc/html/catalog-pg-enum.html $INS_DIR/share/doc/html/catalog-pg-event-trigger.html $INS_DIR/share/doc/html/catalog-pg-extension.html $INS_DIR/share/doc/html/catalog-pg-foreign-data-wrapper.html $INS_DIR/share/doc/html/catalog-pg-foreign-server.html $INS_DIR/share/doc/html/catalog-pg-foreign-table.html $INS_DIR/share/doc/html/catalog-pg-index.html $INS_DIR/share/doc/html/catalog-pg-inherits.html $INS_DIR/share/doc/html/catalog-pg-init-privs.html $INS_DIR/share/doc/html/catalog-pg-language.html $INS_DIR/share/doc/html/catalog-pg-largeobject-metadata.html $INS_DIR/share/doc/html/catalog-pg-largeobject.html $INS_DIR/share/doc/html/catalog-pg-namespace.html $INS_DIR/share/doc/html/catalog-pg-opclass.html $INS_DIR/share/doc/html/catalog-pg-operator.html $INS_DIR/share/doc/html/catalog-pg-opfamily.html $INS_DIR/share/doc/html/catalog-pg-partitioned-table.html $INS_DIR/share/doc/html/catalog-pg-pltemplate.html $INS_DIR/share/doc/html/catalog-pg-policy.html $INS_DIR/share/doc/html/catalog-pg-proc.html $INS_DIR/share/doc/html/catalog-pg-publication-rel.html $INS_DIR/share/doc/html/catalog-pg-publication.html $INS_DIR/share/doc/html/catalog-pg-range.html $INS_DIR/share/doc/html/catalog-pg-replication-origin.html $INS_DIR/share/doc/html/catalog-pg-rewrite.html $INS_DIR/share/doc/html/catalog-pg-seclabel.html $INS_DIR/share/doc/html/catalog-pg-sequence.html $INS_DIR/share/doc/html/catalog-pg-shdepend.html $INS_DIR/share/doc/html/catalog-pg-shdescription.html $INS_DIR/share/doc/html/catalog-pg-shseclabel.html $INS_DIR/share/doc/html/catalog-pg-statistic-ext-data.html $INS_DIR/share/doc/html/catalog-pg-statistic-ext.html $INS_DIR/share/doc/html/catalog-pg-statistic.html $INS_DIR/share/doc/html/catalog-pg-subscription-rel.html $INS_DIR/share/doc/html/catalog-pg-subscription.html $INS_DIR/share/doc/html/catalog-pg-tablespace.html $INS_DIR/share/doc/html/catalog-pg-transform.html $INS_DIR/share/doc/html/catalog-pg-trigger.html $INS_DIR/share/doc/html/catalog-pg-ts-config-map.html $INS_DIR/share/doc/html/catalog-pg-ts-config.html $INS_DIR/share/doc/html/catalog-pg-ts-dict.html $INS_DIR/share/doc/html/catalog-pg-ts-parser.html $INS_DIR/share/doc/html/catalog-pg-ts-template.html $INS_DIR/share/doc/html/catalog-pg-type.html $INS_DIR/share/doc/html/catalog-pg-user-mapping.html $INS_DIR/share/doc/html/catalogs-overview.html $INS_DIR/share/doc/html/catalogs.html $INS_DIR/share/doc/html/charset.html $INS_DIR/share/doc/html/citext.html $INS_DIR/share/doc/html/client-authentication-problems.html $INS_DIR/share/doc/html/client-authentication.html $INS_DIR/share/doc/html/client-interfaces.html $INS_DIR/share/doc/html/collation.html $INS_DIR/share/doc/html/config-setting.html $INS_DIR/share/doc/html/connect-estab.html $INS_DIR/share/doc/html/continuous-archiving.html $INS_DIR/share/doc/html/contrib-dblink-build-sql-delete.html $INS_DIR/share/doc/html/contrib-dblink-build-sql-insert.html $INS_DIR/share/doc/html/contrib-dblink-build-sql-update.html $INS_DIR/share/doc/html/contrib-dblink-cancel-query.html $INS_DIR/share/doc/html/contrib-dblink-close.html $INS_DIR/share/doc/html/contrib-dblink-connect-u.html $INS_DIR/share/doc/html/contrib-dblink-connect.html $INS_DIR/share/doc/html/contrib-dblink-disconnect.html $INS_DIR/share/doc/html/contrib-dblink-error-message.html $INS_DIR/share/doc/html/contrib-dblink-exec.html $INS_DIR/share/doc/html/contrib-dblink-fetch.html $INS_DIR/share/doc/html/contrib-dblink-function.html $INS_DIR/share/doc/html/contrib-dblink-get-connections.html $INS_DIR/share/doc/html/contrib-dblink-get-notify.html $INS_DIR/share/doc/html/contrib-dblink-get-pkey.html $INS_DIR/share/doc/html/contrib-dblink-get-result.html $INS_DIR/share/doc/html/contrib-dblink-is-busy.html $INS_DIR/share/doc/html/contrib-dblink-open.html $INS_DIR/share/doc/html/contrib-dblink-send-query.html $INS_DIR/share/doc/html/contrib-prog-client.html $INS_DIR/share/doc/html/contrib-prog-server.html $INS_DIR/share/doc/html/contrib-prog.html $INS_DIR/share/doc/html/contrib-spi.html $INS_DIR/share/doc/html/contrib.html $INS_DIR/share/doc/html/creating-cluster.html $INS_DIR/share/doc/html/cube.html $INS_DIR/share/doc/html/custom-scan-execution.html $INS_DIR/share/doc/html/custom-scan-path.html $INS_DIR/share/doc/html/custom-scan-plan.html $INS_DIR/share/doc/html/custom-scan.html $INS_DIR/share/doc/html/database-roles.html $INS_DIR/share/doc/html/datatype-binary.html $INS_DIR/share/doc/html/datatype-bit.html $INS_DIR/share/doc/html/datatype-boolean.html $INS_DIR/share/doc/html/datatype-character.html $INS_DIR/share/doc/html/datatype-datetime.html $INS_DIR/share/doc/html/datatype-enum.html $INS_DIR/share/doc/html/datatype-geometric.html $INS_DIR/share/doc/html/datatype-json.html $INS_DIR/share/doc/html/datatype-money.html $INS_DIR/share/doc/html/datatype-net-types.html $INS_DIR/share/doc/html/datatype-numeric.html $INS_DIR/share/doc/html/datatype-oid.html $INS_DIR/share/doc/html/datatype-pg-lsn.html $INS_DIR/share/doc/html/datatype-pseudo.html $INS_DIR/share/doc/html/datatype-textsearch.html $INS_DIR/share/doc/html/datatype-uuid.html $INS_DIR/share/doc/html/datatype-xml.html $INS_DIR/share/doc/html/datatype.html $INS_DIR/share/doc/html/datetime-appendix.html $INS_DIR/share/doc/html/datetime-config-files.html $INS_DIR/share/doc/html/datetime-input-rules.html $INS_DIR/share/doc/html/datetime-invalid-input.html $INS_DIR/share/doc/html/datetime-julian-dates.html $INS_DIR/share/doc/html/datetime-keywords.html $INS_DIR/share/doc/html/datetime-posix-timezone-specs.html $INS_DIR/share/doc/html/datetime-units-history.html $INS_DIR/share/doc/html/dblink.html $INS_DIR/share/doc/html/ddl-alter.html $INS_DIR/share/doc/html/ddl-basics.html $INS_DIR/share/doc/html/ddl-constraints.html $INS_DIR/share/doc/html/ddl-default.html $INS_DIR/share/doc/html/ddl-depend.html $INS_DIR/share/doc/html/ddl-foreign-data.html $INS_DIR/share/doc/html/ddl-generated-columns.html $INS_DIR/share/doc/html/ddl-inherit.html $INS_DIR/share/doc/html/ddl-others.html $INS_DIR/share/doc/html/ddl-partitioning.html $INS_DIR/share/doc/html/ddl-priv.html $INS_DIR/share/doc/html/ddl-rowsecurity.html $INS_DIR/share/doc/html/ddl-schemas.html $INS_DIR/share/doc/html/ddl-system-columns.html $INS_DIR/share/doc/html/ddl.html $INS_DIR/share/doc/html/default-roles.html $INS_DIR/share/doc/html/dict-int.html $INS_DIR/share/doc/html/dict-xsyn.html $INS_DIR/share/doc/html/different-replication-solutions.html $INS_DIR/share/doc/html/disk-full.html $INS_DIR/share/doc/html/disk-usage.html $INS_DIR/share/doc/html/diskusage.html $INS_DIR/share/doc/html/dml-delete.html $INS_DIR/share/doc/html/dml-insert.html $INS_DIR/share/doc/html/dml-returning.html $INS_DIR/share/doc/html/dml-update.html $INS_DIR/share/doc/html/dml.html $INS_DIR/share/doc/html/docguide-authoring.html $INS_DIR/share/doc/html/docguide-build.html $INS_DIR/share/doc/html/docguide-docbook.html $INS_DIR/share/doc/html/docguide-style.html $INS_DIR/share/doc/html/docguide-toolsets.html $INS_DIR/share/doc/html/docguide.html $INS_DIR/share/doc/html/domains.html $INS_DIR/share/doc/html/dynamic-trace.html $INS_DIR/share/doc/html/earthdistance.html $INS_DIR/share/doc/html/ecpg-commands.html $INS_DIR/share/doc/html/ecpg-concept.html $INS_DIR/share/doc/html/ecpg-connect.html $INS_DIR/share/doc/html/ecpg-cpp.html $INS_DIR/share/doc/html/ecpg-descriptors.html $INS_DIR/share/doc/html/ecpg-develop.html $INS_DIR/share/doc/html/ecpg-dynamic.html $INS_DIR/share/doc/html/ecpg-errors.html $INS_DIR/share/doc/html/ecpg-informix-compat.html $INS_DIR/share/doc/html/ecpg-library.html $INS_DIR/share/doc/html/ecpg-lo.html $INS_DIR/share/doc/html/ecpg-oracle-compat.html $INS_DIR/share/doc/html/ecpg-pgtypes.html $INS_DIR/share/doc/html/ecpg-preproc.html $INS_DIR/share/doc/html/ecpg-process.html $INS_DIR/share/doc/html/ecpg-sql-allocate-descriptor.html $INS_DIR/share/doc/html/ecpg-sql-commands.html $INS_DIR/share/doc/html/ecpg-sql-connect.html $INS_DIR/share/doc/html/ecpg-sql-deallocate-descriptor.html $INS_DIR/share/doc/html/ecpg-sql-declare.html $INS_DIR/share/doc/html/ecpg-sql-describe.html $INS_DIR/share/doc/html/ecpg-sql-disconnect.html $INS_DIR/share/doc/html/ecpg-sql-execute-immediate.html $INS_DIR/share/doc/html/ecpg-sql-get-descriptor.html $INS_DIR/share/doc/html/ecpg-sql-open.html $INS_DIR/share/doc/html/ecpg-sql-prepare.html $INS_DIR/share/doc/html/ecpg-sql-set-autocommit.html $INS_DIR/share/doc/html/ecpg-sql-set-connection.html $INS_DIR/share/doc/html/ecpg-sql-set-descriptor.html $INS_DIR/share/doc/html/ecpg-sql-type.html $INS_DIR/share/doc/html/ecpg-sql-var.html $INS_DIR/share/doc/html/ecpg-sql-whenever.html $INS_DIR/share/doc/html/ecpg-variables.html $INS_DIR/share/doc/html/ecpg.html $INS_DIR/share/doc/html/encryption-options.html $INS_DIR/share/doc/html/errcodes-appendix.html $INS_DIR/share/doc/html/error-message-reporting.html $INS_DIR/share/doc/html/error-style-guide.html $INS_DIR/share/doc/html/event-log-registration.html $INS_DIR/share/doc/html/event-trigger-definition.html $INS_DIR/share/doc/html/event-trigger-example.html $INS_DIR/share/doc/html/event-trigger-interface.html $INS_DIR/share/doc/html/event-trigger-matrix.html $INS_DIR/share/doc/html/event-trigger-table-rewrite-example.html $INS_DIR/share/doc/html/event-triggers.html $INS_DIR/share/doc/html/executor.html $INS_DIR/share/doc/html/explicit-joins.html $INS_DIR/share/doc/html/explicit-locking.html $INS_DIR/share/doc/html/extend-extensions.html $INS_DIR/share/doc/html/extend-how.html $INS_DIR/share/doc/html/extend-pgxs.html $INS_DIR/share/doc/html/extend-type-system.html $INS_DIR/share/doc/html/extend.html $INS_DIR/share/doc/html/external-admin-tools.html $INS_DIR/share/doc/html/external-extensions.html $INS_DIR/share/doc/html/external-interfaces.html $INS_DIR/share/doc/html/external-pl.html $INS_DIR/share/doc/html/external-projects.html $INS_DIR/share/doc/html/fdw-callbacks.html $INS_DIR/share/doc/html/fdw-functions.html $INS_DIR/share/doc/html/fdw-helpers.html $INS_DIR/share/doc/html/fdw-planning.html $INS_DIR/share/doc/html/fdw-row-locking.html $INS_DIR/share/doc/html/fdwhandler.html $INS_DIR/share/doc/html/features-sql-standard.html $INS_DIR/share/doc/html/features.html $INS_DIR/share/doc/html/file-fdw.html $INS_DIR/share/doc/html/functions-admin.html $INS_DIR/share/doc/html/functions-aggregate.html $INS_DIR/share/doc/html/functions-array.html $INS_DIR/share/doc/html/functions-binarystring.html $INS_DIR/share/doc/html/functions-bitstring.html $INS_DIR/share/doc/html/functions-comparison.html $INS_DIR/share/doc/html/functions-comparisons.html $INS_DIR/share/doc/html/functions-conditional.html $INS_DIR/share/doc/html/functions-datetime.html $INS_DIR/share/doc/html/functions-enum.html $INS_DIR/share/doc/html/functions-event-triggers.html $INS_DIR/share/doc/html/functions-formatting.html $INS_DIR/share/doc/html/functions-geometry.html $INS_DIR/share/doc/html/functions-info.html $INS_DIR/share/doc/html/functions-json.html $INS_DIR/share/doc/html/functions-logical.html $INS_DIR/share/doc/html/functions-matching.html $INS_DIR/share/doc/html/functions-math.html $INS_DIR/share/doc/html/functions-net.html $INS_DIR/share/doc/html/functions-range.html $INS_DIR/share/doc/html/functions-sequence.html $INS_DIR/share/doc/html/functions-srf.html $INS_DIR/share/doc/html/functions-statistics.html $INS_DIR/share/doc/html/functions-string.html $INS_DIR/share/doc/html/functions-subquery.html $INS_DIR/share/doc/html/functions-textsearch.html $INS_DIR/share/doc/html/functions-trigger.html $INS_DIR/share/doc/html/functions-window.html $INS_DIR/share/doc/html/functions-xml.html $INS_DIR/share/doc/html/functions.html $INS_DIR/share/doc/html/fuzzystrmatch.html $INS_DIR/share/doc/html/generic-wal.html $INS_DIR/share/doc/html/geqo-biblio.html $INS_DIR/share/doc/html/geqo-intro.html $INS_DIR/share/doc/html/geqo-intro2.html $INS_DIR/share/doc/html/geqo-pg-intro.html $INS_DIR/share/doc/html/geqo.html $INS_DIR/share/doc/html/gin-builtin-opclasses.html $INS_DIR/share/doc/html/gin-examples.html $INS_DIR/share/doc/html/gin-extensibility.html $INS_DIR/share/doc/html/gin-implementation.html $INS_DIR/share/doc/html/gin-intro.html $INS_DIR/share/doc/html/gin-limit.html $INS_DIR/share/doc/html/gin-tips.html $INS_DIR/share/doc/html/gin.html $INS_DIR/share/doc/html/gin.svg $INS_DIR/share/doc/html/gist-builtin-opclasses.html $INS_DIR/share/doc/html/gist-examples.html $INS_DIR/share/doc/html/gist-extensibility.html $INS_DIR/share/doc/html/gist-implementation.html $INS_DIR/share/doc/html/gist-intro.html $INS_DIR/share/doc/html/gist.html $INS_DIR/share/doc/html/git.html $INS_DIR/share/doc/html/gssapi-auth.html $INS_DIR/share/doc/html/gssapi-enc.html $INS_DIR/share/doc/html/hash-implementation.html $INS_DIR/share/doc/html/hash-index.html $INS_DIR/share/doc/html/hash-intro.html $INS_DIR/share/doc/html/high-availability.html $INS_DIR/share/doc/html/history.html $INS_DIR/share/doc/html/hot-standby.html $INS_DIR/share/doc/html/how-parallel-query-works.html $INS_DIR/share/doc/html/hstore.html $INS_DIR/share/doc/html/index-api.html $INS_DIR/share/doc/html/index-cost-estimation.html $INS_DIR/share/doc/html/index-functions.html $INS_DIR/share/doc/html/index-locking.html $INS_DIR/share/doc/html/index-scanning.html $INS_DIR/share/doc/html/index-unique-checks.html $INS_DIR/share/doc/html/index.html $INS_DIR/share/doc/html/indexam.html $INS_DIR/share/doc/html/indexes-bitmap-scans.html $INS_DIR/share/doc/html/indexes-collations.html $INS_DIR/share/doc/html/indexes-examine.html $INS_DIR/share/doc/html/indexes-expressional.html $INS_DIR/share/doc/html/indexes-index-only-scans.html $INS_DIR/share/doc/html/indexes-intro.html $INS_DIR/share/doc/html/indexes-multicolumn.html $INS_DIR/share/doc/html/indexes-opclass.html $INS_DIR/share/doc/html/indexes-ordering.html $INS_DIR/share/doc/html/indexes-partial.html $INS_DIR/share/doc/html/indexes-types.html $INS_DIR/share/doc/html/indexes-unique.html $INS_DIR/share/doc/html/indexes.html $INS_DIR/share/doc/html/information-schema.html $INS_DIR/share/doc/html/infoschema-administrable-role-authorizations.html $INS_DIR/share/doc/html/infoschema-applicable-roles.html $INS_DIR/share/doc/html/infoschema-attributes.html $INS_DIR/share/doc/html/infoschema-character-sets.html $INS_DIR/share/doc/html/infoschema-check-constraint-routine-usage.html $INS_DIR/share/doc/html/infoschema-check-constraints.html $INS_DIR/share/doc/html/infoschema-collation-character-set-applicab.html $INS_DIR/share/doc/html/infoschema-collations.html $INS_DIR/share/doc/html/infoschema-column-column-usage.html $INS_DIR/share/doc/html/infoschema-column-domain-usage.html $INS_DIR/share/doc/html/infoschema-column-options.html $INS_DIR/share/doc/html/infoschema-column-privileges.html $INS_DIR/share/doc/html/infoschema-column-udt-usage.html $INS_DIR/share/doc/html/infoschema-columns.html $INS_DIR/share/doc/html/infoschema-constraint-column-usage.html $INS_DIR/share/doc/html/infoschema-constraint-table-usage.html $INS_DIR/share/doc/html/infoschema-data-type-privileges.html $INS_DIR/share/doc/html/infoschema-datatypes.html $INS_DIR/share/doc/html/infoschema-domain-constraints.html $INS_DIR/share/doc/html/infoschema-domain-udt-usage.html $INS_DIR/share/doc/html/infoschema-domains.html $INS_DIR/share/doc/html/infoschema-element-types.html $INS_DIR/share/doc/html/infoschema-enabled-roles.html $INS_DIR/share/doc/html/infoschema-foreign-data-wrapper-options.html $INS_DIR/share/doc/html/infoschema-foreign-data-wrappers.html $INS_DIR/share/doc/html/infoschema-foreign-server-options.html $INS_DIR/share/doc/html/infoschema-foreign-servers.html $INS_DIR/share/doc/html/infoschema-foreign-table-options.html $INS_DIR/share/doc/html/infoschema-foreign-tables.html $INS_DIR/share/doc/html/infoschema-information-schema-catalog-name.html $INS_DIR/share/doc/html/infoschema-key-column-usage.html $INS_DIR/share/doc/html/infoschema-parameters.html $INS_DIR/share/doc/html/infoschema-referential-constraints.html $INS_DIR/share/doc/html/infoschema-role-column-grants.html $INS_DIR/share/doc/html/infoschema-role-routine-grants.html $INS_DIR/share/doc/html/infoschema-role-table-grants.html $INS_DIR/share/doc/html/infoschema-role-udt-grants.html $INS_DIR/share/doc/html/infoschema-role-usage-grants.html $INS_DIR/share/doc/html/infoschema-routine-privileges.html $INS_DIR/share/doc/html/infoschema-routines.html $INS_DIR/share/doc/html/infoschema-schema.html $INS_DIR/share/doc/html/infoschema-schemata.html $INS_DIR/share/doc/html/infoschema-sequences.html $INS_DIR/share/doc/html/infoschema-sql-features.html $INS_DIR/share/doc/html/infoschema-sql-implementation-info.html $INS_DIR/share/doc/html/infoschema-sql-languages.html $INS_DIR/share/doc/html/infoschema-sql-packages.html $INS_DIR/share/doc/html/infoschema-sql-parts.html $INS_DIR/share/doc/html/infoschema-sql-sizing-profiles.html $INS_DIR/share/doc/html/infoschema-sql-sizing.html $INS_DIR/share/doc/html/infoschema-table-constraints.html $INS_DIR/share/doc/html/infoschema-table-privileges.html $INS_DIR/share/doc/html/infoschema-tables.html $INS_DIR/share/doc/html/infoschema-transforms.html $INS_DIR/share/doc/html/infoschema-triggered-update-columns.html $INS_DIR/share/doc/html/infoschema-triggers.html $INS_DIR/share/doc/html/infoschema-udt-privileges.html $INS_DIR/share/doc/html/infoschema-usage-privileges.html $INS_DIR/share/doc/html/infoschema-user-defined-types.html $INS_DIR/share/doc/html/infoschema-user-mapping-options.html $INS_DIR/share/doc/html/infoschema-user-mappings.html $INS_DIR/share/doc/html/infoschema-view-column-usage.html $INS_DIR/share/doc/html/infoschema-view-routine-usage.html $INS_DIR/share/doc/html/infoschema-view-table-usage.html $INS_DIR/share/doc/html/infoschema-views.html $INS_DIR/share/doc/html/install-getsource.html $INS_DIR/share/doc/html/install-post.html $INS_DIR/share/doc/html/install-procedure.html $INS_DIR/share/doc/html/install-requirements.html $INS_DIR/share/doc/html/install-short.html $INS_DIR/share/doc/html/install-windows-full.html $INS_DIR/share/doc/html/install-windows.html $INS_DIR/share/doc/html/installation-platform-notes.html $INS_DIR/share/doc/html/installation.html $INS_DIR/share/doc/html/intagg.html $INS_DIR/share/doc/html/intarray.html $INS_DIR/share/doc/html/internals.html $INS_DIR/share/doc/html/intro-whatis.html $INS_DIR/share/doc/html/isn.html $INS_DIR/share/doc/html/jit-configuration.html $INS_DIR/share/doc/html/jit-decision.html $INS_DIR/share/doc/html/jit-extensibility.html $INS_DIR/share/doc/html/jit-reason.html $INS_DIR/share/doc/html/jit.html $INS_DIR/share/doc/html/kernel-resources.html $INS_DIR/share/doc/html/largeobjects.html $INS_DIR/share/doc/html/legalnotice.html $INS_DIR/share/doc/html/libpq-async.html $INS_DIR/share/doc/html/libpq-build.html $INS_DIR/share/doc/html/libpq-cancel.html $INS_DIR/share/doc/html/libpq-connect.html $INS_DIR/share/doc/html/libpq-control.html $INS_DIR/share/doc/html/libpq-copy.html $INS_DIR/share/doc/html/libpq-envars.html $INS_DIR/share/doc/html/libpq-events.html $INS_DIR/share/doc/html/libpq-example.html $INS_DIR/share/doc/html/libpq-exec.html $INS_DIR/share/doc/html/libpq-fastpath.html $INS_DIR/share/doc/html/libpq-ldap.html $INS_DIR/share/doc/html/libpq-misc.html $INS_DIR/share/doc/html/libpq-notice-processing.html $INS_DIR/share/doc/html/libpq-notify.html $INS_DIR/share/doc/html/libpq-pgpass.html $INS_DIR/share/doc/html/libpq-pgservice.html $INS_DIR/share/doc/html/libpq-single-row-mode.html $INS_DIR/share/doc/html/libpq-ssl.html $INS_DIR/share/doc/html/libpq-status.html $INS_DIR/share/doc/html/libpq-threading.html $INS_DIR/share/doc/html/libpq.html $INS_DIR/share/doc/html/limits.html $INS_DIR/share/doc/html/lo-examplesect.html $INS_DIR/share/doc/html/lo-funcs.html $INS_DIR/share/doc/html/lo-implementation.html $INS_DIR/share/doc/html/lo-interfaces.html $INS_DIR/share/doc/html/lo-intro.html $INS_DIR/share/doc/html/lo.html $INS_DIR/share/doc/html/locale.html $INS_DIR/share/doc/html/locking-indexes.html $INS_DIR/share/doc/html/log-shipping-alternative.html $INS_DIR/share/doc/html/logfile-maintenance.html $INS_DIR/share/doc/html/logical-replication-architecture.html $INS_DIR/share/doc/html/logical-replication-config.html $INS_DIR/share/doc/html/logical-replication-conflicts.html $INS_DIR/share/doc/html/logical-replication-monitoring.html $INS_DIR/share/doc/html/logical-replication-publication.html $INS_DIR/share/doc/html/logical-replication-quick-setup.html $INS_DIR/share/doc/html/logical-replication-restrictions.html $INS_DIR/share/doc/html/logical-replication-security.html $INS_DIR/share/doc/html/logical-replication-subscription.html $INS_DIR/share/doc/html/logical-replication.html $INS_DIR/share/doc/html/logicaldecoding-catalogs.html $INS_DIR/share/doc/html/logicaldecoding-example.html $INS_DIR/share/doc/html/logicaldecoding-explanation.html $INS_DIR/share/doc/html/logicaldecoding-output-plugin.html $INS_DIR/share/doc/html/logicaldecoding-sql.html $INS_DIR/share/doc/html/logicaldecoding-synchronous.html $INS_DIR/share/doc/html/logicaldecoding-walsender.html $INS_DIR/share/doc/html/logicaldecoding-writer.html $INS_DIR/share/doc/html/logicaldecoding.html $INS_DIR/share/doc/html/ltree.html $INS_DIR/share/doc/html/maintenance.html $INS_DIR/share/doc/html/manage-ag-config.html $INS_DIR/share/doc/html/manage-ag-createdb.html $INS_DIR/share/doc/html/manage-ag-dropdb.html $INS_DIR/share/doc/html/manage-ag-overview.html $INS_DIR/share/doc/html/manage-ag-tablespaces.html $INS_DIR/share/doc/html/manage-ag-templatedbs.html $INS_DIR/share/doc/html/managing-databases.html $INS_DIR/share/doc/html/monitoring-locks.html $INS_DIR/share/doc/html/monitoring-ps.html $INS_DIR/share/doc/html/monitoring-stats.html $INS_DIR/share/doc/html/monitoring.html $INS_DIR/share/doc/html/multibyte.html $INS_DIR/share/doc/html/multivariate-statistics-examples.html $INS_DIR/share/doc/html/mvcc-caveats.html $INS_DIR/share/doc/html/mvcc-intro.html $INS_DIR/share/doc/html/mvcc.html $INS_DIR/share/doc/html/nls-programmer.html $INS_DIR/share/doc/html/nls-translator.html $INS_DIR/share/doc/html/nls.html $INS_DIR/share/doc/html/non-durability.html $INS_DIR/share/doc/html/notation.html $INS_DIR/share/doc/html/oid2name.html $INS_DIR/share/doc/html/overview.html $INS_DIR/share/doc/html/pageinspect.html $INS_DIR/share/doc/html/pagelayout.svg $INS_DIR/share/doc/html/parallel-plans.html $INS_DIR/share/doc/html/parallel-query.html $INS_DIR/share/doc/html/parallel-safety.html $INS_DIR/share/doc/html/parser-stage.html $INS_DIR/share/doc/html/passwordcheck.html $INS_DIR/share/doc/html/performance-tips.html $INS_DIR/share/doc/html/perm-functions.html $INS_DIR/share/doc/html/pgarchivecleanup.html $INS_DIR/share/doc/html/pgbench.html $INS_DIR/share/doc/html/pgbuffercache.html $INS_DIR/share/doc/html/pgcrypto.html $INS_DIR/share/doc/html/pgfreespacemap.html $INS_DIR/share/doc/html/pgprewarm.html $INS_DIR/share/doc/html/pgrowlocks.html $INS_DIR/share/doc/html/pgstandby.html $INS_DIR/share/doc/html/pgstatstatements.html $INS_DIR/share/doc/html/pgstattuple.html $INS_DIR/share/doc/html/pgtestfsync.html $INS_DIR/share/doc/html/pgtesttiming.html $INS_DIR/share/doc/html/pgtrgm.html $INS_DIR/share/doc/html/pgupgrade.html $INS_DIR/share/doc/html/pgvisibility.html $INS_DIR/share/doc/html/pgwaldump.html $INS_DIR/share/doc/html/pgxlogdump.html $INS_DIR/share/doc/html/planner-optimizer.html $INS_DIR/share/doc/html/planner-stats-details.html $INS_DIR/share/doc/html/planner-stats-security.html $INS_DIR/share/doc/html/planner-stats.html $INS_DIR/share/doc/html/plhandler.html $INS_DIR/share/doc/html/plperl-builtins.html $INS_DIR/share/doc/html/plperl-data.html $INS_DIR/share/doc/html/plperl-event-triggers.html $INS_DIR/share/doc/html/plperl-funcs.html $INS_DIR/share/doc/html/plperl-global.html $INS_DIR/share/doc/html/plperl-triggers.html $INS_DIR/share/doc/html/plperl-trusted.html $INS_DIR/share/doc/html/plperl-under-the-hood.html $INS_DIR/share/doc/html/plperl.html $INS_DIR/share/doc/html/plpgsql-control-structures.html $INS_DIR/share/doc/html/plpgsql-cursors.html $INS_DIR/share/doc/html/plpgsql-declarations.html $INS_DIR/share/doc/html/plpgsql-development-tips.html $INS_DIR/share/doc/html/plpgsql-errors-and-messages.html $INS_DIR/share/doc/html/plpgsql-expressions.html $INS_DIR/share/doc/html/plpgsql-implementation.html $INS_DIR/share/doc/html/plpgsql-overview.html $INS_DIR/share/doc/html/plpgsql-porting.html $INS_DIR/share/doc/html/plpgsql-statements.html $INS_DIR/share/doc/html/plpgsql-structure.html $INS_DIR/share/doc/html/plpgsql-transactions.html $INS_DIR/share/doc/html/plpgsql-trigger.html $INS_DIR/share/doc/html/plpgsql.html $INS_DIR/share/doc/html/plpython-data.html $INS_DIR/share/doc/html/plpython-database.html $INS_DIR/share/doc/html/plpython-do.html $INS_DIR/share/doc/html/plpython-envar.html $INS_DIR/share/doc/html/plpython-funcs.html $INS_DIR/share/doc/html/plpython-python23.html $INS_DIR/share/doc/html/plpython-sharing.html $INS_DIR/share/doc/html/plpython-subtransaction.html $INS_DIR/share/doc/html/plpython-transactions.html $INS_DIR/share/doc/html/plpython-trigger.html $INS_DIR/share/doc/html/plpython-util.html $INS_DIR/share/doc/html/plpython.html $INS_DIR/share/doc/html/pltcl-config.html $INS_DIR/share/doc/html/pltcl-data.html $INS_DIR/share/doc/html/pltcl-dbaccess.html $INS_DIR/share/doc/html/pltcl-error-handling.html $INS_DIR/share/doc/html/pltcl-event-trigger.html $INS_DIR/share/doc/html/pltcl-functions.html $INS_DIR/share/doc/html/pltcl-global.html $INS_DIR/share/doc/html/pltcl-overview.html $INS_DIR/share/doc/html/pltcl-procnames.html $INS_DIR/share/doc/html/pltcl-subtransactions.html $INS_DIR/share/doc/html/pltcl-transactions.html $INS_DIR/share/doc/html/pltcl-trigger.html $INS_DIR/share/doc/html/pltcl.html $INS_DIR/share/doc/html/populate.html $INS_DIR/share/doc/html/postgres-fdw.html $INS_DIR/share/doc/html/postgres-user.html $INS_DIR/share/doc/html/preface.html $INS_DIR/share/doc/html/preventing-server-spoofing.html $INS_DIR/share/doc/html/progress-reporting.html $INS_DIR/share/doc/html/protocol-changes.html $INS_DIR/share/doc/html/protocol-error-fields.html $INS_DIR/share/doc/html/protocol-flow.html $INS_DIR/share/doc/html/protocol-logical-replication.html $INS_DIR/share/doc/html/protocol-logicalrep-message-formats.html $INS_DIR/share/doc/html/protocol-message-formats.html $INS_DIR/share/doc/html/protocol-message-types.html $INS_DIR/share/doc/html/protocol-overview.html $INS_DIR/share/doc/html/protocol-replication.html $INS_DIR/share/doc/html/protocol.html $INS_DIR/share/doc/html/queries-limit.html $INS_DIR/share/doc/html/queries-order.html $INS_DIR/share/doc/html/queries-overview.html $INS_DIR/share/doc/html/queries-select-lists.html $INS_DIR/share/doc/html/queries-table-expressions.html $INS_DIR/share/doc/html/queries-union.html $INS_DIR/share/doc/html/queries-values.html $INS_DIR/share/doc/html/queries-with.html $INS_DIR/share/doc/html/queries.html $INS_DIR/share/doc/html/query-path.html $INS_DIR/share/doc/html/querytree.html $INS_DIR/share/doc/html/rangetypes.html $INS_DIR/share/doc/html/recovery-config.html $INS_DIR/share/doc/html/reference-client.html $INS_DIR/share/doc/html/reference-server.html $INS_DIR/share/doc/html/reference.html $INS_DIR/share/doc/html/regress-coverage.html $INS_DIR/share/doc/html/regress-evaluation.html $INS_DIR/share/doc/html/regress-run.html $INS_DIR/share/doc/html/regress-tap.html $INS_DIR/share/doc/html/regress-variant.html $INS_DIR/share/doc/html/regress.html $INS_DIR/share/doc/html/release-12-1.html $INS_DIR/share/doc/html/release-12-10.html $INS_DIR/share/doc/html/release-12-11.html $INS_DIR/share/doc/html/release-12-12.html $INS_DIR/share/doc/html/release-12-13.html $INS_DIR/share/doc/html/release-12-14.html $INS_DIR/share/doc/html/release-12-2.html $INS_DIR/share/doc/html/release-12-3.html $INS_DIR/share/doc/html/release-12-4.html $INS_DIR/share/doc/html/release-12-5.html $INS_DIR/share/doc/html/release-12-6.html $INS_DIR/share/doc/html/release-12-7.html $INS_DIR/share/doc/html/release-12-8.html $INS_DIR/share/doc/html/release-12-9.html $INS_DIR/share/doc/html/release-12.html $INS_DIR/share/doc/html/release-prior.html $INS_DIR/share/doc/html/release.html $INS_DIR/share/doc/html/replication-origins.html $INS_DIR/share/doc/html/resources.html $INS_DIR/share/doc/html/role-attributes.html $INS_DIR/share/doc/html/role-membership.html $INS_DIR/share/doc/html/role-removal.html $INS_DIR/share/doc/html/routine-reindex.html $INS_DIR/share/doc/html/routine-vacuuming.html $INS_DIR/share/doc/html/row-estimation-examples.html $INS_DIR/share/doc/html/rowtypes.html $INS_DIR/share/doc/html/rule-system.html $INS_DIR/share/doc/html/rules-materializedviews.html $INS_DIR/share/doc/html/rules-privileges.html $INS_DIR/share/doc/html/rules-status.html $INS_DIR/share/doc/html/rules-triggers.html $INS_DIR/share/doc/html/rules-update.html $INS_DIR/share/doc/html/rules-views.html $INS_DIR/share/doc/html/rules.html $INS_DIR/share/doc/html/runtime-config-autovacuum.html $INS_DIR/share/doc/html/runtime-config-client.html $INS_DIR/share/doc/html/runtime-config-compatible.html $INS_DIR/share/doc/html/runtime-config-connection.html $INS_DIR/share/doc/html/runtime-config-custom.html $INS_DIR/share/doc/html/runtime-config-developer.html $INS_DIR/share/doc/html/runtime-config-error-handling.html $INS_DIR/share/doc/html/runtime-config-file-locations.html $INS_DIR/share/doc/html/runtime-config-locks.html $INS_DIR/share/doc/html/runtime-config-logging.html $INS_DIR/share/doc/html/runtime-config-preset.html $INS_DIR/share/doc/html/runtime-config-query.html $INS_DIR/share/doc/html/runtime-config-replication.html $INS_DIR/share/doc/html/runtime-config-resource.html $INS_DIR/share/doc/html/runtime-config-short.html $INS_DIR/share/doc/html/runtime-config-statistics.html $INS_DIR/share/doc/html/runtime-config-wal.html $INS_DIR/share/doc/html/runtime-config.html $INS_DIR/share/doc/html/runtime.html $INS_DIR/share/doc/html/sasl-authentication.html $INS_DIR/share/doc/html/seg.html $INS_DIR/share/doc/html/sepgsql.html $INS_DIR/share/doc/html/server-programming.html $INS_DIR/share/doc/html/server-shutdown.html $INS_DIR/share/doc/html/server-start.html $INS_DIR/share/doc/html/source-conventions.html $INS_DIR/share/doc/html/source-format.html $INS_DIR/share/doc/html/source.html $INS_DIR/share/doc/html/sourcerepo.html $INS_DIR/share/doc/html/spgist-builtin-opclasses.html $INS_DIR/share/doc/html/spgist-examples.html $INS_DIR/share/doc/html/spgist-extensibility.html $INS_DIR/share/doc/html/spgist-implementation.html $INS_DIR/share/doc/html/spgist-intro.html $INS_DIR/share/doc/html/spgist.html $INS_DIR/share/doc/html/spi-examples.html $INS_DIR/share/doc/html/spi-interface-support.html $INS_DIR/share/doc/html/spi-interface.html $INS_DIR/share/doc/html/spi-memory.html $INS_DIR/share/doc/html/spi-realloc.html $INS_DIR/share/doc/html/spi-spi-commit.html $INS_DIR/share/doc/html/spi-spi-connect.html $INS_DIR/share/doc/html/spi-spi-copytuple.html $INS_DIR/share/doc/html/spi-spi-cursor-close.html $INS_DIR/share/doc/html/spi-spi-cursor-fetch.html $INS_DIR/share/doc/html/spi-spi-cursor-find.html $INS_DIR/share/doc/html/spi-spi-cursor-move.html $INS_DIR/share/doc/html/spi-spi-cursor-open-with-args.html $INS_DIR/share/doc/html/spi-spi-cursor-open-with-paramlist.html $INS_DIR/share/doc/html/spi-spi-cursor-open.html $INS_DIR/share/doc/html/spi-spi-exec.html $INS_DIR/share/doc/html/spi-spi-execp.html $INS_DIR/share/doc/html/spi-spi-execute-plan-with-paramlist.html $INS_DIR/share/doc/html/spi-spi-execute-plan.html $INS_DIR/share/doc/html/spi-spi-execute-with-args.html $INS_DIR/share/doc/html/spi-spi-execute.html $INS_DIR/share/doc/html/spi-spi-finish.html $INS_DIR/share/doc/html/spi-spi-fname.html $INS_DIR/share/doc/html/spi-spi-fnumber.html $INS_DIR/share/doc/html/spi-spi-freeplan.html $INS_DIR/share/doc/html/spi-spi-freetuple.html $INS_DIR/share/doc/html/spi-spi-freetupletable.html $INS_DIR/share/doc/html/spi-spi-getargcount.html $INS_DIR/share/doc/html/spi-spi-getargtypeid.html $INS_DIR/share/doc/html/spi-spi-getbinval.html $INS_DIR/share/doc/html/spi-spi-getnspname.html $INS_DIR/share/doc/html/spi-spi-getrelname.html $INS_DIR/share/doc/html/spi-spi-gettype.html $INS_DIR/share/doc/html/spi-spi-gettypeid.html $INS_DIR/share/doc/html/spi-spi-getvalue.html $INS_DIR/share/doc/html/spi-spi-is-cursor-plan.html $INS_DIR/share/doc/html/spi-spi-keepplan.html $INS_DIR/share/doc/html/spi-spi-modifytuple.html $INS_DIR/share/doc/html/spi-spi-palloc.html $INS_DIR/share/doc/html/spi-spi-pfree.html $INS_DIR/share/doc/html/spi-spi-prepare-cursor.html $INS_DIR/share/doc/html/spi-spi-prepare-params.html $INS_DIR/share/doc/html/spi-spi-prepare.html $INS_DIR/share/doc/html/spi-spi-register-relation.html $INS_DIR/share/doc/html/spi-spi-register-trigger-data.html $INS_DIR/share/doc/html/spi-spi-result-code-string.html $INS_DIR/share/doc/html/spi-spi-returntuple.html $INS_DIR/share/doc/html/spi-spi-rollback.html $INS_DIR/share/doc/html/spi-spi-saveplan.html $INS_DIR/share/doc/html/spi-spi-scroll-cursor-fetch.html $INS_DIR/share/doc/html/spi-spi-scroll-cursor-move.html $INS_DIR/share/doc/html/spi-spi-start-transaction.html $INS_DIR/share/doc/html/spi-spi-unregister-relation.html $INS_DIR/share/doc/html/spi-transaction.html $INS_DIR/share/doc/html/spi-visibility.html $INS_DIR/share/doc/html/spi.html $INS_DIR/share/doc/html/sql-abort.html $INS_DIR/share/doc/html/sql-alteraggregate.html $INS_DIR/share/doc/html/sql-altercollation.html $INS_DIR/share/doc/html/sql-alterconversion.html $INS_DIR/share/doc/html/sql-alterdatabase.html $INS_DIR/share/doc/html/sql-alterdefaultprivileges.html $INS_DIR/share/doc/html/sql-alterdomain.html $INS_DIR/share/doc/html/sql-altereventtrigger.html $INS_DIR/share/doc/html/sql-alterextension.html $INS_DIR/share/doc/html/sql-alterforeigndatawrapper.html $INS_DIR/share/doc/html/sql-alterforeigntable.html $INS_DIR/share/doc/html/sql-alterfunction.html $INS_DIR/share/doc/html/sql-altergroup.html $INS_DIR/share/doc/html/sql-alterindex.html $INS_DIR/share/doc/html/sql-alterlanguage.html $INS_DIR/share/doc/html/sql-alterlargeobject.html $INS_DIR/share/doc/html/sql-altermaterializedview.html $INS_DIR/share/doc/html/sql-alteropclass.html $INS_DIR/share/doc/html/sql-alteroperator.html $INS_DIR/share/doc/html/sql-alteropfamily.html $INS_DIR/share/doc/html/sql-alterpolicy.html $INS_DIR/share/doc/html/sql-alterprocedure.html $INS_DIR/share/doc/html/sql-alterpublication.html $INS_DIR/share/doc/html/sql-alterrole.html $INS_DIR/share/doc/html/sql-alterroutine.html $INS_DIR/share/doc/html/sql-alterrule.html $INS_DIR/share/doc/html/sql-alterschema.html $INS_DIR/share/doc/html/sql-altersequence.html $INS_DIR/share/doc/html/sql-alterserver.html $INS_DIR/share/doc/html/sql-alterstatistics.html $INS_DIR/share/doc/html/sql-altersubscription.html $INS_DIR/share/doc/html/sql-altersystem.html $INS_DIR/share/doc/html/sql-altertable.html $INS_DIR/share/doc/html/sql-altertablespace.html $INS_DIR/share/doc/html/sql-altertrigger.html $INS_DIR/share/doc/html/sql-altertsconfig.html $INS_DIR/share/doc/html/sql-altertsdictionary.html $INS_DIR/share/doc/html/sql-altertsparser.html $INS_DIR/share/doc/html/sql-altertstemplate.html $INS_DIR/share/doc/html/sql-altertype.html $INS_DIR/share/doc/html/sql-alteruser.html $INS_DIR/share/doc/html/sql-alterusermapping.html $INS_DIR/share/doc/html/sql-alterview.html $INS_DIR/share/doc/html/sql-analyze.html $INS_DIR/share/doc/html/sql-begin.html $INS_DIR/share/doc/html/sql-call.html $INS_DIR/share/doc/html/sql-checkpoint.html $INS_DIR/share/doc/html/sql-close.html $INS_DIR/share/doc/html/sql-cluster.html $INS_DIR/share/doc/html/sql-commands.html $INS_DIR/share/doc/html/sql-comment.html $INS_DIR/share/doc/html/sql-commit-prepared.html $INS_DIR/share/doc/html/sql-commit.html $INS_DIR/share/doc/html/sql-copy.html $INS_DIR/share/doc/html/sql-create-access-method.html $INS_DIR/share/doc/html/sql-createaggregate.html $INS_DIR/share/doc/html/sql-createcast.html $INS_DIR/share/doc/html/sql-createcollation.html $INS_DIR/share/doc/html/sql-createconversion.html $INS_DIR/share/doc/html/sql-createdatabase.html $INS_DIR/share/doc/html/sql-createdomain.html $INS_DIR/share/doc/html/sql-createeventtrigger.html $INS_DIR/share/doc/html/sql-createextension.html $INS_DIR/share/doc/html/sql-createforeigndatawrapper.html $INS_DIR/share/doc/html/sql-createforeigntable.html $INS_DIR/share/doc/html/sql-createfunction.html $INS_DIR/share/doc/html/sql-creategroup.html $INS_DIR/share/doc/html/sql-createindex.html $INS_DIR/share/doc/html/sql-createlanguage.html $INS_DIR/share/doc/html/sql-creatematerializedview.html $INS_DIR/share/doc/html/sql-createopclass.html $INS_DIR/share/doc/html/sql-createoperator.html $INS_DIR/share/doc/html/sql-createopfamily.html $INS_DIR/share/doc/html/sql-createpolicy.html $INS_DIR/share/doc/html/sql-createprocedure.html $INS_DIR/share/doc/html/sql-createpublication.html $INS_DIR/share/doc/html/sql-createrole.html $INS_DIR/share/doc/html/sql-createrule.html $INS_DIR/share/doc/html/sql-createschema.html $INS_DIR/share/doc/html/sql-createsequence.html $INS_DIR/share/doc/html/sql-createserver.html $INS_DIR/share/doc/html/sql-createstatistics.html $INS_DIR/share/doc/html/sql-createsubscription.html $INS_DIR/share/doc/html/sql-createtable.html $INS_DIR/share/doc/html/sql-createtableas.html $INS_DIR/share/doc/html/sql-createtablespace.html $INS_DIR/share/doc/html/sql-createtransform.html $INS_DIR/share/doc/html/sql-createtrigger.html $INS_DIR/share/doc/html/sql-createtsconfig.html $INS_DIR/share/doc/html/sql-createtsdictionary.html $INS_DIR/share/doc/html/sql-createtsparser.html $INS_DIR/share/doc/html/sql-createtstemplate.html $INS_DIR/share/doc/html/sql-createtype.html $INS_DIR/share/doc/html/sql-createuser.html $INS_DIR/share/doc/html/sql-createusermapping.html $INS_DIR/share/doc/html/sql-createview.html $INS_DIR/share/doc/html/sql-deallocate.html $INS_DIR/share/doc/html/sql-declare.html $INS_DIR/share/doc/html/sql-delete.html $INS_DIR/share/doc/html/sql-discard.html $INS_DIR/share/doc/html/sql-do.html $INS_DIR/share/doc/html/sql-drop-access-method.html $INS_DIR/share/doc/html/sql-drop-owned.html $INS_DIR/share/doc/html/sql-dropaggregate.html $INS_DIR/share/doc/html/sql-dropcast.html $INS_DIR/share/doc/html/sql-dropcollation.html $INS_DIR/share/doc/html/sql-dropconversion.html $INS_DIR/share/doc/html/sql-dropdatabase.html $INS_DIR/share/doc/html/sql-dropdomain.html $INS_DIR/share/doc/html/sql-dropeventtrigger.html $INS_DIR/share/doc/html/sql-dropextension.html $INS_DIR/share/doc/html/sql-dropforeigndatawrapper.html $INS_DIR/share/doc/html/sql-dropforeigntable.html $INS_DIR/share/doc/html/sql-dropfunction.html $INS_DIR/share/doc/html/sql-dropgroup.html $INS_DIR/share/doc/html/sql-dropindex.html $INS_DIR/share/doc/html/sql-droplanguage.html $INS_DIR/share/doc/html/sql-dropmaterializedview.html $INS_DIR/share/doc/html/sql-dropopclass.html $INS_DIR/share/doc/html/sql-dropoperator.html $INS_DIR/share/doc/html/sql-dropopfamily.html $INS_DIR/share/doc/html/sql-droppolicy.html $INS_DIR/share/doc/html/sql-dropprocedure.html $INS_DIR/share/doc/html/sql-droppublication.html $INS_DIR/share/doc/html/sql-droprole.html $INS_DIR/share/doc/html/sql-droproutine.html $INS_DIR/share/doc/html/sql-droprule.html $INS_DIR/share/doc/html/sql-dropschema.html $INS_DIR/share/doc/html/sql-dropsequence.html $INS_DIR/share/doc/html/sql-dropserver.html $INS_DIR/share/doc/html/sql-dropstatistics.html $INS_DIR/share/doc/html/sql-dropsubscription.html $INS_DIR/share/doc/html/sql-droptable.html $INS_DIR/share/doc/html/sql-droptablespace.html $INS_DIR/share/doc/html/sql-droptransform.html $INS_DIR/share/doc/html/sql-droptrigger.html $INS_DIR/share/doc/html/sql-droptsconfig.html $INS_DIR/share/doc/html/sql-droptsdictionary.html $INS_DIR/share/doc/html/sql-droptsparser.html $INS_DIR/share/doc/html/sql-droptstemplate.html $INS_DIR/share/doc/html/sql-droptype.html $INS_DIR/share/doc/html/sql-dropuser.html $INS_DIR/share/doc/html/sql-dropusermapping.html $INS_DIR/share/doc/html/sql-dropview.html $INS_DIR/share/doc/html/sql-end.html $INS_DIR/share/doc/html/sql-execute.html $INS_DIR/share/doc/html/sql-explain.html $INS_DIR/share/doc/html/sql-expressions.html $INS_DIR/share/doc/html/sql-fetch.html $INS_DIR/share/doc/html/sql-grant.html $INS_DIR/share/doc/html/sql-importforeignschema.html $INS_DIR/share/doc/html/sql-insert.html $INS_DIR/share/doc/html/sql-keywords-appendix.html $INS_DIR/share/doc/html/sql-listen.html $INS_DIR/share/doc/html/sql-load.html $INS_DIR/share/doc/html/sql-lock.html $INS_DIR/share/doc/html/sql-move.html $INS_DIR/share/doc/html/sql-notify.html $INS_DIR/share/doc/html/sql-prepare-transaction.html $INS_DIR/share/doc/html/sql-prepare.html $INS_DIR/share/doc/html/sql-reassign-owned.html $INS_DIR/share/doc/html/sql-refreshmaterializedview.html $INS_DIR/share/doc/html/sql-reindex.html $INS_DIR/share/doc/html/sql-release-savepoint.html $INS_DIR/share/doc/html/sql-reset.html $INS_DIR/share/doc/html/sql-revoke.html $INS_DIR/share/doc/html/sql-rollback-prepared.html $INS_DIR/share/doc/html/sql-rollback-to.html $INS_DIR/share/doc/html/sql-rollback.html $INS_DIR/share/doc/html/sql-savepoint.html $INS_DIR/share/doc/html/sql-security-label.html $INS_DIR/share/doc/html/sql-select.html $INS_DIR/share/doc/html/sql-selectinto.html $INS_DIR/share/doc/html/sql-set-constraints.html $INS_DIR/share/doc/html/sql-set-role.html $INS_DIR/share/doc/html/sql-set-session-authorization.html $INS_DIR/share/doc/html/sql-set-transaction.html $INS_DIR/share/doc/html/sql-set.html $INS_DIR/share/doc/html/sql-show.html $INS_DIR/share/doc/html/sql-start-transaction.html $INS_DIR/share/doc/html/sql-syntax-calling-funcs.html $INS_DIR/share/doc/html/sql-syntax-lexical.html $INS_DIR/share/doc/html/sql-syntax.html $INS_DIR/share/doc/html/sql-truncate.html $INS_DIR/share/doc/html/sql-unlisten.html $INS_DIR/share/doc/html/sql-update.html $INS_DIR/share/doc/html/sql-vacuum.html $INS_DIR/share/doc/html/sql-values.html $INS_DIR/share/doc/html/sql.html $INS_DIR/share/doc/html/ssh-tunnels.html $INS_DIR/share/doc/html/ssl-tcp.html $INS_DIR/share/doc/html/sslinfo.html $INS_DIR/share/doc/html/sspi-auth.html $INS_DIR/share/doc/html/storage-file-layout.html $INS_DIR/share/doc/html/storage-fsm.html $INS_DIR/share/doc/html/storage-hot.html $INS_DIR/share/doc/html/storage-init.html $INS_DIR/share/doc/html/storage-page-layout.html $INS_DIR/share/doc/html/storage-toast.html $INS_DIR/share/doc/html/storage-vm.html $INS_DIR/share/doc/html/storage.html $INS_DIR/share/doc/html/stylesheet.css $INS_DIR/share/doc/html/supported-platforms.html $INS_DIR/share/doc/html/system-catalog-declarations.html $INS_DIR/share/doc/html/system-catalog-initial-data.html $INS_DIR/share/doc/html/tableam.html $INS_DIR/share/doc/html/tablefunc.html $INS_DIR/share/doc/html/tablesample-method.html $INS_DIR/share/doc/html/tablesample-support-functions.html $INS_DIR/share/doc/html/tcn.html $INS_DIR/share/doc/html/test-decoding.html $INS_DIR/share/doc/html/textsearch-configuration.html $INS_DIR/share/doc/html/textsearch-controls.html $INS_DIR/share/doc/html/textsearch-debugging.html $INS_DIR/share/doc/html/textsearch-dictionaries.html $INS_DIR/share/doc/html/textsearch-features.html $INS_DIR/share/doc/html/textsearch-indexes.html $INS_DIR/share/doc/html/textsearch-intro.html $INS_DIR/share/doc/html/textsearch-limitations.html $INS_DIR/share/doc/html/textsearch-parsers.html $INS_DIR/share/doc/html/textsearch-psql.html $INS_DIR/share/doc/html/textsearch-tables.html $INS_DIR/share/doc/html/textsearch.html $INS_DIR/share/doc/html/transaction-iso.html $INS_DIR/share/doc/html/trigger-datachanges.html $INS_DIR/share/doc/html/trigger-definition.html $INS_DIR/share/doc/html/trigger-example.html $INS_DIR/share/doc/html/trigger-interface.html $INS_DIR/share/doc/html/triggers.html $INS_DIR/share/doc/html/tsm-system-rows.html $INS_DIR/share/doc/html/tsm-system-time.html $INS_DIR/share/doc/html/tutorial-accessdb.html $INS_DIR/share/doc/html/tutorial-advanced-intro.html $INS_DIR/share/doc/html/tutorial-advanced.html $INS_DIR/share/doc/html/tutorial-agg.html $INS_DIR/share/doc/html/tutorial-arch.html $INS_DIR/share/doc/html/tutorial-concepts.html $INS_DIR/share/doc/html/tutorial-conclusion.html $INS_DIR/share/doc/html/tutorial-createdb.html $INS_DIR/share/doc/html/tutorial-delete.html $INS_DIR/share/doc/html/tutorial-fk.html $INS_DIR/share/doc/html/tutorial-inheritance.html $INS_DIR/share/doc/html/tutorial-install.html $INS_DIR/share/doc/html/tutorial-join.html $INS_DIR/share/doc/html/tutorial-populate.html $INS_DIR/share/doc/html/tutorial-select.html $INS_DIR/share/doc/html/tutorial-sql-intro.html $INS_DIR/share/doc/html/tutorial-sql.html $INS_DIR/share/doc/html/tutorial-start.html $INS_DIR/share/doc/html/tutorial-table.html $INS_DIR/share/doc/html/tutorial-transactions.html $INS_DIR/share/doc/html/tutorial-update.html $INS_DIR/share/doc/html/tutorial-views.html $INS_DIR/share/doc/html/tutorial-window.html $INS_DIR/share/doc/html/tutorial.html $INS_DIR/share/doc/html/typeconv-func.html $INS_DIR/share/doc/html/typeconv-oper.html $INS_DIR/share/doc/html/typeconv-overview.html $INS_DIR/share/doc/html/typeconv-query.html $INS_DIR/share/doc/html/typeconv-select.html $INS_DIR/share/doc/html/typeconv-union-case.html $INS_DIR/share/doc/html/typeconv.html $INS_DIR/share/doc/html/unaccent.html $INS_DIR/share/doc/html/unsupported-features-sql-standard.html $INS_DIR/share/doc/html/upgrading.html $INS_DIR/share/doc/html/user-manag.html $INS_DIR/share/doc/html/using-explain.html $INS_DIR/share/doc/html/uuid-ossp.html $INS_DIR/share/doc/html/vacuumlo.html $INS_DIR/share/doc/html/view-pg-available-extension-versions.html $INS_DIR/share/doc/html/view-pg-available-extensions.html $INS_DIR/share/doc/html/view-pg-config.html $INS_DIR/share/doc/html/view-pg-cursors.html $INS_DIR/share/doc/html/view-pg-file-settings.html $INS_DIR/share/doc/html/view-pg-group.html $INS_DIR/share/doc/html/view-pg-hba-file-rules.html $INS_DIR/share/doc/html/view-pg-indexes.html $INS_DIR/share/doc/html/view-pg-locks.html $INS_DIR/share/doc/html/view-pg-matviews.html $INS_DIR/share/doc/html/view-pg-policies.html $INS_DIR/share/doc/html/view-pg-prepared-statements.html $INS_DIR/share/doc/html/view-pg-prepared-xacts.html $INS_DIR/share/doc/html/view-pg-publication-tables.html $INS_DIR/share/doc/html/view-pg-replication-origin-status.html $INS_DIR/share/doc/html/view-pg-replication-slots.html $INS_DIR/share/doc/html/view-pg-roles.html $INS_DIR/share/doc/html/view-pg-rules.html $INS_DIR/share/doc/html/view-pg-seclabels.html $INS_DIR/share/doc/html/view-pg-sequences.html $INS_DIR/share/doc/html/view-pg-settings.html $INS_DIR/share/doc/html/view-pg-shadow.html $INS_DIR/share/doc/html/view-pg-stats-ext.html $INS_DIR/share/doc/html/view-pg-stats.html $INS_DIR/share/doc/html/view-pg-tables.html $INS_DIR/share/doc/html/view-pg-timezone-abbrevs.html $INS_DIR/share/doc/html/view-pg-timezone-names.html $INS_DIR/share/doc/html/view-pg-user-mappings.html $INS_DIR/share/doc/html/view-pg-user.html $INS_DIR/share/doc/html/view-pg-views.html $INS_DIR/share/doc/html/views-overview.html $INS_DIR/share/doc/html/wal-async-commit.html $INS_DIR/share/doc/html/wal-configuration.html $INS_DIR/share/doc/html/wal-internals.html $INS_DIR/share/doc/html/wal-intro.html $INS_DIR/share/doc/html/wal-reliability.html $INS_DIR/share/doc/html/wal.html $INS_DIR/share/doc/html/warm-standby-failover.html $INS_DIR/share/doc/html/warm-standby.html $INS_DIR/share/doc/html/when-can-parallel-query-be-used.html $INS_DIR/share/doc/html/xaggr.html $INS_DIR/share/doc/html/xfunc-c.html $INS_DIR/share/doc/html/xfunc-internal.html $INS_DIR/share/doc/html/xfunc-optimization.html $INS_DIR/share/doc/html/xfunc-overload.html $INS_DIR/share/doc/html/xfunc-pl.html $INS_DIR/share/doc/html/xfunc-sql.html $INS_DIR/share/doc/html/xfunc-volatility.html $INS_DIR/share/doc/html/xfunc.html $INS_DIR/share/doc/html/xindex.html $INS_DIR/share/doc/html/xml-limits-conformance.html $INS_DIR/share/doc/html/xml2.html $INS_DIR/share/doc/html/xoper-optimization.html $INS_DIR/share/doc/html/xoper.html $INS_DIR/share/doc/html/xplang-install.html $INS_DIR/share/doc/html/xplang.html $INS_DIR/share/doc/html/xproc.html $INS_DIR/share/doc/html/xtypes.html $INS_DIR/share/errcodes.txt $INS_DIR/share/extension/adminpack--1.0--1.1.sql $INS_DIR/share/extension/adminpack--1.0.sql $INS_DIR/share/extension/adminpack--1.1--2.0.sql $INS_DIR/share/extension/adminpack.control $INS_DIR/share/extension/amcheck--1.0--1.1.sql $INS_DIR/share/extension/amcheck--1.0.sql $INS_DIR/share/extension/amcheck--1.1--1.2.sql $INS_DIR/share/extension/amcheck.control $INS_DIR/share/extension/autoinc--1.0.sql $INS_DIR/share/extension/autoinc--unpackaged--1.0.sql $INS_DIR/share/extension/autoinc.control $INS_DIR/share/extension/bloom--1.0.sql $INS_DIR/share/extension/bloom.control $INS_DIR/share/extension/btree_gin--1.0--1.1.sql $INS_DIR/share/extension/btree_gin--1.0.sql $INS_DIR/share/extension/btree_gin--1.1--1.2.sql $INS_DIR/share/extension/btree_gin--1.2--1.3.sql $INS_DIR/share/extension/btree_gin--unpackaged--1.0.sql $INS_DIR/share/extension/btree_gin.control $INS_DIR/share/extension/btree_gist--1.0--1.1.sql $INS_DIR/share/extension/btree_gist--1.1--1.2.sql $INS_DIR/share/extension/btree_gist--1.2--1.3.sql $INS_DIR/share/extension/btree_gist--1.2.sql $INS_DIR/share/extension/btree_gist--1.3--1.4.sql $INS_DIR/share/extension/btree_gist--1.4--1.5.sql $INS_DIR/share/extension/btree_gist--unpackaged--1.0.sql $INS_DIR/share/extension/btree_gist.control $INS_DIR/share/extension/citext--1.0--1.1.sql $INS_DIR/share/extension/citext--1.1--1.2.sql $INS_DIR/share/extension/citext--1.2--1.3.sql $INS_DIR/share/extension/citext--1.3--1.4.sql $INS_DIR/share/extension/citext--1.4--1.5.sql $INS_DIR/share/extension/citext--1.4.sql $INS_DIR/share/extension/citext--1.5--1.6.sql $INS_DIR/share/extension/citext--unpackaged--1.0.sql $INS_DIR/share/extension/citext.control $INS_DIR/share/extension/cube--1.0--1.1.sql $INS_DIR/share/extension/cube--1.1--1.2.sql $INS_DIR/share/extension/cube--1.2--1.3.sql $INS_DIR/share/extension/cube--1.2.sql $INS_DIR/share/extension/cube--1.3--1.4.sql $INS_DIR/share/extension/cube--unpackaged--1.0.sql $INS_DIR/share/extension/cube.control $INS_DIR/share/extension/dblink--1.0--1.1.sql $INS_DIR/share/extension/dblink--1.1--1.2.sql $INS_DIR/share/extension/dblink--1.2.sql $INS_DIR/share/extension/dblink--unpackaged--1.0.sql $INS_DIR/share/extension/dblink.control $INS_DIR/share/extension/dict_int--1.0.sql $INS_DIR/share/extension/dict_int--unpackaged--1.0.sql $INS_DIR/share/extension/dict_int.control $INS_DIR/share/extension/dict_xsyn--1.0.sql $INS_DIR/share/extension/dict_xsyn--unpackaged--1.0.sql $INS_DIR/share/extension/dict_xsyn.control $INS_DIR/share/extension/earthdistance--1.0--1.1.sql $INS_DIR/share/extension/earthdistance--1.1.sql $INS_DIR/share/extension/earthdistance--unpackaged--1.0.sql $INS_DIR/share/extension/earthdistance.control $INS_DIR/share/extension/file_fdw--1.0.sql $INS_DIR/share/extension/file_fdw.control $INS_DIR/share/extension/fuzzystrmatch--1.0--1.1.sql $INS_DIR/share/extension/fuzzystrmatch--1.1.sql $INS_DIR/share/extension/fuzzystrmatch--unpackaged--1.0.sql $INS_DIR/share/extension/fuzzystrmatch.control $INS_DIR/share/extension/hstore--1.0--1.1.sql $INS_DIR/share/extension/hstore--1.1--1.2.sql $INS_DIR/share/extension/hstore--1.2--1.3.sql $INS_DIR/share/extension/hstore--1.3--1.4.sql $INS_DIR/share/extension/hstore--1.4--1.5.sql $INS_DIR/share/extension/hstore--1.4.sql $INS_DIR/share/extension/hstore--1.5--1.6.sql $INS_DIR/share/extension/hstore--unpackaged--1.0.sql $INS_DIR/share/extension/hstore.control $INS_DIR/share/extension/hstore_plperl--1.0.sql $INS_DIR/share/extension/hstore_plperl.control $INS_DIR/share/extension/hstore_plperlu--1.0.sql $INS_DIR/share/extension/hstore_plperlu.control $INS_DIR/share/extension/hstore_plpython2u--1.0.sql $INS_DIR/share/extension/hstore_plpython2u.control $INS_DIR/share/extension/hstore_plpython3u--1.0.sql $INS_DIR/share/extension/hstore_plpython3u.control $INS_DIR/share/extension/hstore_plpythonu--1.0.sql $INS_DIR/share/extension/hstore_plpythonu.control $INS_DIR/share/extension/insert_username--1.0.sql $INS_DIR/share/extension/insert_username--unpackaged--1.0.sql $INS_DIR/share/extension/insert_username.control $INS_DIR/share/extension/intagg--1.0--1.1.sql $INS_DIR/share/extension/intagg--1.1.sql $INS_DIR/share/extension/intagg--unpackaged--1.0.sql $INS_DIR/share/extension/intagg.control $INS_DIR/share/extension/intarray--1.0--1.1.sql $INS_DIR/share/extension/intarray--1.1--1.2.sql $INS_DIR/share/extension/intarray--1.2.sql $INS_DIR/share/extension/intarray--unpackaged--1.0.sql $INS_DIR/share/extension/intarray.control $INS_DIR/share/extension/isn--1.0--1.1.sql $INS_DIR/share/extension/isn--1.1--1.2.sql $INS_DIR/share/extension/isn--1.1.sql $INS_DIR/share/extension/isn--unpackaged--1.0.sql $INS_DIR/share/extension/isn.control $INS_DIR/share/extension/jsonb_plperl--1.0.sql $INS_DIR/share/extension/jsonb_plperl.control $INS_DIR/share/extension/jsonb_plperlu--1.0.sql $INS_DIR/share/extension/jsonb_plperlu.control $INS_DIR/share/extension/jsonb_plpython2u--1.0.sql $INS_DIR/share/extension/jsonb_plpython2u.control $INS_DIR/share/extension/jsonb_plpython3u--1.0.sql $INS_DIR/share/extension/jsonb_plpython3u.control $INS_DIR/share/extension/jsonb_plpythonu--1.0.sql $INS_DIR/share/extension/jsonb_plpythonu.control $INS_DIR/share/extension/lo--1.0--1.1.sql $INS_DIR/share/extension/lo--1.1.sql $INS_DIR/share/extension/lo--unpackaged--1.0.sql $INS_DIR/share/extension/lo.control $INS_DIR/share/extension/ltree--1.0--1.1.sql $INS_DIR/share/extension/ltree--1.1.sql $INS_DIR/share/extension/ltree--unpackaged--1.0.sql $INS_DIR/share/extension/ltree.control $INS_DIR/share/extension/ltree_plpython2u--1.0.sql $INS_DIR/share/extension/ltree_plpython2u.control $INS_DIR/share/extension/ltree_plpython3u--1.0.sql $INS_DIR/share/extension/ltree_plpython3u.control $INS_DIR/share/extension/ltree_plpythonu--1.0.sql $INS_DIR/share/extension/ltree_plpythonu.control $INS_DIR/share/extension/moddatetime--1.0.sql $INS_DIR/share/extension/moddatetime--unpackaged--1.0.sql $INS_DIR/share/extension/moddatetime.control $INS_DIR/share/extension/oracle_compatible--3.10--3.11.sql $INS_DIR/share/extension/oracle_compatible--3.11--3.12.sql $INS_DIR/share/extension/oracle_compatible--3.12--3.13.sql $INS_DIR/share/extension/oracle_compatible--3.13--3.14.sql $INS_DIR/share/extension/oracle_compatible--3.14--3.15.sql $INS_DIR/share/extension/oracle_compatible--3.15--3.16.sql $INS_DIR/share/extension/oracle_compatible--3.16--3.17.sql $INS_DIR/share/extension/oracle_compatible--3.17--3.18.sql $INS_DIR/share/extension/oracle_compatible--3.18.sql $INS_DIR/share/extension/oracle_compatible--3.2--3.3.sql $INS_DIR/share/extension/oracle_compatible--3.3--3.4.sql $INS_DIR/share/extension/oracle_compatible--3.4--3.5.sql $INS_DIR/share/extension/oracle_compatible--3.5--3.6.sql $INS_DIR/share/extension/oracle_compatible--3.6--3.7.sql $INS_DIR/share/extension/oracle_compatible--3.7--3.8.sql $INS_DIR/share/extension/oracle_compatible--3.8--3.9.sql $INS_DIR/share/extension/oracle_compatible--3.9--3.10.sql $INS_DIR/share/extension/oracle_compatible.control $INS_DIR/share/extension/pageinspect--1.0--1.1.sql $INS_DIR/share/extension/pageinspect--1.1--1.2.sql $INS_DIR/share/extension/pageinspect--1.2--1.3.sql $INS_DIR/share/extension/pageinspect--1.3--1.4.sql $INS_DIR/share/extension/pageinspect--1.4--1.5.sql $INS_DIR/share/extension/pageinspect--1.5--1.6.sql $INS_DIR/share/extension/pageinspect--1.5.sql $INS_DIR/share/extension/pageinspect--1.6--1.7.sql $INS_DIR/share/extension/pageinspect--unpackaged--1.0.sql $INS_DIR/share/extension/pageinspect.control $INS_DIR/share/extension/pg_buffercache--1.0--1.1.sql $INS_DIR/share/extension/pg_buffercache--1.1--1.2.sql $INS_DIR/share/extension/pg_buffercache--1.2--1.3.sql $INS_DIR/share/extension/pg_buffercache--1.2.sql $INS_DIR/share/extension/pg_buffercache--unpackaged--1.0.sql $INS_DIR/share/extension/pg_buffercache.control $INS_DIR/share/extension/pg_freespacemap--1.0--1.1.sql $INS_DIR/share/extension/pg_freespacemap--1.1--1.2.sql $INS_DIR/share/extension/pg_freespacemap--1.1.sql $INS_DIR/share/extension/pg_freespacemap--unpackaged--1.0.sql $INS_DIR/share/extension/pg_freespacemap.control $INS_DIR/share/extension/pg_prewarm--1.0--1.1.sql $INS_DIR/share/extension/pg_prewarm--1.1--1.2.sql $INS_DIR/share/extension/pg_prewarm--1.1.sql $INS_DIR/share/extension/pg_prewarm.control $INS_DIR/share/extension/pg_stat_statements--1.0--1.1.sql $INS_DIR/share/extension/pg_stat_statements--1.1--1.2.sql $INS_DIR/share/extension/pg_stat_statements--1.2--1.3.sql $INS_DIR/share/extension/pg_stat_statements--1.3--1.4.sql $INS_DIR/share/extension/pg_stat_statements--1.4--1.5.sql $INS_DIR/share/extension/pg_stat_statements--1.4.sql $INS_DIR/share/extension/pg_stat_statements--1.5--1.6.sql $INS_DIR/share/extension/pg_stat_statements--1.6--1.7.sql $INS_DIR/share/extension/pg_stat_statements--unpackaged--1.0.sql $INS_DIR/share/extension/pg_stat_statements.control $INS_DIR/share/extension/pg_trgm--1.0--1.1.sql $INS_DIR/share/extension/pg_trgm--1.1--1.2.sql $INS_DIR/share/extension/pg_trgm--1.2--1.3.sql $INS_DIR/share/extension/pg_trgm--1.3--1.4.sql $INS_DIR/share/extension/pg_trgm--1.3.sql $INS_DIR/share/extension/pg_trgm--unpackaged--1.0.sql $INS_DIR/share/extension/pg_trgm.control $INS_DIR/share/extension/pg_visibility--1.0--1.1.sql $INS_DIR/share/extension/pg_visibility--1.1--1.2.sql $INS_DIR/share/extension/pg_visibility--1.1.sql $INS_DIR/share/extension/pg_visibility.control $INS_DIR/share/extension/pgcrypto--1.0--1.1.sql $INS_DIR/share/extension/pgcrypto--1.1--1.2.sql $INS_DIR/share/extension/pgcrypto--1.2--1.3.sql $INS_DIR/share/extension/pgcrypto--1.3.sql $INS_DIR/share/extension/pgcrypto--unpackaged--1.0.sql $INS_DIR/share/extension/pgcrypto.control $INS_DIR/share/extension/pgrowlocks--1.0--1.1.sql $INS_DIR/share/extension/pgrowlocks--1.1--1.2.sql $INS_DIR/share/extension/pgrowlocks--1.2.sql $INS_DIR/share/extension/pgrowlocks--unpackaged--1.0.sql $INS_DIR/share/extension/pgrowlocks.control $INS_DIR/share/extension/pgstattuple--1.0--1.1.sql $INS_DIR/share/extension/pgstattuple--1.1--1.2.sql $INS_DIR/share/extension/pgstattuple--1.2--1.3.sql $INS_DIR/share/extension/pgstattuple--1.3--1.4.sql $INS_DIR/share/extension/pgstattuple--1.4--1.5.sql $INS_DIR/share/extension/pgstattuple--1.4.sql $INS_DIR/share/extension/pgstattuple--unpackaged--1.0.sql $INS_DIR/share/extension/pgstattuple.control $INS_DIR/share/extension/pgx_datamasking--1.0.sql $INS_DIR/share/extension/pgx_datamasking.control $INS_DIR/share/extension/pgx_loader--1.0.sql $INS_DIR/share/extension/pgx_loader.control $INS_DIR/share/extension/pgx_stat_latch--1.0.sql $INS_DIR/share/extension/pgx_stat_latch.control $INS_DIR/share/extension/pgx_stat_lwlock--1.0.sql $INS_DIR/share/extension/pgx_stat_lwlock.control $INS_DIR/share/extension/pgx_stat_sql--1.0.sql $INS_DIR/share/extension/pgx_stat_sql.control $INS_DIR/share/extension/pgx_stat_walwriter--1.0.sql $INS_DIR/share/extension/pgx_stat_walwriter.control $INS_DIR/share/extension/plperl--1.0.sql $INS_DIR/share/extension/plperl--unpackaged--1.0.sql $INS_DIR/share/extension/plperl.control $INS_DIR/share/extension/plperlu--1.0.sql $INS_DIR/share/extension/plperlu--unpackaged--1.0.sql $INS_DIR/share/extension/plperlu.control $INS_DIR/share/extension/plpgsql--1.0.sql $INS_DIR/share/extension/plpgsql--unpackaged--1.0.sql $INS_DIR/share/extension/plpgsql.control $INS_DIR/share/extension/plpython3u--1.0.sql $INS_DIR/share/extension/plpython3u--unpackaged--1.0.sql $INS_DIR/share/extension/plpython3u.control $INS_DIR/share/extension/pltcl--1.0.sql $INS_DIR/share/extension/pltcl--unpackaged--1.0.sql $INS_DIR/share/extension/pltcl.control $INS_DIR/share/extension/pltclu--1.0.sql $INS_DIR/share/extension/pltclu--unpackaged--1.0.sql $INS_DIR/share/extension/pltclu.control $INS_DIR/share/extension/postgres_fdw--1.0.sql $INS_DIR/share/extension/postgres_fdw.control $INS_DIR/share/extension/refint--1.0.sql $INS_DIR/share/extension/refint--unpackaged--1.0.sql $INS_DIR/share/extension/refint.control $INS_DIR/share/extension/seg--1.0--1.1.sql $INS_DIR/share/extension/seg--1.1--1.2.sql $INS_DIR/share/extension/seg--1.1.sql $INS_DIR/share/extension/seg--1.2--1.3.sql $INS_DIR/share/extension/seg--unpackaged--1.0.sql $INS_DIR/share/extension/seg.control $INS_DIR/share/extension/sslinfo--1.0--1.1.sql $INS_DIR/share/extension/sslinfo--1.1--1.2.sql $INS_DIR/share/extension/sslinfo--1.2.sql $INS_DIR/share/extension/sslinfo--unpackaged--1.0.sql $INS_DIR/share/extension/sslinfo.control $INS_DIR/share/extension/tablefunc--1.0.sql $INS_DIR/share/extension/tablefunc--unpackaged--1.0.sql $INS_DIR/share/extension/tablefunc.control $INS_DIR/share/extension/tcn--1.0.sql $INS_DIR/share/extension/tcn.control $INS_DIR/share/extension/tsm_system_rows--1.0.sql $INS_DIR/share/extension/tsm_system_rows.control $INS_DIR/share/extension/tsm_system_time--1.0.sql $INS_DIR/share/extension/tsm_system_time.control $INS_DIR/share/extension/unaccent--1.0--1.1.sql $INS_DIR/share/extension/unaccent--1.1.sql $INS_DIR/share/extension/unaccent--unpackaged--1.0.sql $INS_DIR/share/extension/unaccent.control $INS_DIR/share/extension/userlog--1.0.sql $INS_DIR/share/extension/userlog.control $INS_DIR/share/extension/uuid-ossp--1.0--1.1.sql $INS_DIR/share/extension/uuid-ossp--1.1.sql $INS_DIR/share/extension/uuid-ossp--unpackaged--1.0.sql $INS_DIR/share/extension/uuid-ossp.control $INS_DIR/share/extension/vci--2.0.sql $INS_DIR/share/extension/vci.control $INS_DIR/share/extension/vci_inspect--1.0--1.1.sql $INS_DIR/share/extension/vci_inspect--1.1.sql $INS_DIR/share/extension/vci_inspect.control $INS_DIR/share/extension/watchdog--1.0.sql $INS_DIR/share/extension/watchdog.control $INS_DIR/share/extension/xml2--1.0--1.1.sql $INS_DIR/share/extension/xml2--1.1.sql $INS_DIR/share/extension/xml2--unpackaged--1.0.sql $INS_DIR/share/extension/xml2.control $INS_DIR/share/fsepsvoi.service.sample $INS_DIR/share/information_schema.sql $INS_DIR/share/locale/cs/LC_MESSAGES/ecpg-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/ecpglib6-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/initdb-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/libpq5-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/pg_archivecleanup-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/pg_basebackup-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/pg_checksums-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/pg_controldata-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/pg_ctl-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/pg_dump-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/pg_resetwal-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/pg_rewind-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/pg_test_fsync-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/pg_test_timing-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/pg_upgrade-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/pg_waldump-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/pgscripts-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/plperl-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/plpgsql-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/plpython-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/pltcl-12.mo $INS_DIR/share/locale/cs/LC_MESSAGES/psql-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/ecpg-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/ecpglib6-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/initdb-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/libpq5-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/pg_archivecleanup-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/pg_basebackup-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/pg_checksums-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/pg_controldata-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/pg_ctl-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/pg_dump-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/pg_resetwal-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/pg_rewind-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/pg_test_fsync-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/pg_test_timing-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/pg_upgrade-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/pg_waldump-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/pgscripts-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/plperl-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/plpgsql-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/plpython-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/pltcl-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/postgres-12.mo $INS_DIR/share/locale/de/LC_MESSAGES/psql-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/cm_ctl-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/conmgr-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/ecpg-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/ecpglib6-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/initdb-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/libpq5-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/mc_ctl.mo $INS_DIR/share/locale/en/LC_MESSAGES/pg_archivecleanup-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/pg_basebackup-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/pg_controldata-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/pg_ctl-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/pg_dump-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/pg_resetwal-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/pg_rewind-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/pg_upgrade-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/pg_waldump-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/pgscripts-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/pgx_copy-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/pgx_dmpall-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/pgx_keystore-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/pgx_userlog_control-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/plperl-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/plpgsql-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/plpython-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/pltcl-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/postgres-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/psql-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/userlog-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/vci-12.mo $INS_DIR/share/locale/en/LC_MESSAGES/watchdog-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/ecpg-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/ecpglib6-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/initdb-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/libpq5-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/pg_archivecleanup-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/pg_basebackup-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/pg_checksums-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/pg_controldata-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/pg_ctl-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/pg_dump-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/pg_resetwal-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/pg_rewind-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/pg_test_fsync-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/pg_test_timing-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/pg_upgrade-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/pg_waldump-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/pgscripts-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/plperl-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/plpgsql-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/plpython-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/pltcl-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/postgres-12.mo $INS_DIR/share/locale/es/LC_MESSAGES/psql-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/ecpg-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/ecpglib6-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/initdb-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/libpq5-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/pg_archivecleanup-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/pg_checksums-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/pg_controldata-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/pg_ctl-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/pg_test_fsync-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/pg_test_timing-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/pg_upgrade-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/pg_waldump-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/plperl-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/plpgsql-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/plpython-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/pltcl-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/postgres-12.mo $INS_DIR/share/locale/fr/LC_MESSAGES/psql-12.mo $INS_DIR/share/locale/he/LC_MESSAGES/libpq5-12.mo $INS_DIR/share/locale/he/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/he/LC_MESSAGES/pg_ctl-12.mo $INS_DIR/share/locale/it/LC_MESSAGES/ecpg-12.mo $INS_DIR/share/locale/it/LC_MESSAGES/ecpglib6-12.mo $INS_DIR/share/locale/it/LC_MESSAGES/libpq5-12.mo $INS_DIR/share/locale/it/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/it/LC_MESSAGES/pg_controldata-12.mo $INS_DIR/share/locale/it/LC_MESSAGES/pg_ctl-12.mo $INS_DIR/share/locale/it/LC_MESSAGES/plperl-12.mo $INS_DIR/share/locale/it/LC_MESSAGES/plpgsql-12.mo $INS_DIR/share/locale/it/LC_MESSAGES/plpython-12.mo $INS_DIR/share/locale/it/LC_MESSAGES/pltcl-12.mo $INS_DIR/share/locale/it/LC_MESSAGES/postgres-12.mo $INS_DIR/share/locale/it/LC_MESSAGES/psql-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/cm_ctl-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/conmgr-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/ecpg-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/ecpglib6-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/initdb-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/libpq5-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/mc_ctl.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pg_archivecleanup-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pg_basebackup-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pg_checksums-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pg_controldata-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pg_ctl-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pg_dump-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pg_resetwal-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pg_rewind-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pg_test_fsync-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pg_test_timing-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pg_upgrade-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pg_waldump-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pgscripts-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pgx_copy-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pgx_dmpall-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pgx_keystore-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pgx_loader-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pgx_pclrsc-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pgx_userlog_control-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/plperl-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/plpgsql-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/plpython-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/pltcl-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/postgres-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/psql-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/userlog-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/vci-12.mo $INS_DIR/share/locale/ja/LC_MESSAGES/watchdog-12.mo $INS_DIR/share/locale/ko/LC_MESSAGES/ecpg-12.mo $INS_DIR/share/locale/ko/LC_MESSAGES/ecpglib6-12.mo $INS_DIR/share/locale/ko/LC_MESSAGES/libpq5-12.mo $INS_DIR/share/locale/ko/LC_MESSAGES/pg_checksums-12.mo $INS_DIR/share/locale/ko/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/ko/LC_MESSAGES/pg_controldata-12.mo $INS_DIR/share/locale/ko/LC_MESSAGES/pg_ctl-12.mo $INS_DIR/share/locale/ko/LC_MESSAGES/pg_test_fsync-12.mo $INS_DIR/share/locale/ko/LC_MESSAGES/pg_test_timing-12.mo $INS_DIR/share/locale/ko/LC_MESSAGES/pg_upgrade-12.mo $INS_DIR/share/locale/ko/LC_MESSAGES/plperl-12.mo $INS_DIR/share/locale/ko/LC_MESSAGES/plpgsql-12.mo $INS_DIR/share/locale/ko/LC_MESSAGES/plpython-12.mo $INS_DIR/share/locale/ko/LC_MESSAGES/pltcl-12.mo $INS_DIR/share/locale/ko/LC_MESSAGES/postgres-12.mo $INS_DIR/share/locale/pl/LC_MESSAGES/ecpg-12.mo $INS_DIR/share/locale/pl/LC_MESSAGES/ecpglib6-12.mo $INS_DIR/share/locale/pl/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/pl/LC_MESSAGES/pg_controldata-12.mo $INS_DIR/share/locale/pl/LC_MESSAGES/pg_ctl-12.mo $INS_DIR/share/locale/pl/LC_MESSAGES/pg_test_fsync-12.mo $INS_DIR/share/locale/pl/LC_MESSAGES/pg_test_timing-12.mo $INS_DIR/share/locale/pl/LC_MESSAGES/plperl-12.mo $INS_DIR/share/locale/pl/LC_MESSAGES/plpgsql-12.mo $INS_DIR/share/locale/pl/LC_MESSAGES/plpython-12.mo $INS_DIR/share/locale/pl/LC_MESSAGES/pltcl-12.mo $INS_DIR/share/locale/pl/LC_MESSAGES/postgres-12.mo $INS_DIR/share/locale/pt_BR/LC_MESSAGES/ecpg-12.mo $INS_DIR/share/locale/pt_BR/LC_MESSAGES/ecpglib6-12.mo $INS_DIR/share/locale/pt_BR/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/pt_BR/LC_MESSAGES/plperl-12.mo $INS_DIR/share/locale/pt_BR/LC_MESSAGES/plpgsql-12.mo $INS_DIR/share/locale/pt_BR/LC_MESSAGES/plpython-12.mo $INS_DIR/share/locale/ro/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/ro/LC_MESSAGES/plperl-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/ecpg-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/ecpglib6-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/initdb-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/libpq5-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/pg_archivecleanup-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/pg_basebackup-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/pg_checksums-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/pg_controldata-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/pg_ctl-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/pg_dump-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/pg_resetwal-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/pg_rewind-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/pg_test_fsync-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/pg_test_timing-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/pg_upgrade-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/pg_waldump-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/pgscripts-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/plperl-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/plpgsql-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/plpython-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/pltcl-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/postgres-12.mo $INS_DIR/share/locale/ru/LC_MESSAGES/psql-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/ecpg-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/ecpglib6-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/initdb-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/libpq5-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/pg_archivecleanup-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/pg_basebackup-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/pg_checksums-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/pg_controldata-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/pg_ctl-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/pg_dump-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/pg_resetwal-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/pg_rewind-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/pg_test_fsync-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/pg_test_timing-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/pg_upgrade-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/pg_waldump-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/pgscripts-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/plperl-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/plpgsql-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/plpython-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/pltcl-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/postgres-12.mo $INS_DIR/share/locale/sv/LC_MESSAGES/psql-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/ecpg-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/ecpglib6-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/initdb-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/libpq5-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/pg_archivecleanup-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/pg_basebackup-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/pg_checksums-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/pg_controldata-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/pg_ctl-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/pg_dump-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/pg_resetwal-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/pg_rewind-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/pg_test_fsync-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/pg_test_timing-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/pg_upgrade-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/pg_waldump-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/pgscripts-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/plperl-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/plpgsql-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/plpython-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/pltcl-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/postgres-12.mo $INS_DIR/share/locale/tr/LC_MESSAGES/psql-12.mo $INS_DIR/share/locale/uk/LC_MESSAGES/ecpg-12.mo $INS_DIR/share/locale/uk/LC_MESSAGES/ecpglib6-12.mo $INS_DIR/share/locale/uk/LC_MESSAGES/libpq5-12.mo $INS_DIR/share/locale/uk/LC_MESSAGES/pg_checksums-12.mo $INS_DIR/share/locale/uk/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/uk/LC_MESSAGES/pg_controldata-12.mo $INS_DIR/share/locale/uk/LC_MESSAGES/pg_ctl-12.mo $INS_DIR/share/locale/uk/LC_MESSAGES/pg_test_fsync-12.mo $INS_DIR/share/locale/uk/LC_MESSAGES/pg_test_timing-12.mo $INS_DIR/share/locale/uk/LC_MESSAGES/plpgsql-12.mo $INS_DIR/share/locale/uk/LC_MESSAGES/plpython-12.mo $INS_DIR/share/locale/uk/LC_MESSAGES/pltcl-12.mo $INS_DIR/share/locale/uk/LC_MESSAGES/psql-12.mo $INS_DIR/share/locale/vi/LC_MESSAGES/ecpg-12.mo $INS_DIR/share/locale/vi/LC_MESSAGES/ecpglib6-12.mo $INS_DIR/share/locale/vi/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/vi/LC_MESSAGES/pg_controldata-12.mo $INS_DIR/share/locale/vi/LC_MESSAGES/pg_test_fsync-12.mo $INS_DIR/share/locale/vi/LC_MESSAGES/pg_test_timing-12.mo $INS_DIR/share/locale/vi/LC_MESSAGES/plperl-12.mo $INS_DIR/share/locale/vi/LC_MESSAGES/plpgsql-12.mo $INS_DIR/share/locale/vi/LC_MESSAGES/plpython-12.mo $INS_DIR/share/locale/vi/LC_MESSAGES/pltcl-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/ecpg-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/ecpglib6-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/initdb-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/libpq5-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/pg_archivecleanup-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/pg_basebackup-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/pg_checksums-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/pg_controldata-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/pg_ctl-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/pg_dump-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/pg_resetwal-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/pg_rewind-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/pg_test_fsync-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/pg_test_timing-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/pg_upgrade-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/pg_waldump-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/pgscripts-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/plperl-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/plpgsql-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/plpython-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/pltcl-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/postgres-12.mo $INS_DIR/share/locale/zh_CN/LC_MESSAGES/psql-12.mo $INS_DIR/share/locale/zh_TW/LC_MESSAGES/ecpg-12.mo $INS_DIR/share/locale/zh_TW/LC_MESSAGES/pg_config-12.mo $INS_DIR/share/man/ja/man1/cm_ctl.1 $INS_DIR/share/man/ja/man1/mc_ctl.1 $INS_DIR/share/man/ja/man1/pg_ctl.1 $INS_DIR/share/man/ja/man1/pg_dumpall.1 $INS_DIR/share/man/ja/man1/pgx_dmpall.1 $INS_DIR/share/man/ja/man1/pgx_keystore.1 $INS_DIR/share/man/ja/man1/pgx_loader.1 $INS_DIR/share/man/ja/man1/pgx_pclrsc.1 $INS_DIR/share/man/ja/man1/pgx_rcvall.1 $INS_DIR/share/man/ja/man1/postgres.1 $INS_DIR/share/man/man1/clusterdb.1 $INS_DIR/share/man/man1/cm_ctl.1 $INS_DIR/share/man/man1/createdb.1 $INS_DIR/share/man/man1/createuser.1 $INS_DIR/share/man/man1/dropdb.1 $INS_DIR/share/man/man1/dropuser.1 $INS_DIR/share/man/man1/ecpg.1 $INS_DIR/share/man/man1/initdb.1 $INS_DIR/share/man/man1/mc_ctl.1 $INS_DIR/share/man/man1/oid2name.1 $INS_DIR/share/man/man1/pg_archivecleanup.1 $INS_DIR/share/man/man1/pg_basebackup.1 $INS_DIR/share/man/man1/pg_checksums.1 $INS_DIR/share/man/man1/pg_config.1 $INS_DIR/share/man/man1/pg_controldata.1 $INS_DIR/share/man/man1/pg_ctl.1 $INS_DIR/share/man/man1/pg_dump.1 $INS_DIR/share/man/man1/pg_dumpall.1 $INS_DIR/share/man/man1/pg_isready.1 $INS_DIR/share/man/man1/pg_receivewal.1 $INS_DIR/share/man/man1/pg_recvlogical.1 $INS_DIR/share/man/man1/pg_resetwal.1 $INS_DIR/share/man/man1/pg_restore.1 $INS_DIR/share/man/man1/pg_rewind.1 $INS_DIR/share/man/man1/pg_standby.1 $INS_DIR/share/man/man1/pg_test_fsync.1 $INS_DIR/share/man/man1/pg_test_timing.1 $INS_DIR/share/man/man1/pg_upgrade.1 $INS_DIR/share/man/man1/pg_waldump.1 $INS_DIR/share/man/man1/pgbench.1 $INS_DIR/share/man/man1/pgx_dmpall.1 $INS_DIR/share/man/man1/pgx_keystore.1 $INS_DIR/share/man/man1/pgx_loader.1 $INS_DIR/share/man/man1/pgx_pclrsc.1 $INS_DIR/share/man/man1/pgx_rcvall.1 $INS_DIR/share/man/man1/postgres.1 $INS_DIR/share/man/man1/postmaster.1 $INS_DIR/share/man/man1/psql.1 $INS_DIR/share/man/man1/reindexdb.1 $INS_DIR/share/man/man1/vacuumdb.1 $INS_DIR/share/man/man1/vacuumlo.1 $INS_DIR/share/man/man3/SPI_commit.3 $INS_DIR/share/man/man3/SPI_commit_and_chain.3 $INS_DIR/share/man/man3/SPI_connect.3 $INS_DIR/share/man/man3/SPI_connect_ext.3 $INS_DIR/share/man/man3/SPI_copytuple.3 $INS_DIR/share/man/man3/SPI_cursor_close.3 $INS_DIR/share/man/man3/SPI_cursor_fetch.3 $INS_DIR/share/man/man3/SPI_cursor_find.3 $INS_DIR/share/man/man3/SPI_cursor_move.3 $INS_DIR/share/man/man3/SPI_cursor_open.3 $INS_DIR/share/man/man3/SPI_cursor_open_with_args.3 $INS_DIR/share/man/man3/SPI_cursor_open_with_paramlist.3 $INS_DIR/share/man/man3/SPI_exec.3 $INS_DIR/share/man/man3/SPI_execp.3 $INS_DIR/share/man/man3/SPI_execute.3 $INS_DIR/share/man/man3/SPI_execute_plan.3 $INS_DIR/share/man/man3/SPI_execute_plan_with_paramlist.3 $INS_DIR/share/man/man3/SPI_execute_with_args.3 $INS_DIR/share/man/man3/SPI_finish.3 $INS_DIR/share/man/man3/SPI_fname.3 $INS_DIR/share/man/man3/SPI_fnumber.3 $INS_DIR/share/man/man3/SPI_freeplan.3 $INS_DIR/share/man/man3/SPI_freetuple.3 $INS_DIR/share/man/man3/SPI_freetuptable.3 $INS_DIR/share/man/man3/SPI_getargcount.3 $INS_DIR/share/man/man3/SPI_getargtypeid.3 $INS_DIR/share/man/man3/SPI_getbinval.3 $INS_DIR/share/man/man3/SPI_getnspname.3 $INS_DIR/share/man/man3/SPI_getrelname.3 $INS_DIR/share/man/man3/SPI_gettype.3 $INS_DIR/share/man/man3/SPI_gettypeid.3 $INS_DIR/share/man/man3/SPI_getvalue.3 $INS_DIR/share/man/man3/SPI_is_cursor_plan.3 $INS_DIR/share/man/man3/SPI_keepplan.3 $INS_DIR/share/man/man3/SPI_modifytuple.3 $INS_DIR/share/man/man3/SPI_palloc.3 $INS_DIR/share/man/man3/SPI_pfree.3 $INS_DIR/share/man/man3/SPI_prepare.3 $INS_DIR/share/man/man3/SPI_prepare_cursor.3 $INS_DIR/share/man/man3/SPI_prepare_params.3 $INS_DIR/share/man/man3/SPI_register_relation.3 $INS_DIR/share/man/man3/SPI_register_trigger_data.3 $INS_DIR/share/man/man3/SPI_repalloc.3 $INS_DIR/share/man/man3/SPI_result_code_string.3 $INS_DIR/share/man/man3/SPI_returntuple.3 $INS_DIR/share/man/man3/SPI_rollback.3 $INS_DIR/share/man/man3/SPI_rollback_and_chain.3 $INS_DIR/share/man/man3/SPI_saveplan.3 $INS_DIR/share/man/man3/SPI_scroll_cursor_fetch.3 $INS_DIR/share/man/man3/SPI_scroll_cursor_move.3 $INS_DIR/share/man/man3/SPI_start_transaction.3 $INS_DIR/share/man/man3/SPI_unregister_relation.3 $INS_DIR/share/man/man3/dblink.3 $INS_DIR/share/man/man3/dblink_build_sql_delete.3 $INS_DIR/share/man/man3/dblink_build_sql_insert.3 $INS_DIR/share/man/man3/dblink_build_sql_update.3 $INS_DIR/share/man/man3/dblink_cancel_query.3 $INS_DIR/share/man/man3/dblink_close.3 $INS_DIR/share/man/man3/dblink_connect.3 $INS_DIR/share/man/man3/dblink_connect_u.3 $INS_DIR/share/man/man3/dblink_disconnect.3 $INS_DIR/share/man/man3/dblink_error_message.3 $INS_DIR/share/man/man3/dblink_exec.3 $INS_DIR/share/man/man3/dblink_fetch.3 $INS_DIR/share/man/man3/dblink_get_connections.3 $INS_DIR/share/man/man3/dblink_get_notify.3 $INS_DIR/share/man/man3/dblink_get_pkey.3 $INS_DIR/share/man/man3/dblink_get_result.3 $INS_DIR/share/man/man3/dblink_is_busy.3 $INS_DIR/share/man/man3/dblink_open.3 $INS_DIR/share/man/man3/dblink_send_query.3 $INS_DIR/share/man/man7/ABORT.7 $INS_DIR/share/man/man7/ALTER_AGGREGATE.7 $INS_DIR/share/man/man7/ALTER_COLLATION.7 $INS_DIR/share/man/man7/ALTER_CONVERSION.7 $INS_DIR/share/man/man7/ALTER_DATABASE.7 $INS_DIR/share/man/man7/ALTER_DEFAULT_PRIVILEGES.7 $INS_DIR/share/man/man7/ALTER_DOMAIN.7 $INS_DIR/share/man/man7/ALTER_EVENT_TRIGGER.7 $INS_DIR/share/man/man7/ALTER_EXTENSION.7 $INS_DIR/share/man/man7/ALTER_FOREIGN_DATA_WRAPPER.7 $INS_DIR/share/man/man7/ALTER_FOREIGN_TABLE.7 $INS_DIR/share/man/man7/ALTER_FUNCTION.7 $INS_DIR/share/man/man7/ALTER_GROUP.7 $INS_DIR/share/man/man7/ALTER_INDEX.7 $INS_DIR/share/man/man7/ALTER_LANGUAGE.7 $INS_DIR/share/man/man7/ALTER_LARGE_OBJECT.7 $INS_DIR/share/man/man7/ALTER_MATERIALIZED_VIEW.7 $INS_DIR/share/man/man7/ALTER_OPERATOR.7 $INS_DIR/share/man/man7/ALTER_OPERATOR_CLASS.7 $INS_DIR/share/man/man7/ALTER_OPERATOR_FAMILY.7 $INS_DIR/share/man/man7/ALTER_POLICY.7 $INS_DIR/share/man/man7/ALTER_PROCEDURE.7 $INS_DIR/share/man/man7/ALTER_PUBLICATION.7 $INS_DIR/share/man/man7/ALTER_ROLE.7 $INS_DIR/share/man/man7/ALTER_ROUTINE.7 $INS_DIR/share/man/man7/ALTER_RULE.7 $INS_DIR/share/man/man7/ALTER_SCHEMA.7 $INS_DIR/share/man/man7/ALTER_SEQUENCE.7 $INS_DIR/share/man/man7/ALTER_SERVER.7 $INS_DIR/share/man/man7/ALTER_STATISTICS.7 $INS_DIR/share/man/man7/ALTER_SUBSCRIPTION.7 $INS_DIR/share/man/man7/ALTER_SYSTEM.7 $INS_DIR/share/man/man7/ALTER_TABLE.7 $INS_DIR/share/man/man7/ALTER_TABLESPACE.7 $INS_DIR/share/man/man7/ALTER_TEXT_SEARCH_CONFIGURATION.7 $INS_DIR/share/man/man7/ALTER_TEXT_SEARCH_DICTIONARY.7 $INS_DIR/share/man/man7/ALTER_TEXT_SEARCH_PARSER.7 $INS_DIR/share/man/man7/ALTER_TEXT_SEARCH_TEMPLATE.7 $INS_DIR/share/man/man7/ALTER_TRIGGER.7 $INS_DIR/share/man/man7/ALTER_TYPE.7 $INS_DIR/share/man/man7/ALTER_USER.7 $INS_DIR/share/man/man7/ALTER_USER_MAPPING.7 $INS_DIR/share/man/man7/ALTER_VIEW.7 $INS_DIR/share/man/man7/ANALYZE.7 $INS_DIR/share/man/man7/BEGIN.7 $INS_DIR/share/man/man7/CALL.7 $INS_DIR/share/man/man7/CHECKPOINT.7 $INS_DIR/share/man/man7/CLOSE.7 $INS_DIR/share/man/man7/CLUSTER.7 $INS_DIR/share/man/man7/COMMENT.7 $INS_DIR/share/man/man7/COMMIT.7 $INS_DIR/share/man/man7/COMMIT_PREPARED.7 $INS_DIR/share/man/man7/COPY.7 $INS_DIR/share/man/man7/CREATE_ACCESS_METHOD.7 $INS_DIR/share/man/man7/CREATE_AGGREGATE.7 $INS_DIR/share/man/man7/CREATE_CAST.7 $INS_DIR/share/man/man7/CREATE_COLLATION.7 $INS_DIR/share/man/man7/CREATE_CONVERSION.7 $INS_DIR/share/man/man7/CREATE_DATABASE.7 $INS_DIR/share/man/man7/CREATE_DOMAIN.7 $INS_DIR/share/man/man7/CREATE_EVENT_TRIGGER.7 $INS_DIR/share/man/man7/CREATE_EXTENSION.7 $INS_DIR/share/man/man7/CREATE_FOREIGN_DATA_WRAPPER.7 $INS_DIR/share/man/man7/CREATE_FOREIGN_TABLE.7 $INS_DIR/share/man/man7/CREATE_FUNCTION.7 $INS_DIR/share/man/man7/CREATE_GROUP.7 $INS_DIR/share/man/man7/CREATE_INDEX.7 $INS_DIR/share/man/man7/CREATE_LANGUAGE.7 $INS_DIR/share/man/man7/CREATE_MATERIALIZED_VIEW.7 $INS_DIR/share/man/man7/CREATE_OPERATOR.7 $INS_DIR/share/man/man7/CREATE_OPERATOR_CLASS.7 $INS_DIR/share/man/man7/CREATE_OPERATOR_FAMILY.7 $INS_DIR/share/man/man7/CREATE_POLICY.7 $INS_DIR/share/man/man7/CREATE_PROCEDURE.7 $INS_DIR/share/man/man7/CREATE_PUBLICATION.7 $INS_DIR/share/man/man7/CREATE_ROLE.7 $INS_DIR/share/man/man7/CREATE_RULE.7 $INS_DIR/share/man/man7/CREATE_SCHEMA.7 $INS_DIR/share/man/man7/CREATE_SEQUENCE.7 $INS_DIR/share/man/man7/CREATE_SERVER.7 $INS_DIR/share/man/man7/CREATE_STATISTICS.7 $INS_DIR/share/man/man7/CREATE_SUBSCRIPTION.7 $INS_DIR/share/man/man7/CREATE_TABLE.7 $INS_DIR/share/man/man7/CREATE_TABLESPACE.7 $INS_DIR/share/man/man7/CREATE_TABLE_AS.7 $INS_DIR/share/man/man7/CREATE_TEXT_SEARCH_CONFIGURATION.7 $INS_DIR/share/man/man7/CREATE_TEXT_SEARCH_DICTIONARY.7 $INS_DIR/share/man/man7/CREATE_TEXT_SEARCH_PARSER.7 $INS_DIR/share/man/man7/CREATE_TEXT_SEARCH_TEMPLATE.7 $INS_DIR/share/man/man7/CREATE_TRANSFORM.7 $INS_DIR/share/man/man7/CREATE_TRIGGER.7 $INS_DIR/share/man/man7/CREATE_TYPE.7 $INS_DIR/share/man/man7/CREATE_USER.7 $INS_DIR/share/man/man7/CREATE_USER_MAPPING.7 $INS_DIR/share/man/man7/CREATE_VIEW.7 $INS_DIR/share/man/man7/DEALLOCATE.7 $INS_DIR/share/man/man7/DECLARE.7 $INS_DIR/share/man/man7/DELETE.7 $INS_DIR/share/man/man7/DISCARD.7 $INS_DIR/share/man/man7/DO.7 $INS_DIR/share/man/man7/DROP_ACCESS_METHOD.7 $INS_DIR/share/man/man7/DROP_AGGREGATE.7 $INS_DIR/share/man/man7/DROP_CAST.7 $INS_DIR/share/man/man7/DROP_COLLATION.7 $INS_DIR/share/man/man7/DROP_CONVERSION.7 $INS_DIR/share/man/man7/DROP_DATABASE.7 $INS_DIR/share/man/man7/DROP_DOMAIN.7 $INS_DIR/share/man/man7/DROP_EVENT_TRIGGER.7 $INS_DIR/share/man/man7/DROP_EXTENSION.7 $INS_DIR/share/man/man7/DROP_FOREIGN_DATA_WRAPPER.7 $INS_DIR/share/man/man7/DROP_FOREIGN_TABLE.7 $INS_DIR/share/man/man7/DROP_FUNCTION.7 $INS_DIR/share/man/man7/DROP_GROUP.7 $INS_DIR/share/man/man7/DROP_INDEX.7 $INS_DIR/share/man/man7/DROP_LANGUAGE.7 $INS_DIR/share/man/man7/DROP_MATERIALIZED_VIEW.7 $INS_DIR/share/man/man7/DROP_OPERATOR.7 $INS_DIR/share/man/man7/DROP_OPERATOR_CLASS.7 $INS_DIR/share/man/man7/DROP_OPERATOR_FAMILY.7 $INS_DIR/share/man/man7/DROP_OWNED.7 $INS_DIR/share/man/man7/DROP_POLICY.7 $INS_DIR/share/man/man7/DROP_PROCEDURE.7 $INS_DIR/share/man/man7/DROP_PUBLICATION.7 $INS_DIR/share/man/man7/DROP_ROLE.7 $INS_DIR/share/man/man7/DROP_ROUTINE.7 $INS_DIR/share/man/man7/DROP_RULE.7 $INS_DIR/share/man/man7/DROP_SCHEMA.7 $INS_DIR/share/man/man7/DROP_SEQUENCE.7 $INS_DIR/share/man/man7/DROP_SERVER.7 $INS_DIR/share/man/man7/DROP_STATISTICS.7 $INS_DIR/share/man/man7/DROP_SUBSCRIPTION.7 $INS_DIR/share/man/man7/DROP_TABLE.7 $INS_DIR/share/man/man7/DROP_TABLESPACE.7 $INS_DIR/share/man/man7/DROP_TEXT_SEARCH_CONFIGURATION.7 $INS_DIR/share/man/man7/DROP_TEXT_SEARCH_DICTIONARY.7 $INS_DIR/share/man/man7/DROP_TEXT_SEARCH_PARSER.7 $INS_DIR/share/man/man7/DROP_TEXT_SEARCH_TEMPLATE.7 $INS_DIR/share/man/man7/DROP_TRANSFORM.7 $INS_DIR/share/man/man7/DROP_TRIGGER.7 $INS_DIR/share/man/man7/DROP_TYPE.7 $INS_DIR/share/man/man7/DROP_USER.7 $INS_DIR/share/man/man7/DROP_USER_MAPPING.7 $INS_DIR/share/man/man7/DROP_VIEW.7 $INS_DIR/share/man/man7/END.7 $INS_DIR/share/man/man7/EXECUTE.7 $INS_DIR/share/man/man7/EXPLAIN.7 $INS_DIR/share/man/man7/FETCH.7 $INS_DIR/share/man/man7/GRANT.7 $INS_DIR/share/man/man7/IMPORT_FOREIGN_SCHEMA.7 $INS_DIR/share/man/man7/INSERT.7 $INS_DIR/share/man/man7/LISTEN.7 $INS_DIR/share/man/man7/LOAD.7 $INS_DIR/share/man/man7/LOCK.7 $INS_DIR/share/man/man7/MOVE.7 $INS_DIR/share/man/man7/NOTIFY.7 $INS_DIR/share/man/man7/PREPARE.7 $INS_DIR/share/man/man7/PREPARE_TRANSACTION.7 $INS_DIR/share/man/man7/REASSIGN_OWNED.7 $INS_DIR/share/man/man7/REFRESH_MATERIALIZED_VIEW.7 $INS_DIR/share/man/man7/REINDEX.7 $INS_DIR/share/man/man7/RELEASE_SAVEPOINT.7 $INS_DIR/share/man/man7/RESET.7 $INS_DIR/share/man/man7/REVOKE.7 $INS_DIR/share/man/man7/ROLLBACK.7 $INS_DIR/share/man/man7/ROLLBACK_PREPARED.7 $INS_DIR/share/man/man7/ROLLBACK_TO_SAVEPOINT.7 $INS_DIR/share/man/man7/SAVEPOINT.7 $INS_DIR/share/man/man7/SECURITY_LABEL.7 $INS_DIR/share/man/man7/SELECT.7 $INS_DIR/share/man/man7/SELECT_INTO.7 $INS_DIR/share/man/man7/SET.7 $INS_DIR/share/man/man7/SET_CONSTRAINTS.7 $INS_DIR/share/man/man7/SET_ROLE.7 $INS_DIR/share/man/man7/SET_SESSION_AUTHORIZATION.7 $INS_DIR/share/man/man7/SET_TRANSACTION.7 $INS_DIR/share/man/man7/SHOW.7 $INS_DIR/share/man/man7/START_TRANSACTION.7 $INS_DIR/share/man/man7/TABLE.7 $INS_DIR/share/man/man7/TRUNCATE.7 $INS_DIR/share/man/man7/UNLISTEN.7 $INS_DIR/share/man/man7/UPDATE.7 $INS_DIR/share/man/man7/VACUUM.7 $INS_DIR/share/man/man7/VALUES.7 $INS_DIR/share/man/man7/WITH.7 $INS_DIR/share/mc_network.conf.sample $INS_DIR/share/mc_server.conf.sample $INS_DIR/share/mcoi.service.sample $INS_DIR/share/pg_hba.conf.sample $INS_DIR/share/pg_ident.conf.sample $INS_DIR/share/pg_service.conf.sample $INS_DIR/share/postgres.bki $INS_DIR/share/postgres.description $INS_DIR/share/postgres.shdescription $INS_DIR/share/postgresql.conf.sample $INS_DIR/share/psqlrc.sample $INS_DIR/share/rc_fsepsvoi.sample $INS_DIR/share/rc_mcoi.sample $INS_DIR/share/snowball_create.sql $INS_DIR/share/sql_features.txt $INS_DIR/share/system_views.sql $INS_DIR/share/timezone/Africa/Abidjan $INS_DIR/share/timezone/Africa/Accra $INS_DIR/share/timezone/Africa/Addis_Ababa $INS_DIR/share/timezone/Africa/Algiers $INS_DIR/share/timezone/Africa/Asmara $INS_DIR/share/timezone/Africa/Asmera $INS_DIR/share/timezone/Africa/Bamako $INS_DIR/share/timezone/Africa/Bangui $INS_DIR/share/timezone/Africa/Banjul $INS_DIR/share/timezone/Africa/Bissau $INS_DIR/share/timezone/Africa/Blantyre $INS_DIR/share/timezone/Africa/Brazzaville $INS_DIR/share/timezone/Africa/Bujumbura $INS_DIR/share/timezone/Africa/Cairo $INS_DIR/share/timezone/Africa/Casablanca $INS_DIR/share/timezone/Africa/Ceuta $INS_DIR/share/timezone/Africa/Conakry $INS_DIR/share/timezone/Africa/Dakar $INS_DIR/share/timezone/Africa/Dar_es_Salaam $INS_DIR/share/timezone/Africa/Djibouti $INS_DIR/share/timezone/Africa/Douala $INS_DIR/share/timezone/Africa/El_Aaiun $INS_DIR/share/timezone/Africa/Freetown $INS_DIR/share/timezone/Africa/Gaborone $INS_DIR/share/timezone/Africa/Harare $INS_DIR/share/timezone/Africa/Johannesburg $INS_DIR/share/timezone/Africa/Juba $INS_DIR/share/timezone/Africa/Kampala $INS_DIR/share/timezone/Africa/Khartoum $INS_DIR/share/timezone/Africa/Kigali $INS_DIR/share/timezone/Africa/Kinshasa $INS_DIR/share/timezone/Africa/Lagos $INS_DIR/share/timezone/Africa/Libreville $INS_DIR/share/timezone/Africa/Lome $INS_DIR/share/timezone/Africa/Luanda $INS_DIR/share/timezone/Africa/Lubumbashi $INS_DIR/share/timezone/Africa/Lusaka $INS_DIR/share/timezone/Africa/Malabo $INS_DIR/share/timezone/Africa/Maputo $INS_DIR/share/timezone/Africa/Maseru $INS_DIR/share/timezone/Africa/Mbabane $INS_DIR/share/timezone/Africa/Mogadishu $INS_DIR/share/timezone/Africa/Monrovia $INS_DIR/share/timezone/Africa/Nairobi $INS_DIR/share/timezone/Africa/Ndjamena $INS_DIR/share/timezone/Africa/Niamey $INS_DIR/share/timezone/Africa/Nouakchott $INS_DIR/share/timezone/Africa/Ouagadougou $INS_DIR/share/timezone/Africa/Porto-Novo $INS_DIR/share/timezone/Africa/Sao_Tome $INS_DIR/share/timezone/Africa/Timbuktu $INS_DIR/share/timezone/Africa/Tripoli $INS_DIR/share/timezone/Africa/Tunis $INS_DIR/share/timezone/Africa/Windhoek $INS_DIR/share/timezone/America/Adak $INS_DIR/share/timezone/America/Anchorage $INS_DIR/share/timezone/America/Anguilla $INS_DIR/share/timezone/America/Antigua $INS_DIR/share/timezone/America/Araguaina $INS_DIR/share/timezone/America/Argentina/Buenos_Aires $INS_DIR/share/timezone/America/Argentina/Catamarca $INS_DIR/share/timezone/America/Argentina/ComodRivadavia $INS_DIR/share/timezone/America/Argentina/Cordoba $INS_DIR/share/timezone/America/Argentina/Jujuy $INS_DIR/share/timezone/America/Argentina/La_Rioja $INS_DIR/share/timezone/America/Argentina/Mendoza $INS_DIR/share/timezone/America/Argentina/Rio_Gallegos $INS_DIR/share/timezone/America/Argentina/Salta $INS_DIR/share/timezone/America/Argentina/San_Juan $INS_DIR/share/timezone/America/Argentina/San_Luis $INS_DIR/share/timezone/America/Argentina/Tucuman $INS_DIR/share/timezone/America/Argentina/Ushuaia $INS_DIR/share/timezone/America/Aruba $INS_DIR/share/timezone/America/Asuncion $INS_DIR/share/timezone/America/Atikokan $INS_DIR/share/timezone/America/Atka $INS_DIR/share/timezone/America/Bahia $INS_DIR/share/timezone/America/Bahia_Banderas $INS_DIR/share/timezone/America/Barbados $INS_DIR/share/timezone/America/Belem $INS_DIR/share/timezone/America/Belize $INS_DIR/share/timezone/America/Blanc-Sablon $INS_DIR/share/timezone/America/Boa_Vista $INS_DIR/share/timezone/America/Bogota $INS_DIR/share/timezone/America/Boise $INS_DIR/share/timezone/America/Buenos_Aires $INS_DIR/share/timezone/America/Cambridge_Bay $INS_DIR/share/timezone/America/Campo_Grande $INS_DIR/share/timezone/America/Cancun $INS_DIR/share/timezone/America/Caracas $INS_DIR/share/timezone/America/Catamarca $INS_DIR/share/timezone/America/Cayenne $INS_DIR/share/timezone/America/Cayman $INS_DIR/share/timezone/America/Chicago $INS_DIR/share/timezone/America/Chihuahua $INS_DIR/share/timezone/America/Ciudad_Juarez $INS_DIR/share/timezone/America/Coral_Harbour $INS_DIR/share/timezone/America/Cordoba $INS_DIR/share/timezone/America/Costa_Rica $INS_DIR/share/timezone/America/Creston $INS_DIR/share/timezone/America/Cuiaba $INS_DIR/share/timezone/America/Curacao $INS_DIR/share/timezone/America/Danmarkshavn $INS_DIR/share/timezone/America/Dawson $INS_DIR/share/timezone/America/Dawson_Creek $INS_DIR/share/timezone/America/Denver $INS_DIR/share/timezone/America/Detroit $INS_DIR/share/timezone/America/Dominica $INS_DIR/share/timezone/America/Edmonton $INS_DIR/share/timezone/America/Eirunepe $INS_DIR/share/timezone/America/El_Salvador $INS_DIR/share/timezone/America/Ensenada $INS_DIR/share/timezone/America/Fort_Nelson $INS_DIR/share/timezone/America/Fort_Wayne $INS_DIR/share/timezone/America/Fortaleza $INS_DIR/share/timezone/America/Glace_Bay $INS_DIR/share/timezone/America/Godthab $INS_DIR/share/timezone/America/Goose_Bay $INS_DIR/share/timezone/America/Grand_Turk $INS_DIR/share/timezone/America/Grenada $INS_DIR/share/timezone/America/Guadeloupe $INS_DIR/share/timezone/America/Guatemala $INS_DIR/share/timezone/America/Guayaquil $INS_DIR/share/timezone/America/Guyana $INS_DIR/share/timezone/America/Halifax $INS_DIR/share/timezone/America/Havana $INS_DIR/share/timezone/America/Hermosillo $INS_DIR/share/timezone/America/Indiana/Indianapolis $INS_DIR/share/timezone/America/Indiana/Knox $INS_DIR/share/timezone/America/Indiana/Marengo $INS_DIR/share/timezone/America/Indiana/Petersburg $INS_DIR/share/timezone/America/Indiana/Tell_City $INS_DIR/share/timezone/America/Indiana/Vevay $INS_DIR/share/timezone/America/Indiana/Vincennes $INS_DIR/share/timezone/America/Indiana/Winamac $INS_DIR/share/timezone/America/Indianapolis $INS_DIR/share/timezone/America/Inuvik $INS_DIR/share/timezone/America/Iqaluit $INS_DIR/share/timezone/America/Jamaica $INS_DIR/share/timezone/America/Jujuy $INS_DIR/share/timezone/America/Juneau $INS_DIR/share/timezone/America/Kentucky/Louisville $INS_DIR/share/timezone/America/Kentucky/Monticello $INS_DIR/share/timezone/America/Knox_IN $INS_DIR/share/timezone/America/Kralendijk $INS_DIR/share/timezone/America/La_Paz $INS_DIR/share/timezone/America/Lima $INS_DIR/share/timezone/America/Los_Angeles $INS_DIR/share/timezone/America/Louisville $INS_DIR/share/timezone/America/Lower_Princes $INS_DIR/share/timezone/America/Maceio $INS_DIR/share/timezone/America/Managua $INS_DIR/share/timezone/America/Manaus $INS_DIR/share/timezone/America/Marigot $INS_DIR/share/timezone/America/Martinique $INS_DIR/share/timezone/America/Matamoros $INS_DIR/share/timezone/America/Mazatlan $INS_DIR/share/timezone/America/Mendoza $INS_DIR/share/timezone/America/Menominee $INS_DIR/share/timezone/America/Merida $INS_DIR/share/timezone/America/Metlakatla $INS_DIR/share/timezone/America/Mexico_City $INS_DIR/share/timezone/America/Miquelon $INS_DIR/share/timezone/America/Moncton $INS_DIR/share/timezone/America/Monterrey $INS_DIR/share/timezone/America/Montevideo $INS_DIR/share/timezone/America/Montreal $INS_DIR/share/timezone/America/Montserrat $INS_DIR/share/timezone/America/Nassau $INS_DIR/share/timezone/America/New_York $INS_DIR/share/timezone/America/Nipigon $INS_DIR/share/timezone/America/Nome $INS_DIR/share/timezone/America/Noronha $INS_DIR/share/timezone/America/North_Dakota/Beulah $INS_DIR/share/timezone/America/North_Dakota/Center $INS_DIR/share/timezone/America/North_Dakota/New_Salem $INS_DIR/share/timezone/America/Nuuk $INS_DIR/share/timezone/America/Ojinaga $INS_DIR/share/timezone/America/Panama $INS_DIR/share/timezone/America/Pangnirtung $INS_DIR/share/timezone/America/Paramaribo $INS_DIR/share/timezone/America/Phoenix $INS_DIR/share/timezone/America/Port-au-Prince $INS_DIR/share/timezone/America/Port_of_Spain $INS_DIR/share/timezone/America/Porto_Acre $INS_DIR/share/timezone/America/Porto_Velho $INS_DIR/share/timezone/America/Puerto_Rico $INS_DIR/share/timezone/America/Punta_Arenas $INS_DIR/share/timezone/America/Rainy_River $INS_DIR/share/timezone/America/Rankin_Inlet $INS_DIR/share/timezone/America/Recife $INS_DIR/share/timezone/America/Regina $INS_DIR/share/timezone/America/Resolute $INS_DIR/share/timezone/America/Rio_Branco $INS_DIR/share/timezone/America/Rosario $INS_DIR/share/timezone/America/Santa_Isabel $INS_DIR/share/timezone/America/Santarem $INS_DIR/share/timezone/America/Santiago $INS_DIR/share/timezone/America/Santo_Domingo $INS_DIR/share/timezone/America/Sao_Paulo $INS_DIR/share/timezone/America/Scoresbysund $INS_DIR/share/timezone/America/Shiprock $INS_DIR/share/timezone/America/Sitka $INS_DIR/share/timezone/America/St_Barthelemy $INS_DIR/share/timezone/America/St_Johns $INS_DIR/share/timezone/America/St_Kitts $INS_DIR/share/timezone/America/St_Lucia $INS_DIR/share/timezone/America/St_Thomas $INS_DIR/share/timezone/America/St_Vincent $INS_DIR/share/timezone/America/Swift_Current $INS_DIR/share/timezone/America/Tegucigalpa $INS_DIR/share/timezone/America/Thule $INS_DIR/share/timezone/America/Thunder_Bay $INS_DIR/share/timezone/America/Tijuana $INS_DIR/share/timezone/America/Toronto $INS_DIR/share/timezone/America/Tortola $INS_DIR/share/timezone/America/Vancouver $INS_DIR/share/timezone/America/Virgin $INS_DIR/share/timezone/America/Whitehorse $INS_DIR/share/timezone/America/Winnipeg $INS_DIR/share/timezone/America/Yakutat $INS_DIR/share/timezone/America/Yellowknife $INS_DIR/share/timezone/Antarctica/Casey $INS_DIR/share/timezone/Antarctica/Davis $INS_DIR/share/timezone/Antarctica/DumontDUrville $INS_DIR/share/timezone/Antarctica/Macquarie $INS_DIR/share/timezone/Antarctica/Mawson $INS_DIR/share/timezone/Antarctica/McMurdo $INS_DIR/share/timezone/Antarctica/Palmer $INS_DIR/share/timezone/Antarctica/Rothera $INS_DIR/share/timezone/Antarctica/South_Pole $INS_DIR/share/timezone/Antarctica/Syowa $INS_DIR/share/timezone/Antarctica/Troll $INS_DIR/share/timezone/Antarctica/Vostok $INS_DIR/share/timezone/Arctic/Longyearbyen $INS_DIR/share/timezone/Asia/Aden $INS_DIR/share/timezone/Asia/Almaty $INS_DIR/share/timezone/Asia/Amman $INS_DIR/share/timezone/Asia/Anadyr $INS_DIR/share/timezone/Asia/Aqtau $INS_DIR/share/timezone/Asia/Aqtobe $INS_DIR/share/timezone/Asia/Ashgabat $INS_DIR/share/timezone/Asia/Ashkhabad $INS_DIR/share/timezone/Asia/Atyrau $INS_DIR/share/timezone/Asia/Baghdad $INS_DIR/share/timezone/Asia/Bahrain $INS_DIR/share/timezone/Asia/Baku $INS_DIR/share/timezone/Asia/Bangkok $INS_DIR/share/timezone/Asia/Barnaul $INS_DIR/share/timezone/Asia/Beirut $INS_DIR/share/timezone/Asia/Bishkek $INS_DIR/share/timezone/Asia/Brunei $INS_DIR/share/timezone/Asia/Calcutta $INS_DIR/share/timezone/Asia/Chita $INS_DIR/share/timezone/Asia/Choibalsan $INS_DIR/share/timezone/Asia/Chongqing $INS_DIR/share/timezone/Asia/Chungking $INS_DIR/share/timezone/Asia/Colombo $INS_DIR/share/timezone/Asia/Dacca $INS_DIR/share/timezone/Asia/Damascus $INS_DIR/share/timezone/Asia/Dhaka $INS_DIR/share/timezone/Asia/Dili $INS_DIR/share/timezone/Asia/Dubai $INS_DIR/share/timezone/Asia/Dushanbe $INS_DIR/share/timezone/Asia/Famagusta $INS_DIR/share/timezone/Asia/Gaza $INS_DIR/share/timezone/Asia/Harbin $INS_DIR/share/timezone/Asia/Hebron $INS_DIR/share/timezone/Asia/Ho_Chi_Minh $INS_DIR/share/timezone/Asia/Hong_Kong $INS_DIR/share/timezone/Asia/Hovd $INS_DIR/share/timezone/Asia/Irkutsk $INS_DIR/share/timezone/Asia/Istanbul $INS_DIR/share/timezone/Asia/Jakarta $INS_DIR/share/timezone/Asia/Jayapura $INS_DIR/share/timezone/Asia/Jerusalem $INS_DIR/share/timezone/Asia/Kabul $INS_DIR/share/timezone/Asia/Kamchatka $INS_DIR/share/timezone/Asia/Karachi $INS_DIR/share/timezone/Asia/Kashgar $INS_DIR/share/timezone/Asia/Kathmandu $INS_DIR/share/timezone/Asia/Katmandu $INS_DIR/share/timezone/Asia/Khandyga $INS_DIR/share/timezone/Asia/Kolkata $INS_DIR/share/timezone/Asia/Krasnoyarsk $INS_DIR/share/timezone/Asia/Kuala_Lumpur $INS_DIR/share/timezone/Asia/Kuching $INS_DIR/share/timezone/Asia/Kuwait $INS_DIR/share/timezone/Asia/Macao $INS_DIR/share/timezone/Asia/Macau $INS_DIR/share/timezone/Asia/Magadan $INS_DIR/share/timezone/Asia/Makassar $INS_DIR/share/timezone/Asia/Manila $INS_DIR/share/timezone/Asia/Muscat $INS_DIR/share/timezone/Asia/Nicosia $INS_DIR/share/timezone/Asia/Novokuznetsk $INS_DIR/share/timezone/Asia/Novosibirsk $INS_DIR/share/timezone/Asia/Omsk $INS_DIR/share/timezone/Asia/Oral $INS_DIR/share/timezone/Asia/Phnom_Penh $INS_DIR/share/timezone/Asia/Pontianak $INS_DIR/share/timezone/Asia/Pyongyang $INS_DIR/share/timezone/Asia/Qatar $INS_DIR/share/timezone/Asia/Qostanay $INS_DIR/share/timezone/Asia/Qyzylorda $INS_DIR/share/timezone/Asia/Rangoon $INS_DIR/share/timezone/Asia/Riyadh $INS_DIR/share/timezone/Asia/Saigon $INS_DIR/share/timezone/Asia/Sakhalin $INS_DIR/share/timezone/Asia/Samarkand $INS_DIR/share/timezone/Asia/Seoul $INS_DIR/share/timezone/Asia/Shanghai $INS_DIR/share/timezone/Asia/Singapore $INS_DIR/share/timezone/Asia/Srednekolymsk $INS_DIR/share/timezone/Asia/Taipei $INS_DIR/share/timezone/Asia/Tashkent $INS_DIR/share/timezone/Asia/Tbilisi $INS_DIR/share/timezone/Asia/Tehran $INS_DIR/share/timezone/Asia/Tel_Aviv $INS_DIR/share/timezone/Asia/Thimbu $INS_DIR/share/timezone/Asia/Thimphu $INS_DIR/share/timezone/Asia/Tokyo $INS_DIR/share/timezone/Asia/Tomsk $INS_DIR/share/timezone/Asia/Ujung_Pandang $INS_DIR/share/timezone/Asia/Ulaanbaatar $INS_DIR/share/timezone/Asia/Ulan_Bator $INS_DIR/share/timezone/Asia/Urumqi $INS_DIR/share/timezone/Asia/Ust-Nera $INS_DIR/share/timezone/Asia/Vientiane $INS_DIR/share/timezone/Asia/Vladivostok $INS_DIR/share/timezone/Asia/Yakutsk $INS_DIR/share/timezone/Asia/Yangon $INS_DIR/share/timezone/Asia/Yekaterinburg $INS_DIR/share/timezone/Asia/Yerevan $INS_DIR/share/timezone/Atlantic/Azores $INS_DIR/share/timezone/Atlantic/Bermuda $INS_DIR/share/timezone/Atlantic/Canary $INS_DIR/share/timezone/Atlantic/Cape_Verde $INS_DIR/share/timezone/Atlantic/Faeroe $INS_DIR/share/timezone/Atlantic/Faroe $INS_DIR/share/timezone/Atlantic/Jan_Mayen $INS_DIR/share/timezone/Atlantic/Madeira $INS_DIR/share/timezone/Atlantic/Reykjavik $INS_DIR/share/timezone/Atlantic/South_Georgia $INS_DIR/share/timezone/Atlantic/St_Helena $INS_DIR/share/timezone/Atlantic/Stanley $INS_DIR/share/timezone/Australia/ACT $INS_DIR/share/timezone/Australia/Adelaide $INS_DIR/share/timezone/Australia/Brisbane $INS_DIR/share/timezone/Australia/Broken_Hill $INS_DIR/share/timezone/Australia/Canberra $INS_DIR/share/timezone/Australia/Currie $INS_DIR/share/timezone/Australia/Darwin $INS_DIR/share/timezone/Australia/Eucla $INS_DIR/share/timezone/Australia/Hobart $INS_DIR/share/timezone/Australia/LHI $INS_DIR/share/timezone/Australia/Lindeman $INS_DIR/share/timezone/Australia/Lord_Howe $INS_DIR/share/timezone/Australia/Melbourne $INS_DIR/share/timezone/Australia/NSW $INS_DIR/share/timezone/Australia/North $INS_DIR/share/timezone/Australia/Perth $INS_DIR/share/timezone/Australia/Queensland $INS_DIR/share/timezone/Australia/South $INS_DIR/share/timezone/Australia/Sydney $INS_DIR/share/timezone/Australia/Tasmania $INS_DIR/share/timezone/Australia/Victoria $INS_DIR/share/timezone/Australia/West $INS_DIR/share/timezone/Australia/Yancowinna $INS_DIR/share/timezone/Brazil/Acre $INS_DIR/share/timezone/Brazil/DeNoronha $INS_DIR/share/timezone/Brazil/East $INS_DIR/share/timezone/Brazil/West $INS_DIR/share/timezone/CET $INS_DIR/share/timezone/CST6CDT $INS_DIR/share/timezone/Canada/Atlantic $INS_DIR/share/timezone/Canada/Central $INS_DIR/share/timezone/Canada/Eastern $INS_DIR/share/timezone/Canada/Mountain $INS_DIR/share/timezone/Canada/Newfoundland $INS_DIR/share/timezone/Canada/Pacific $INS_DIR/share/timezone/Canada/Saskatchewan $INS_DIR/share/timezone/Canada/Yukon $INS_DIR/share/timezone/Chile/Continental $INS_DIR/share/timezone/Chile/EasterIsland $INS_DIR/share/timezone/Cuba $INS_DIR/share/timezone/EET $INS_DIR/share/timezone/EST $INS_DIR/share/timezone/EST5EDT $INS_DIR/share/timezone/Egypt $INS_DIR/share/timezone/Eire $INS_DIR/share/timezone/Etc/GMT $INS_DIR/share/timezone/Etc/GMT+0 $INS_DIR/share/timezone/Etc/GMT+1 $INS_DIR/share/timezone/Etc/GMT+10 $INS_DIR/share/timezone/Etc/GMT+11 $INS_DIR/share/timezone/Etc/GMT+12 $INS_DIR/share/timezone/Etc/GMT+2 $INS_DIR/share/timezone/Etc/GMT+3 $INS_DIR/share/timezone/Etc/GMT+4 $INS_DIR/share/timezone/Etc/GMT+5 $INS_DIR/share/timezone/Etc/GMT+6 $INS_DIR/share/timezone/Etc/GMT+7 $INS_DIR/share/timezone/Etc/GMT+8 $INS_DIR/share/timezone/Etc/GMT+9 $INS_DIR/share/timezone/Etc/GMT-0 $INS_DIR/share/timezone/Etc/GMT-1 $INS_DIR/share/timezone/Etc/GMT-10 $INS_DIR/share/timezone/Etc/GMT-11 $INS_DIR/share/timezone/Etc/GMT-12 $INS_DIR/share/timezone/Etc/GMT-13 $INS_DIR/share/timezone/Etc/GMT-14 $INS_DIR/share/timezone/Etc/GMT-2 $INS_DIR/share/timezone/Etc/GMT-3 $INS_DIR/share/timezone/Etc/GMT-4 $INS_DIR/share/timezone/Etc/GMT-5 $INS_DIR/share/timezone/Etc/GMT-6 $INS_DIR/share/timezone/Etc/GMT-7 $INS_DIR/share/timezone/Etc/GMT-8 $INS_DIR/share/timezone/Etc/GMT-9 $INS_DIR/share/timezone/Etc/GMT0 $INS_DIR/share/timezone/Etc/Greenwich $INS_DIR/share/timezone/Etc/UCT $INS_DIR/share/timezone/Etc/UTC $INS_DIR/share/timezone/Etc/Universal $INS_DIR/share/timezone/Etc/Zulu $INS_DIR/share/timezone/Europe/Amsterdam $INS_DIR/share/timezone/Europe/Andorra $INS_DIR/share/timezone/Europe/Astrakhan $INS_DIR/share/timezone/Europe/Athens $INS_DIR/share/timezone/Europe/Belfast $INS_DIR/share/timezone/Europe/Belgrade $INS_DIR/share/timezone/Europe/Berlin $INS_DIR/share/timezone/Europe/Bratislava $INS_DIR/share/timezone/Europe/Brussels $INS_DIR/share/timezone/Europe/Bucharest $INS_DIR/share/timezone/Europe/Budapest $INS_DIR/share/timezone/Europe/Busingen $INS_DIR/share/timezone/Europe/Chisinau $INS_DIR/share/timezone/Europe/Copenhagen $INS_DIR/share/timezone/Europe/Dublin $INS_DIR/share/timezone/Europe/Gibraltar $INS_DIR/share/timezone/Europe/Guernsey $INS_DIR/share/timezone/Europe/Helsinki $INS_DIR/share/timezone/Europe/Isle_of_Man $INS_DIR/share/timezone/Europe/Istanbul $INS_DIR/share/timezone/Europe/Jersey $INS_DIR/share/timezone/Europe/Kaliningrad $INS_DIR/share/timezone/Europe/Kiev $INS_DIR/share/timezone/Europe/Kirov $INS_DIR/share/timezone/Europe/Kyiv $INS_DIR/share/timezone/Europe/Lisbon $INS_DIR/share/timezone/Europe/Ljubljana $INS_DIR/share/timezone/Europe/London $INS_DIR/share/timezone/Europe/Luxembourg $INS_DIR/share/timezone/Europe/Madrid $INS_DIR/share/timezone/Europe/Malta $INS_DIR/share/timezone/Europe/Mariehamn $INS_DIR/share/timezone/Europe/Minsk $INS_DIR/share/timezone/Europe/Monaco $INS_DIR/share/timezone/Europe/Moscow $INS_DIR/share/timezone/Europe/Nicosia $INS_DIR/share/timezone/Europe/Oslo $INS_DIR/share/timezone/Europe/Paris $INS_DIR/share/timezone/Europe/Podgorica $INS_DIR/share/timezone/Europe/Prague $INS_DIR/share/timezone/Europe/Riga $INS_DIR/share/timezone/Europe/Rome $INS_DIR/share/timezone/Europe/Samara $INS_DIR/share/timezone/Europe/San_Marino $INS_DIR/share/timezone/Europe/Sarajevo $INS_DIR/share/timezone/Europe/Saratov $INS_DIR/share/timezone/Europe/Simferopol $INS_DIR/share/timezone/Europe/Skopje $INS_DIR/share/timezone/Europe/Sofia $INS_DIR/share/timezone/Europe/Stockholm $INS_DIR/share/timezone/Europe/Tallinn $INS_DIR/share/timezone/Europe/Tirane $INS_DIR/share/timezone/Europe/Tiraspol $INS_DIR/share/timezone/Europe/Ulyanovsk $INS_DIR/share/timezone/Europe/Uzhgorod $INS_DIR/share/timezone/Europe/Vaduz $INS_DIR/share/timezone/Europe/Vatican $INS_DIR/share/timezone/Europe/Vienna $INS_DIR/share/timezone/Europe/Vilnius $INS_DIR/share/timezone/Europe/Volgograd $INS_DIR/share/timezone/Europe/Warsaw $INS_DIR/share/timezone/Europe/Zagreb $INS_DIR/share/timezone/Europe/Zaporozhye $INS_DIR/share/timezone/Europe/Zurich $INS_DIR/share/timezone/Factory $INS_DIR/share/timezone/GB $INS_DIR/share/timezone/GB-Eire $INS_DIR/share/timezone/GMT $INS_DIR/share/timezone/GMT+0 $INS_DIR/share/timezone/GMT-0 $INS_DIR/share/timezone/GMT0 $INS_DIR/share/timezone/Greenwich $INS_DIR/share/timezone/HST $INS_DIR/share/timezone/Hongkong $INS_DIR/share/timezone/Iceland $INS_DIR/share/timezone/Indian/Antananarivo $INS_DIR/share/timezone/Indian/Chagos $INS_DIR/share/timezone/Indian/Christmas $INS_DIR/share/timezone/Indian/Cocos $INS_DIR/share/timezone/Indian/Comoro $INS_DIR/share/timezone/Indian/Kerguelen $INS_DIR/share/timezone/Indian/Mahe $INS_DIR/share/timezone/Indian/Maldives $INS_DIR/share/timezone/Indian/Mauritius $INS_DIR/share/timezone/Indian/Mayotte $INS_DIR/share/timezone/Indian/Reunion $INS_DIR/share/timezone/Iran $INS_DIR/share/timezone/Israel $INS_DIR/share/timezone/Jamaica $INS_DIR/share/timezone/Japan $INS_DIR/share/timezone/Kwajalein $INS_DIR/share/timezone/Libya $INS_DIR/share/timezone/MET $INS_DIR/share/timezone/MST $INS_DIR/share/timezone/MST7MDT $INS_DIR/share/timezone/Mexico/BajaNorte $INS_DIR/share/timezone/Mexico/BajaSur $INS_DIR/share/timezone/Mexico/General $INS_DIR/share/timezone/NZ $INS_DIR/share/timezone/NZ-CHAT $INS_DIR/share/timezone/Navajo $INS_DIR/share/timezone/PRC $INS_DIR/share/timezone/PST8PDT $INS_DIR/share/timezone/Pacific/Apia $INS_DIR/share/timezone/Pacific/Auckland $INS_DIR/share/timezone/Pacific/Bougainville $INS_DIR/share/timezone/Pacific/Chatham $INS_DIR/share/timezone/Pacific/Chuuk $INS_DIR/share/timezone/Pacific/Easter $INS_DIR/share/timezone/Pacific/Efate $INS_DIR/share/timezone/Pacific/Enderbury $INS_DIR/share/timezone/Pacific/Fakaofo $INS_DIR/share/timezone/Pacific/Fiji $INS_DIR/share/timezone/Pacific/Funafuti $INS_DIR/share/timezone/Pacific/Galapagos $INS_DIR/share/timezone/Pacific/Gambier $INS_DIR/share/timezone/Pacific/Guadalcanal $INS_DIR/share/timezone/Pacific/Guam $INS_DIR/share/timezone/Pacific/Honolulu $INS_DIR/share/timezone/Pacific/Johnston $INS_DIR/share/timezone/Pacific/Kanton $INS_DIR/share/timezone/Pacific/Kiritimati $INS_DIR/share/timezone/Pacific/Kosrae $INS_DIR/share/timezone/Pacific/Kwajalein $INS_DIR/share/timezone/Pacific/Majuro $INS_DIR/share/timezone/Pacific/Marquesas $INS_DIR/share/timezone/Pacific/Midway $INS_DIR/share/timezone/Pacific/Nauru $INS_DIR/share/timezone/Pacific/Niue $INS_DIR/share/timezone/Pacific/Norfolk $INS_DIR/share/timezone/Pacific/Noumea $INS_DIR/share/timezone/Pacific/Pago_Pago $INS_DIR/share/timezone/Pacific/Palau $INS_DIR/share/timezone/Pacific/Pitcairn $INS_DIR/share/timezone/Pacific/Pohnpei $INS_DIR/share/timezone/Pacific/Ponape $INS_DIR/share/timezone/Pacific/Port_Moresby $INS_DIR/share/timezone/Pacific/Rarotonga $INS_DIR/share/timezone/Pacific/Saipan $INS_DIR/share/timezone/Pacific/Samoa $INS_DIR/share/timezone/Pacific/Tahiti $INS_DIR/share/timezone/Pacific/Tarawa $INS_DIR/share/timezone/Pacific/Tongatapu $INS_DIR/share/timezone/Pacific/Truk $INS_DIR/share/timezone/Pacific/Wake $INS_DIR/share/timezone/Pacific/Wallis $INS_DIR/share/timezone/Pacific/Yap $INS_DIR/share/timezone/Poland $INS_DIR/share/timezone/Portugal $INS_DIR/share/timezone/ROC $INS_DIR/share/timezone/ROK $INS_DIR/share/timezone/Singapore $INS_DIR/share/timezone/Turkey $INS_DIR/share/timezone/UCT $INS_DIR/share/timezone/US/Alaska $INS_DIR/share/timezone/US/Aleutian $INS_DIR/share/timezone/US/Arizona $INS_DIR/share/timezone/US/Central $INS_DIR/share/timezone/US/East-Indiana $INS_DIR/share/timezone/US/Eastern $INS_DIR/share/timezone/US/Hawaii $INS_DIR/share/timezone/US/Indiana-Starke $INS_DIR/share/timezone/US/Michigan $INS_DIR/share/timezone/US/Mountain $INS_DIR/share/timezone/US/Pacific $INS_DIR/share/timezone/US/Samoa $INS_DIR/share/timezone/UTC $INS_DIR/share/timezone/Universal $INS_DIR/share/timezone/W-SU $INS_DIR/share/timezone/WET $INS_DIR/share/timezone/Zulu $INS_DIR/share/timezone/posixrules $INS_DIR/share/timezonesets/Africa.txt $INS_DIR/share/timezonesets/America.txt $INS_DIR/share/timezonesets/Antarctica.txt $INS_DIR/share/timezonesets/Asia.txt $INS_DIR/share/timezonesets/Atlantic.txt $INS_DIR/share/timezonesets/Australia $INS_DIR/share/timezonesets/Australia.txt $INS_DIR/share/timezonesets/Default $INS_DIR/share/timezonesets/Etc.txt $INS_DIR/share/timezonesets/Europe.txt $INS_DIR/share/timezonesets/India $INS_DIR/share/timezonesets/Indian.txt $INS_DIR/share/timezonesets/Pacific.txt $INS_DIR/share/tool/ImplicitCastSample.zip $INS_DIR/share/tsearch_data/danish.stop $INS_DIR/share/tsearch_data/dutch.stop $INS_DIR/share/tsearch_data/english.stop $INS_DIR/share/tsearch_data/finnish.stop $INS_DIR/share/tsearch_data/french.stop $INS_DIR/share/tsearch_data/german.stop $INS_DIR/share/tsearch_data/hungarian.stop $INS_DIR/share/tsearch_data/hunspell_sample.affix $INS_DIR/share/tsearch_data/hunspell_sample_long.affix $INS_DIR/share/tsearch_data/hunspell_sample_long.dict $INS_DIR/share/tsearch_data/hunspell_sample_num.affix $INS_DIR/share/tsearch_data/hunspell_sample_num.dict $INS_DIR/share/tsearch_data/ispell_sample.affix $INS_DIR/share/tsearch_data/ispell_sample.dict $INS_DIR/share/tsearch_data/italian.stop $INS_DIR/share/tsearch_data/nepali.stop $INS_DIR/share/tsearch_data/norwegian.stop $INS_DIR/share/tsearch_data/portuguese.stop $INS_DIR/share/tsearch_data/russian.stop $INS_DIR/share/tsearch_data/spanish.stop $INS_DIR/share/tsearch_data/swedish.stop $INS_DIR/share/tsearch_data/synonym_sample.syn $INS_DIR/share/tsearch_data/thesaurus_sample.ths $INS_DIR/share/tsearch_data/turkish.stop $INS_DIR/share/tsearch_data/unaccent.rules $INS_DIR/share/tsearch_data/xsyn_sample.rules $INS_DIR/share/zabbix/mc/bin/disconnect_standby.sh $INS_DIR/share/zabbix/mc/bin/promote_standby.sh $INS_DIR/share/zabbix/mc/bin/sanity_check.sh $INS_DIR/share/zabbix/mc/bin/stop_db.sh $INS_DIR/share/zabbix/mc/etc/fsep.conf $INS_DIR/share/zabbix/mc/template/Template_App_Mirroring_Controller.xml $INS_DIR/share/zabbix/mc/zabbix_agentd.conf.d/userparameter_mc.conf -------------------------------------------------------------------------------