------------------------------------------------------------------------------- Fix Number: FJSVfsep-SV-OPJ-1702-1 Product Names and Versions: Windows64-EM64T Fujitsu Enterprise Postgres Advanced Edition 17/17SP1/17SP2 Creation date: 14.11.2025 ------------------------------------------------------------------------------- [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 2024-2025 FUJITSU LIMITED ------------------------------------------------------------------------------- [Notes] - This patch can be applied only to the database server. - Please ensure that the following steps are carried out before applying or restoring this patch. - Stop all the running instances and Mirroring Controller. - Apply the following patches at the same time. - FJSVfsep-SV-1702-3.msi - FJSVfsep-SV-OPJ-1702-3.msi - FJSVfsep-SV-CM-1702-3.msi - FJSVfsep-AUDIT-1702-3.msi - If you are using any of the following OSS, execute the following command. - oracle_fdw - pg_hint_plan - pg_dbms_stats - pgaudit [Execute command] If the version of OSS does not change as a result of applying or restoring this fix, implement the following. 1) Open a command prompt with administrative rights. 2) Run the following command. > xcopy /E "\OSS\\*" ^ "" "": Indicates the OSS name. If the version of OSS changes as a result of this fix, implement the following. 1) Open a command prompt with administrative rights. 2) Run the following command. > xcopy /E "\OSS\\*" ^ "" 3) Perform an ALTER EXTENSION on a database that uses OSS. > psql postgres=# ALTER EXTENSION UPDATE; "": Indicates the OSS name. 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.10 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 - This patch includes the programs written in Perl licensed under the GNU GENERAL PUBLIC LICENSE Version 1. The source code of the programs will be provided on request at cost for a period of three years from the date of shipment of this product, or for the term of the maintenance support agreement entered into for this product, whichever is longer. Contact Fujitsu technical support if you require the source code. - If you apply this patch you will be able to use new features of Fujitsu Enterprise Postgres 17 SP2. When using these features, apply one of the following fixes at the same time. - Client features (32bit) (Windows): T017851WP-04 and later - Client features (64bit) (Windows): T017852XP-04 and later - Client features (64bit) (RHEL 8): T017853LP-04 and later - Client features (64bit) (RHEL 9): T017854LP-04 and later - Client features (64bit) (SUSE 15): T017855LP-04 and later To use new feature, refer to the Fujitsu Enterprise Postgres 17 SP2 documentation. https://www.postgresql.fastware.com/product-manuals New features are listed in "Chapter 1 New Features and Improvements" in the Release Notes. ------------------------------------------------------------------------------- [Description] Fix Number: FJSVfsep-SV-OPJ-1702--2 01 PH23796 Provides the ability to monitor the startup process of the standby server and detach the standby server if the startup process is unresponsive. [Configuration File] Server Configuration File for the Database Servers of Mirroring Controller. [Parameter Details] Parameter name: startup_process_check_timeout Value set: timeout period (in seconds) for monitoring an error during startup process monitoring. Specify a number between 1 and 2147483647. Parameter meaning: If this parameter is not specified, startup process monitoring is disabled. If this parameter is specified, startup process monitoring is enabled. A startup process error is considered to have occurred if WAL waiting to be applied has not been applied for at least the specified number of seconds. Note: This parameter takes effect when the server is running as a standby server. The startup process monitor checks WAL application status at the interval specified by db_instance_check_interval. This delays detection of the no-response state by an interval of at most db_instance_check_interval. To stop and disconnect the standby server automatically when an error is detected, set shutdown_detached_synchronous_standby to on. Set the monitoring time in consideration of the possibility that WAL application on the standby side might be delayed due to server parameter settings. For example, the max_standby_streaming_delay and recovery_min_apply_delay parameters delay WAL application. Set the monitoring time parameter so that the startup process is not mistakenly detected as unresponsive due to the effects of these parameter settings. 02 PH24374 Provide pgvector for Windows Fujitsu Enterprise Postgres ------------------------------------------------------------------------------- [Patch Description] The following fixes are included in this patch: Fix Number: FJSVfsep-SV-OPJ-1702-1 01 PH23702 [ ]Security failure [*]Serious failure ([*]Degradation) [ ]Incompatibility does not exist / [*]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description An application that uses "Application Connection Switch Feature" may take a long time to reconnect to the database. - Requirements to reproduce this issue 1) The application uses one of the following client interfaces, and - ODBC driver - C language library (libpq) - Embedded SQL in C - Embedded SQL in COBOL - Python language package (psycopg) 2) The application of 1) uses "Application Connection Switch Feature", and 3) Among the servers listed in the connection destination in 2), the network cannot be reached because, for example, the server listed above is not running, and 4) servers listed below have the attributes specified by target_session_attrs, and 5) Multiple connections are made with the same connection string without terminating the application process described in 1). - Action Fix the processing for the second and subsequent connections in the same process. Also, Modify the Connection Manager User's Guide to refer to the connection process. - Compatibility Information - Compatibility Information - Summary Change the order of the servers to be connected to the second or subsequent time in the same process by using "Application Connection Switch Feature". - Environment It may occur under the following conditions. 1) The application uses one of the following client interfaces, and - ODBC driver - C language library (libpq) - Embedded SQL in C - Embedded SQL in COBOL - Python language package (psycopg) 2) The application of 1) uses "Application Connection Switch Feature", and 3) Among the servers listed in the connection destination in 2), the network cannot be reached because, for example, the server listed above is not running, and 4) servers listed below have the attributes specified by target_session_attrs, and 5) Multiple connections are made with the same connection string without terminating the application process described in 1). - Products combination of this compatibility problem Attempting to connect to the server multiple times in the same process by using "Application Connection Switch Feature". - Reason of conflictions Fix the processing for the second and subsequent connections in the same process. - Impacts When you use "Application Connection Switch Feature", the order of the servers attempting to connect is changed, so the order of the servers attempting to connect from the application may change before and after this fix is applied. - Functional items (Summary, Before/After of migration) Change the order of the servers to be connected in the application using "Application Connection Switch Feature". [Before] For the second and subsequent connections in the same process, connect first to the server with the attribute specified by target_session_attrs. For example, if you specify host=host1, host2,host3, and target_session_attrs=read-write in a keyword-value connection string, and host2 is the primary server on the first connection, the application attempts to connect in that order host2,host3,host1. Always make connections in the order specified in the connection string. For example, if you specify host=host1,host2,host3 in a keyword-value connection string, the application always attempts to connect in the order host1,host2,host3. [After] For the second and subsequent connections in the same process, connect first to the server with the attribute specified by target_session_attrs. For example, if you specify host=host1, host2,host3, and target_session_attrs=read-write in a keyword-value connection string, and host2 is the primary server on the first connection, the application attempts to connect in that order host2,host1,host3. However, when using Connection Manager and the connection string specifies multiple connection destinations, connection attempts will proceed in the order specified in the connection string, even for the second and subsequent connection attempts, once a connection to the conmgr process has been successfully established. However, when using Connection Manager and the connection string specifies multiple connection destinations, connection attempts will proceed in the order specified in the connection string, even for the second and subsequent connection attempts, once a connection to the conmgr process has been successfully established. - Preventive Method None. - Back out method of the functions None. - User action It is the same as the Preventive Method. 02 PH24962 [*]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 17.7 apply to Fujitsu Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of PostgreSQL 17.7 to Fujitsu Enterprise Postgres. You can see applied changes in the below URL. https://www.postgresql.org/docs/17/release-17-7.html - Action Apply the changes of PostgreSQL 17 to Fujitsu Enterprise Postgres. - Compatibility Information None. ------------------------------------------------------------------------------- [Accumulated Patches] The following fixes are included in this patch: Fix Number: FJSVfsep-SV-OPJ-1702-0 01 PH23888 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([ ]Always / [*]Rarely / [ ]Irregularly) - Description When executing DDL statements, including DROP statements, in an environment utilizing audit logging, the backend process may encounter a segmentation fault. - Requirements to reproduce this issue It may occur under the following conditions. 1) Using audit log feature(pgaudit), and 2) CREATE EXTENSION pgaudit has been executed on the target database, and 3) One of the following DDL statements is executed, and - CREATE - ALTER - DROP - SECURITY LABEL - COMMENT - SELECT INTO - REFRESH MATERIALIZED VIEW - IMPORT FOREIGN SCHEMA - GRANT - REVOKE 4) The DDL statement executed in step 3) is excluded from logging by the parameters in the rule section of the pgaudit configuration file. Furthermore, the likelihood of this issue increases with the number of objects processed by a single SQL statement; for example, when a DDL statement in step 3) includes a CASCADE clause. - Action Fix the audit log processing for DDL statements. - Compatibility Information None. 02 PH24735 [*]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 17.6 apply to Fujitsu Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of PostgreSQL 17.6 to Fujitsu Enterprise Postgres. You can see applied changes in the below URL. https://www.postgresql.org/docs/17/release-17-6.html - Action Apply the changes of PostgreSQL 17 to Fujitsu Enterprise Postgres. - Compatibility Information None. 03 PH24767 [ ]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 4.14.0, 4.14.1, 4.14.2, 4.14.3, 4.14.4 apply to Fujitsu Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of orafce 4.14.0, 4.14.1, 4.14.2, 4.14.3, 4.14.4 to Fujitsu Enterprise Postgres. You can see applied changes in the below URL. https://github.com/orafce/orafce/releases/tag/VERSION_4_14_0 https://github.com/orafce/orafce/releases/tag/VERSION_4_14_1 https://github.com/orafce/orafce/releases/tag/VERSION_4_14_2 https://github.com/orafce/orafce/releases/tag/VERSION_4_14_3 https://github.com/orafce/orafce/releases/tag/VERSION_4_14_4 - Action Apply the changes of orafce to Fujitsu Enterprise Postgres. - Compatibility Information The following incompatibility has been observed: - Remove SECURITY DEFINER attribute from dbms_alert.signal. 04 PH24768 [ ]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.5.2 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.5.2 to Fujitsu Enterprise Postgres. You can see applied changes in the below URL. https://github.com/reorg/pg_repack/releases/tag/ver_1.5.2 - Action Apply the changes of pg_repack to Fujitsu Enterprise Postgres. - Compatibility Information The following incompatibility has been observed: - Allow non-superusers to run pg_repack via option "--no-superuser-check". - Change the "--error-on-invalid-index" option to the default behavior. - Change the acquired lock mode to SHARE UPDATE EXCLUSIVE. This prevents concurrent execution of VACUUM and ANALYZE. 05 PH24770 [ ]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.8.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.8.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_8_0 - Action Apply the changes of oracle_fdw to Fujitsu Enterprise Postgres. - Compatibility Information The following incompatibility has been observed: - Modify IMPORT FOREIGN SCHEMA command to properly import the table with the same name as the index: - Do not push down LIMIT clauses. 06 PH24777 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description Executing SQL after executing a procedure that contains cursor may cause the following errors: pgaudit stack is not empty - Requirements to reproduce this issue This may occur when the following conditions are satisfied: 1) The audit log feature (pgaudit) is used. AND 2) Execute the procedure contains cursor. AND 3) Execute SQL. - Action In the audit log feature, fix the processing for checking whether SQL statements are audited. - Compatibility Information None. 07 PH24779 [ ]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 pgvector 0.8.0 apply to Fujitsu Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of pgvector 0.8.0 to Fujitsu Enterprise Postgres. You can see applied changes in the below URL. https://github.com/pgvector/pgvector/blob/master/CHANGELOG.md - Action Apply the changes of pgvector to Fujitsu Enterprise Postgres. - Compatibility Information None. 08 PH24788 [ ]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 OpenLDAP 2.5.20 apply to Fujitsu Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of OpenLDAP 2.5.20 to Fujitsu Enterprise Postgres. You can see applied changes in the below URL. https://git.openldap.org/openldap/openldap/-/blob/ OPENLDAP_REL_ENG_2_5/CHANGES - Action Apply the changes of OpenLDAP to Fujitsu Enterprise Postgres. - Compatibility Information None. 09 PH24789 [*]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 libxml2 2.13.7, 2.13.8 apply to Fujitsu Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of libxml2 2.13.7, 2.13.8 to Fujitsu Enterprise Postgres. You can see applied changes in the below URLs. https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.13.7 https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.13.8 - Action Apply the changes of libxml2 to Fujitsu Enterprise Postgres. - Compatibility Information None. 10 PH24790 [*]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 libxslt 1.1.43 apply to Fujitsu Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of libxslt 1.1.43 to Fujitsu Enterprise Postgres. You can see applied changes in the below URL. https://gitlab.gnome.org/GNOME/libxslt/-/releases/v1.1.43 - Action Apply the changes of libxslt to Fujitsu Enterprise Postgres. - Compatibility Information None. 11 PH24791 [ ]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 OpenSSL 3.0.17 apply to Fujitsu Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of OpenSSL 3.0.17 to Fujitsu Enterprise Postgres. You can see applied changes in the below URL. https://openssl-library.org/news/openssl-3.0-notes/ - Action Apply the changes of OpenSSL to Fujitsu Enterprise Postgres. - Compatibility Information None. 12 PH24792 [ ]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 Zstandard 1.5.7 apply to Fujitsu Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of Zstandard 1.5.7 to Fujitsu Enterprise Postgres. You can see applied changes in the below URL. https://github.com/facebook/zstd/releases/tag/v1.5.7 - Action Apply the changes of Zstandard to Fujitsu Enterprise Postgres. - Compatibility Information None. Fix Number: FJSVfsep-SV-OPJ-1702--1 01 PH24533 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description pgaudit might output one more column in the audit log. - Requirements to reproduce this issue It may occur under the following conditions. 1) Session Audit Logging of the audit log feature is used, and 2) Set log_statement_once to on in pgaudit.conf, and 3) Multiple lines of audit logs are output for each SQL log in the following format, and - Referring to multiple objects in a query or subquery or internal processing, or - There are multiple rule sections in pgaudit.conf and some of the output ranges of the SQL log overlap. 4) Execute SQL that satisfies the condition 3). - Action Fix logging of audit logs when log_statement_once is set to on. - Compatibility Information None. 02 PH24554 [*]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 17.5 apply to Fujitsu Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of PostgreSQL 17.5 to Fujitsu Enterprise Postgres. You can see applied changes in the below URL. https://www.postgresql.org/docs/17/release-17-5.html - Action Apply the changes of PostgreSQL 17 to Fujitsu Enterprise Postgres. - Compatibility Information None. Fix Number: FJSVfsep-SV-OPJ-1702--2 01 PH23718 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description The timeout may not work for the cm_ctl command and the cm_ctl command may not complete execution. - Requirements to reproduce this issue It may occur under the one of following conditions: [Requirements to reproduce this issue 1] 1) The operating system used is Linux, and 2) The conmgr process is not responding, and 3) Execute the cm_ctl status command with the -i option specified. [Requirements to reproduce this issue 2] 1) The operating system used is Windows, and 2) The conmgr process is not responding, and 3) Execute the cm_ctl status command. [Requirements to reproduce this issue 3] 1) Execute the cm_ctl start command, and 2) The commgr process that was started is not responding. [Requirements to reproduce this issue 4] 1) The conmgr process is not responding, and 2) Execute the cm_ctl stop command. - Action Fix the timeout feature to work properly with the cm_ctl command. - Compatibility Information None. 02 PH23950 [ ]Security failure [ ]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([ ]Always / [*]Rarely / [ ]Irregularly) - Description File descriptor leaks can occur when using the transparent data encryption feature with key management system. - Requirements to reproduce this issue [Requirements to reproduce Issue 1] 1) Using transparent data encryption with key management systems, and 2) When the following SQL function is executed. - pgx_open_keystore() - pgx_declare_external_master_key() [Requirements to reproduce Issue 2] 1) Using transparent data encryption with key management systems, and 2) Enabling automatic opening of the keystore, and 3) Starting the instance. - Action Fix process to operate the obfuscated credential file. - Compatibility Information None. 03 PH23980 [ ]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description The disk monitoring processing on the Mirroring Controller may not be able to detect anomalies in the storage device. - Requirements to reproduce this issue 1) Using the Mirroring Controller feature, and 2) Using the volume management software that operates below the file system layer, such as PRIMECLUSTER GDS, and 3) The software in 2) is configured to not return I/O errors to the file system when a storage device returns an I/O error for a particular I/O request (*). * For example, in the case of PRIMECLUSTER GDS, the system panic mode setting of I/O Monitor Option is on. - Action Fix the file operation processing in the disk monitoring processing on the Mirroring Controller. - Compatibility Information None. 04 PH24405 [*]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 17.1, 17.2, 17.3 and 17.4 apply to Fujitsu Enterprise Postgres. - Requirements to reproduce this issue There is no particular condition because this fix applies the changes of PostgreSQL 17.1, 17.2, 17.3 and 17.4 to Fujitsu Enterprise Postgres. You can see applied changes in the below URL. https://www.postgresql.org/docs/17/release-17-1.html https://www.postgresql.org/docs/17/release-17-2.html https://www.postgresql.org/docs/17/release-17-3.html https://www.postgresql.org/docs/17/release-17-4.html - Action Apply the changes of PostgreSQL 17 to Fujitsu Enterprise Postgres. - Compatibility Information None. 05 PH24415 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description This fix reflects fixes up to OpenLDAP 2.5.19 in this product and does not indicate any specific symptoms. - Requirements to reproduce this issue This fix reflects fixes up to OpenLDAP 2.5.19 in this product and has no specific occurrence conditions. The version of OpenLDAP in which this product reflects the correction is as follows. - Enterprise Postgres 13, 13SP1, 13SP1A, 14, 14SP1, 15, 15SP1 2.4.56 - Enterprise Postgres 15SP2 2.5.16 - Enterprise Postgres 16, 16SP1 2.5.17 - Enterprise Postgres 17 2.5.18 - Symfoware Server V12.8.0 2.4.56 - Symfoware Server V12.9.0 2.5.16 To check the details of the changes up to OpenLDAP 2.5.19, see the OpenLDAP release notes. https://www.openldap.org/software/release/changes_lts.html - Action Apply OpenLDAP changes to the product. - Compatibility Information None. 06 PH24416 [ ]Security failure [ ]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description This fix reflects fixes up to libedit 3.1-20250104 in this product and does not indicate any specific symptoms. - Requirements to reproduce this issue This fix reflects fixes up to libedit 3.1-20250104 in this product and has no specific occurrence conditions. The version of libedit in which this product reflects the correction is as follows. - Enterprise Postgres 13, 13SP1, 13SP1A 3.1-20191231 - Enterprise Postgres 14, 14SP1, 15, 15SP1, 15SP2 3.1-20210910 - Enterprise Postgres 16, 16SP1 3.1-20230828 - Enterprise Postgres 17 3.1-20240808 - Symfoware Server V12.8.0, V12.9.0 3.1-20210910 To check the details of the changes up to libedit 3.1-20250104, see the libedit ChangeLog. https://www.thrysoee.dk/editline/ - Action Apply libedit changes to the product. - Compatibility Information None. 07 PH24417 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description This fix reflects fixes up to libxml2 2.13.5 in this product and does not indicate any specific symptoms. - Requirements to reproduce this issue This fix reflects fixes up to libxml2 2.13.5 in this product and has no specific occurrence conditions. The version of libxml2 in which this product reflects the correction is as follows. - Enterprise Postgres 13, 13SP1, 13SP1A, 14, 14SP1, 15, 15SP1, 15SP2 2.9.10 - Enterprise Postgres 16, 16SP1 2.9.14 - Enterprise Postgres 17 2.13.4 - Symfoware Server V12.8.0, V12.9.0 2.9.10 To check the details of the changes up to libxml2 2.13.5, see the libxml2 release notes. https://gitlab.gnome.org/GNOME/libxml2/-/releases/v2.13.5 - Action Apply libxml2 changes to the product. - Compatibility Information None. 08 PH24418 [ ]Security failure [ ]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description This fix reflects fixes up to libiconv 1.18 in this product and does not indicate any specific symptoms. - Requirements to reproduce this issue This fix reflects fixes up to libiconv 1.18 in this product and has no specific occurrence conditions. The version of libiconv in which this product reflects the correction is as follows. - Enterprise Postgres 13, 13SP1, 13SP1A, 14, 14SP1, 15, 15SP1, 15SP2 1.16 - Enterprise Postgres 16, 16SP1, 17 1.17 - Symfoware Server V12.8.0, V12.9.0 1.16 To check the details of the changes up to libiconv 1.18, see the libiconv News. https://savannah.gnu.org/news/?id=10703 - Action Apply libiconv changes to the product. - Compatibility Information None. 09 PH24424 [ ]Security failure [ ]Serious failure ([ ]Degradation) [ ]Incompatibility does not exist / [*]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description This issue reflects the bug fixes absorbed in orafce version 4.13.5 in Fujitsu Enterprise Postgres without any specific symptoms. - Requirements to reproduce this issue This issue reflects the bug fixes absorbed in orafce version 4.13.5 in Fujitsu Enterprise Postgres without any specific symptoms. For a list of defects that are fixed in this case, please visit: https://github.com/orafce/orafce/releases/tag/VERSION_4_13_5 - Action Fix orafce processing on which Fujitsu Enterprise Postgres is based. - Compatibility Information - Summary Fix orafce processing on which Fujitsu Enterprise Postgres is based. - Environment This can occur if the following conditions are met: 1) An empty string is passed to the to_date (txt, fmt) function. - Products combination of this compatibility problem An empty string is passed to the to_date (txt, fmt) function after applying this fix. - Reason of conflictions This change was made to match the specifications of the Oracle database. - Impacts If the condition is met, the return value is NULL if an empty string is passed. Therefore, the application must be modified to handle NULL values. - Functional items (Summary, Before/After of migration) The return value of to_date (txt, fmt) when passed an empty string has changed. [Before] This method returns' 0001-01-01BC '. [After] The method returns NULL. - Preventive Method If an empty character string might be specified for the to_date (txt, fmt) function, take one of (1) and (2) below. (1)Add a process to check for an empty string in advance, and if it is, modify it to retrieve (txt, fmt) instead of executing the to_date function. (2)Modify the processing using the to_date (txt, fmt) function so that NULL returns the same behavior as before: - Back out method of the functions No. - User action Same as the corrective action. 10 PH24440 [*]Security failure [*]Serious failure ([ ]Degradation) [*]Incompatibility does not exist / [ ]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description This fix reflects fixes up to OpenSSL 3.0.16 in this product and does not indicate any specific symptoms. - Requirements to reproduce this issue This fix reflects fixes up to OpenSSL 3.0.16 in this product and has no specific occurrence conditions. The version of OpenSSL in which this product reflects the correction is as follows. - Enterprise Postgres 13, 13SP1, 13SP1A, 14, 14SP1, 15, 15SP1 1.1.1 - Enterprise Postgres 15SP2 3.0.12 - Enterprise Postgres 16, 16SP1 3.0.13 - Enterprise Postgres 17 3.0.15 - Symfoware Server V12.8.0 1.1.1 - Symfoware Server V12.9.0 3.0.12 To check the details of the changes up to OpenSSL 3.0.16, see the OpenSSL release notes. https://openssl-library.org/news/openssl-3.0-notes/ - Action Apply OpenSSL changes to the product. - Compatibility Information None. 11 PH24473 [*]Security failure [*]Serious failure ([ ]Degradation) [ ]Incompatibility does not exist / [*]Incompatibility exists - Frequency ([*]Always / [ ]Rarely / [ ]Irregularly) - Description This fix reflects fixes up to OpenJDK 8 Update 432 in this product and does not indicate any specific symptoms. - Requirements to reproduce this issue This fix reflects fixes up to OpenJDK 8 Update 432 in this product and does not indicate any specific symptoms. The version of OpenJDK 8 in which this product reflects the correction is as follows. - Enterprise Postgres 12SP1, 12SP1A, 12SP1B, 13, 13SP1, 13SP1A, 14, 14SP1, 15, 15SP1, 15SP2, 16, 16SP1, 17 Update 302 - Symfoware Server V12.6.0A, V12.7.0, V12.8.0, V12.9.0 Update 302 To check the details of the changes up to OpenJDK 8 Update 432, see the OpenJDK release notes. https://wiki.openjdk.org/display/jdk8u ->Releases->Most recent and past release details: And, refer to the folder and files below for the name, version and license conditions of software included in OpenJDK. - \doc\Licence\ - \mc\jdk8 \THIRD_PARTY_README - \mc\jdk8 \THIRDPARTYLICENSE-FREETYPE.txt - \mc\jdk8 \lib\visualvm\license\netbeans_platform\ - Action Apply OpenJDK changes to the product. - Compatibility Information - Summary A) The Mirroring Controller no longer supports SSL connections using TLS1.0 and TLS1.1. B) The Mirroring Controller no longer supports SSL connections using the following elliptic curve cryptography algorithms: - secp112r* - secp128r* - secp160* - secp192* - secp224* - secp256k1 - sect113r* - sect131r* - sect163* - sect193r* - sect233* - sect239k1 - sect283* - sect409* - sect571* - X9.62 c2tnb191v* - X9.62 c2tnb239v* - X9.62 c2tnb359v1 - X9.62 c2tnb431r1 - X9.62 prime192v2 - X9.62 prime192v3 - X9.62 prime239v* - brainpoolP256r1 - brainpoolP320r1 - brainpoolP384r1 - brainpoolP512r1 C) The default protocol for SSL connections on the Mirroring Controller has been changed to TLS1.3. D) The following root certificates can no longer be used to establish an SSL connection with the Mirroring Controller: - Alias name: entrustevca [jdk] - Alias name: entrustrootcaec1 [jdk] - Alias name: entrustrootcag2 [jdk] - Alias name: entrustrootcag4 [jdk] - Alias name: entrust2048ca [jdk] - Alias name: affirmtrustcommercialca [jdk] - Alias name: affirmtrustnetworkingca [jdk] - Alias name: affirmtrustpremiumca [jdk] - Alias name: affirmtrustpremiumeccca [jdk] - Alias Name: thawtepremiumserverca [jdk] - Alias Name: verisignclass2g2ca [jdk] - Alias Name: verisignclass3ca [jdk] - Alias Name: verisignclass3g2ca [jdk] - Alias Name: verisigntsaca [jdk] - Alias Name: soneraclass2ca - Alias Name: identrustdstx3 [jdk] - Alias Name: globalsignr2ca [jdk] - Alias Name: secomscrootca1 [jdk] E) The Mirroring Controller can no longer use the TLS_ECH_* cipher suite during SSL connections. F) The use of TLS1.0 and TSL1.1 is disabled when WebAdmin is configured to use HTTPS connections. - Environment It may occur under the following conditions. [Issue-A,B,C,D or E] 1) Mirroring Controller connects to the database instance via the SSL connection after applying this fix. [Issue-F] 1) WebAdmin uses the https protocol after applying this fix. - Products combination of this compatibility problem When the Mirroring Controller or WebAdmin is used after applying this fix. - Reason of conflictions The updates of OpenJDK are applied by this fix. - Impacts [Issue-A,B,C,D or E] 1) If it matches the condition, it may fails to start the Mirroring Controller. [Issue-F] 1) If it matches the condition, it may fails to login to the WebAdmin. - Functional items (Summary, Before/After of migration) The implementations of OpenJDK communications used by Mirroring Controller and WebAdmin are changed. - Preventive Method A) If ssl_min_protocol or ssl_max_protocol is set to allow only TLS1.0 or TLS1.1, change it to allow TLS1.2 or later. B) Change ssl_ecdh_curve to an allowed elliptic curve. C) Set ssl_min_protocol or ssl_max_protocol to allow TLS1.3 connections. D) If you are using an applicable root certificate, change it to a valid root certificate. E) Change ssl_cipher to use a cipher suite other than TLS_ECDH_*. F) To access WebAdmin, use a browser that supports TLS1.2 or later. - Back out method of the functions None. - User action It is the same as the Preventive Method. ------------------------------------------------------------------------------- [List of fixed files] Files replaced by the patch: [InstallFolder]\FJQSS\fjqss_tool1\CollectionInfo.html [InstallFolder]\FJQSS\fjqss_tool1\CollectionInfo.txt [InstallFolder]\FJQSS\fjqss_tool1\CollectionInfoEn.html [InstallFolder]\FJQSS\fjqss_tool1\CollectionInfoEn.txt [InstallFolder]\FJQSS\fjqss_tool1\F3QSTOLE.bat [InstallFolder]\FJQSS\fjqss_tool1\F3QSTOLR.bat [InstallFolder]\FJQSS\fjqss_tool1\F3QSTOOL.exe [InstallFolder]\FJQSS\fjqss_tool1\FJQSSConf.txt [InstallFolder]\FJQSS\fjqss_tool1\env\EZversion_c.txt [InstallFolder]\FJQSS\fjqss_tool1\env\EZversion_euc.txt [InstallFolder]\FJQSS\fjqss_tool1\env\EZversion_sjis.txt [InstallFolder]\FJQSS\fjqss_tool1\env\EZversion_utf8.txt [InstallFolder]\FJQSS\fjqss_tool1\env \F3GWIILI.prod15531.qss15530 Fujitsu Enterprise Postgres.17.ILI [InstallFolder]\FJQSS\fjqss_tool1\env \F3GWIILI.prod15531.qss15530 Fujitsu Enterprise Postgres.17.ILI_C [InstallFolder]\FJQSS\fjqss_tool1\env\FJQSS-ArcVL.txt [InstallFolder]\FJQSS\fjqss_tool1\env\outline_c.txt [InstallFolder]\FJQSS\fjqss_tool1\env\outline_euc.txt [InstallFolder]\FJQSS\fjqss_tool1\env\outline_sjis.txt [InstallFolder]\FJQSS\fjqss_tool1\env\outline_utf8.txt [InstallFolder]\FJQSS\fjqss_tool2\CollectionInfo.html [InstallFolder]\FJQSS\fjqss_tool2\CollectionInfo.txt [InstallFolder]\FJQSS\fjqss_tool2\CollectionInfoEn.html [InstallFolder]\FJQSS\fjqss_tool2\CollectionInfoEn.txt [InstallFolder]\FJQSS\fjqss_tool2\F3QSTOLE.bat [InstallFolder]\FJQSS\fjqss_tool2\F3QSTOLR.bat [InstallFolder]\FJQSS\fjqss_tool2\F3QSTOOL.exe [InstallFolder]\FJQSS\fjqss_tool2\FJQSSConf.txt [InstallFolder]\FJQSS\fjqss_tool2\env\EZversion_c.txt [InstallFolder]\FJQSS\fjqss_tool2\env\EZversion_euc.txt [InstallFolder]\FJQSS\fjqss_tool2\env\EZversion_sjis.txt [InstallFolder]\FJQSS\fjqss_tool2\env\EZversion_utf8.txt [InstallFolder]\FJQSS\fjqss_tool2\env \F3GWIILI.prod15536.qss15535 Fujitsu Enterprise Postgres.17.ILI [InstallFolder]\FJQSS\fjqss_tool2\env \F3GWIILI.prod15536.qss15535 Fujitsu Enterprise Postgres.17.ILI_C [InstallFolder]\FJQSS\fjqss_tool2\env\FJQSS-ArcVL.txt [InstallFolder]\FJQSS\fjqss_tool2\env\outline_c.txt [InstallFolder]\FJQSS\fjqss_tool2\env\outline_euc.txt [InstallFolder]\FJQSS\fjqss_tool2\env\outline_sjis.txt [InstallFolder]\FJQSS\fjqss_tool2\env\outline_utf8.txt [InstallFolder]\FJQSS\fjqss_tool3\CollectionInfo.html [InstallFolder]\FJQSS\fjqss_tool3\CollectionInfo.txt [InstallFolder]\FJQSS\fjqss_tool3\CollectionInfoEn.html [InstallFolder]\FJQSS\fjqss_tool3\CollectionInfoEn.txt [InstallFolder]\FJQSS\fjqss_tool3\F3QSTOLE.bat [InstallFolder]\FJQSS\fjqss_tool3\F3QSTOLR.bat [InstallFolder]\FJQSS\fjqss_tool3\F3QSTOOL.exe [InstallFolder]\FJQSS\fjqss_tool3\FJQSSConf.txt [InstallFolder]\FJQSS\fjqss_tool3\env\EZversion_c.txt [InstallFolder]\FJQSS\fjqss_tool3\env\EZversion_euc.txt [InstallFolder]\FJQSS\fjqss_tool3\env\EZversion_sjis.txt [InstallFolder]\FJQSS\fjqss_tool3\env\EZversion_utf8.txt [InstallFolder]\FJQSS\fjqss_tool3\env \F3GWIILI.prod15528.qss15527 Fujitsu Enterprise Postgres.17.ILI [InstallFolder]\FJQSS\fjqss_tool3\env \F3GWIILI.prod15528.qss15527 Fujitsu Enterprise Postgres.17.ILI_C [InstallFolder]\FJQSS\fjqss_tool3\env\FJQSS-ArcVL.txt [InstallFolder]\FJQSS\fjqss_tool3\env\outline_c.txt [InstallFolder]\FJQSS\fjqss_tool3\env\outline_euc.txt [InstallFolder]\FJQSS\fjqss_tool3\env\outline_sjis.txt [InstallFolder]\FJQSS\fjqss_tool3\env\outline_utf8.txt [InstallFolder]\LIC\FEP_CheckLicense.bat [InstallFolder]\LIC\FEP_CheckLicense.exe [InstallFolder]\LIC\concrt140.dll [InstallFolder]\LIC\fjlic-client.dll [InstallFolder]\LIC\fjlic.exe [InstallFolder]\LIC\libcrypto-3-x64.dll [InstallFolder]\LIC\message.ja_JP.SJIS.txt [InstallFolder]\LIC\message.txt [InstallFolder]\LIC\msvcp140.dll [InstallFolder]\LIC\msvcp140_1.dll [InstallFolder]\LIC\msvcp140_2.dll [InstallFolder]\LIC\msvcp140_atomic_wait.dll [InstallFolder]\LIC\msvcp140_codecvt_ids.dll [InstallFolder]\LIC\vc_redist.x64.exe [InstallFolder]\LIC\vccorlib140.dll [InstallFolder]\LIC\vcruntime140.dll [InstallFolder]\LIC\vcruntime140_1.dll [InstallFolder]\OSS\oracle_fdw\doc\extension\README.oracle_fdw [InstallFolder]\OSS\oracle_fdw\lib\oracle_fdw.dll [InstallFolder]\OSS\oracle_fdw\share\extension\oracle_fdw--1.0--1.1.sql [InstallFolder]\OSS\oracle_fdw\share\extension\oracle_fdw--1.1--1.2.sql [InstallFolder]\OSS\oracle_fdw\share\extension\oracle_fdw--1.2.sql [InstallFolder]\OSS\oracle_fdw\share\extension\oracle_fdw.control [InstallFolder]\OSS\oracle_fdw\symbols\oracle_fdw.pdb [InstallFolder]\OSS\pg_dbms_stats\lib\pg_dbms_stats.dll [InstallFolder]\OSS\pg_dbms_stats\lib\pg_dbms_stats.pdb [InstallFolder]\OSS\pg_dbms_stats\share\extension \pg_dbms_stats--1.5.0--1.5.0fj1.sql [InstallFolder]\OSS\pg_dbms_stats\share\extension \pg_dbms_stats--1.5.0fj1--15.0fj1.sql [InstallFolder]\OSS\pg_dbms_stats\share\extension \pg_dbms_stats--15.0--15.0fj1.sql [InstallFolder]\OSS\pg_dbms_stats\share\extension \pg_dbms_stats--15.0fj1.sql [InstallFolder]\OSS\pg_dbms_stats\share\extension\pg_dbms_stats.control [InstallFolder]\OSS\pg_hint_plan\lib\pg_hint_plan.dll [InstallFolder]\OSS\pg_hint_plan\lib\pg_hint_plan.pdb [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.3.0--1.3.1.sql [InstallFolder]\OSS\pg_hint_plan\share\extension\pg_hint_plan--1.3.0.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.3.1--1.3.2.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.3.10--1.4.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.3.2--1.3.3.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.3.3--1.3.4.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.3.4--1.3.5.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.3.5--1.3.6.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.3.6--1.3.7.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.3.7--1.3.8.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.3.8--1.3.9.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.3.9--1.3.10.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.4--1.4.1.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.4.1--1.4.2.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.4.2--1.4.3.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.4.3--1.5.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.5--1.5.1.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.5.1--1.5.2.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.5.2--1.6.0.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.6.0--1.6.1.sql [InstallFolder]\OSS\pg_hint_plan\share\extension \pg_hint_plan--1.6.1--1.7.0.sql [InstallFolder]\OSS\pg_hint_plan\share\extension\pg_hint_plan.control [InstallFolder]\OSS\pgaudit\lib\pgaudit.dll [InstallFolder]\OSS\pgaudit\lib\pgaudit.pdb [InstallFolder]\OSS\pgaudit\share\extension\pgaudit--1.0.sql [InstallFolder]\OSS\pgaudit\share\extension\pgaudit.control [InstallFolder]\OSS\pgaudit\share\locale\en\LC_MESSAGES\pgaudit-17.mo [InstallFolder]\OSS\pgvector\include\server\extension\vector\halfvec.h [InstallFolder]\OSS\pgvector\include\server\extension\vector\sparsevec.h [InstallFolder]\OSS\pgvector\include\server\extension\vector\vector.h [InstallFolder]\OSS\pgvector\lib\vector.dll [InstallFolder]\OSS\pgvector\share\extension\vector--0.1.0--0.1.1.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.1.1--0.1.3.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.1.3--0.1.4.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.1.4--0.1.5.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.1.5--0.1.6.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.1.6--0.1.7.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.1.7--0.1.8.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.1.8--0.2.0.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.2.0--0.2.1.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.2.1--0.2.2.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.2.2--0.2.3.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.2.3--0.2.4.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.2.4--0.2.5.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.2.5--0.2.6.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.2.6--0.2.7.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.2.7--0.3.0.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.3.0--0.3.1.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.3.1--0.3.2.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.3.2--0.4.0.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.4.0--0.4.1.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.4.1--0.4.2.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.4.2--0.4.3.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.4.3--0.4.4.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.4.4--0.5.0.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.5.0--0.5.1.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.5.1--0.6.0.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.6.0--0.6.1.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.6.1--0.6.2.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.6.2--0.7.0.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.7.0--0.7.1.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.7.1--0.7.2.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.7.2--0.7.3.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.7.3--0.7.4.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.7.4--0.8.0.sql [InstallFolder]\OSS\pgvector\share\extension\vector--0.8.0.sql [InstallFolder]\OSS\pgvector\share\extension\vector.control [InstallFolder]\bin\clusterdb.exe [InstallFolder]\bin\clusterdb.pdb [InstallFolder]\bin\cm_ctl.exe [InstallFolder]\bin\cm_ctl.pdb [InstallFolder]\bin\conmgr.exe [InstallFolder]\bin\conmgr.pdb [InstallFolder]\bin\createdb.exe [InstallFolder]\bin\createdb.pdb [InstallFolder]\bin\createuser.exe [InstallFolder]\bin\createuser.pdb [InstallFolder]\bin\dropdb.exe [InstallFolder]\bin\dropdb.pdb [InstallFolder]\bin\dropuser.exe [InstallFolder]\bin\dropuser.pdb [InstallFolder]\bin\ecobpg.exe [InstallFolder]\bin\ecobpg.pdb [InstallFolder]\bin\ecpg.exe [InstallFolder]\bin\ecpg.pdb [InstallFolder]\bin\event_core.dll [InstallFolder]\bin\func.vbs [InstallFolder]\bin\icudt75.dll [InstallFolder]\bin\icuin75.dll [InstallFolder]\bin\icuio75.dll [InstallFolder]\bin\icutu75.dll [InstallFolder]\bin\icuuc75.dll [InstallFolder]\bin\initdb.exe [InstallFolder]\bin\initdb.pdb [InstallFolder]\bin\libChangeCorePathNative.dll [InstallFolder]\bin\libConsoleInOutSuppressedProcessNative.dll [InstallFolder]\bin\libCustomSysloggerNative.dll [InstallFolder]\bin\libPgJunctionNative.dll [InstallFolder]\bin\libRestrictProcessNative.dll [InstallFolder]\bin\libSingleQueryExecutorNative.dll [InstallFolder]\bin\libcrypto-3-x64.dll [InstallFolder]\bin\libecpg.dll [InstallFolder]\bin\libecpg.pdb [InstallFolder]\bin\libecpg_compat.dll [InstallFolder]\bin\libecpg_compat.pdb [InstallFolder]\bin\libiconv.dll [InstallFolder]\bin\libintl.dll [InstallFolder]\bin\liblz4.dll [InstallFolder]\bin\libpgtypes.dll [InstallFolder]\bin\libpgtypes.pdb [InstallFolder]\bin\libpq.dll [InstallFolder]\bin\libpq.pdb [InstallFolder]\bin\libssl-3-x64.dll [InstallFolder]\bin\libxml2.dll [InstallFolder]\bin\libxslt.dll [InstallFolder]\bin\libzstd.dll [InstallFolder]\bin\mc_agent.exe [InstallFolder]\bin\mc_common.jar [InstallFolder]\bin\mc_core.jar [InstallFolder]\bin\mc_ctl.exe [InstallFolder]\bin\mc_keeper.exe [InstallFolder]\bin\mc_ping.exe [InstallFolder]\bin\oid2name.exe [InstallFolder]\bin\oid2name.pdb [InstallFolder]\bin\pg_amcheck.exe [InstallFolder]\bin\pg_amcheck.pdb [InstallFolder]\bin\pg_archivecleanup.exe [InstallFolder]\bin\pg_archivecleanup.pdb [InstallFolder]\bin\pg_basebackup.exe [InstallFolder]\bin\pg_basebackup.pdb [InstallFolder]\bin\pg_checksums.exe [InstallFolder]\bin\pg_checksums.pdb [InstallFolder]\bin\pg_combinebackup.exe [InstallFolder]\bin\pg_combinebackup.pdb [InstallFolder]\bin\pg_config.exe [InstallFolder]\bin\pg_config.pdb [InstallFolder]\bin\pg_controldata.exe [InstallFolder]\bin\pg_controldata.pdb [InstallFolder]\bin\pg_createsubscriber.exe [InstallFolder]\bin\pg_createsubscriber.pdb [InstallFolder]\bin\pg_ctl.exe [InstallFolder]\bin\pg_ctl.pdb [InstallFolder]\bin\pg_dump.exe [InstallFolder]\bin\pg_dump.pdb [InstallFolder]\bin\pg_dumpall.exe [InstallFolder]\bin\pg_dumpall.pdb [InstallFolder]\bin\pg_isready.exe [InstallFolder]\bin\pg_isready.pdb [InstallFolder]\bin\pg_receivewal.exe [InstallFolder]\bin\pg_receivewal.pdb [InstallFolder]\bin\pg_recvlogical.exe [InstallFolder]\bin\pg_recvlogical.pdb [InstallFolder]\bin\pg_resetwal.exe [InstallFolder]\bin\pg_resetwal.pdb [InstallFolder]\bin\pg_restore.exe [InstallFolder]\bin\pg_restore.pdb [InstallFolder]\bin\pg_rewind.exe [InstallFolder]\bin\pg_rewind.pdb [InstallFolder]\bin\pg_test_fsync.exe [InstallFolder]\bin\pg_test_fsync.pdb [InstallFolder]\bin\pg_test_timing.exe [InstallFolder]\bin\pg_test_timing.pdb [InstallFolder]\bin\pg_upgrade.exe [InstallFolder]\bin\pg_upgrade.pdb [InstallFolder]\bin\pg_verifybackup.exe [InstallFolder]\bin\pg_verifybackup.pdb [InstallFolder]\bin\pg_waldump.exe [InstallFolder]\bin\pg_waldump.pdb [InstallFolder]\bin\pg_walsummary.exe [InstallFolder]\bin\pg_walsummary.pdb [InstallFolder]\bin\pgbench.exe [InstallFolder]\bin\pgbench.pdb [InstallFolder]\bin\pgevent.dll [InstallFolder]\bin\pgevent.pdb [InstallFolder]\bin\pgx_copy.exe [InstallFolder]\bin\pgx_copy.pdb [InstallFolder]\bin\pgx_dmpall.exe [InstallFolder]\bin\pgx_dmpall.pdb [InstallFolder]\bin\pgx_fjqssinf.bat [InstallFolder]\bin\pgx_getenvdata.bat [InstallFolder]\bin\pgx_keystore.exe [InstallFolder]\bin\pgx_keystore.pdb [InstallFolder]\bin\pgx_loader.exe [InstallFolder]\bin\pgx_loader.pdb [InstallFolder]\bin\pgx_rcvall.exe [InstallFolder]\bin\pgx_rcvall.pdb [InstallFolder]\bin\pgx_walcopy.cmd [InstallFolder]\bin\postgres.exe [InstallFolder]\bin\postgres.pdb [InstallFolder]\bin\psql.exe [InstallFolder]\bin\psql.pdb [InstallFolder]\bin\reindexdb.exe [InstallFolder]\bin\reindexdb.pdb [InstallFolder]\bin\testplug.dll [InstallFolder]\bin\vacuumdb.exe [InstallFolder]\bin\vacuumdb.pdb [InstallFolder]\bin\vacuumlo.exe [InstallFolder]\bin\vacuumlo.pdb [InstallFolder]\bin\zlib1.dll [InstallFolder]\doc\Licence\Apache Regexp.txt [InstallFolder]\doc\Licence\Apache_Felix.txt [InstallFolder]\doc\Licence\Azure_go-ntlmssp.txt [InstallFolder]\doc\Licence\ConvertUTF.txt [InstallFolder]\doc\Licence\JCommander_Library.txt [InstallFolder]\doc\Licence\Jackson-databind.txt [InstallFolder]\doc\Licence\Java Native Access (JNA).txt [InstallFolder]\doc\Licence\Kerberos-5.txt [InstallFolder]\doc\Licence\Marionette.js.txt [InstallFolder]\doc\Licence\Npgsql.EntityFrameworkCore.PostgreSQL.txt [InstallFolder]\doc\Licence\Npgsql.txt [InstallFolder]\doc\Licence\OSSP-uuid.txt [InstallFolder]\doc\Licence\OSS_List.pdf [InstallFolder]\doc\Licence\OpenJDK_Assembly Exception.txt [InstallFolder]\doc\Licence\OpenJDK_Classpath Exception.txt [InstallFolder]\doc\Licence\OpenLDAP.txt [InstallFolder]\doc\Licence\OpenSSL.txt [InstallFolder]\doc\Licence\Pgpool-II.txt [InstallFolder]\doc\Licence\PostgreSQL-JDBC-driver.txt [InstallFolder]\doc\Licence\PostgreSQL.txt [InstallFolder]\doc\Licence\Swing_Layout_Extensions.txt [InstallFolder]\doc\Licence\TestNG.txt [InstallFolder]\doc\Licence\The_FreeType_Project.txt [InstallFolder]\doc\Licence\VisualVM_custom.txt [InstallFolder]\doc\Licence\WiX-Toolset.txt [InstallFolder]\doc\Licence\Zstandard.txt [InstallFolder]\doc\Licence\angular-block-ui.txt [InstallFolder]\doc\Licence\angular-spinner.txt [InstallFolder]\doc\Licence\angular-translate.txt [InstallFolder]\doc\Licence\angular-visjs.txt [InstallFolder]\doc\Licence\angular.js.txt [InstallFolder]\doc\Licence\aopalliance.txt [InstallFolder]\doc\Licence\apache-age.txt [InstallFolder]\doc\Licence\apache-commons-codec.txt [InstallFolder]\doc\Licence\apache-commons-daemon.txt [InstallFolder]\doc\Licence\apache-commons-io.txt [InstallFolder]\doc\Licence\apache-commons-lang.txt [InstallFolder]\doc\Licence\apache-commons-logging.txt [InstallFolder]\doc\Licence\apache-commons-pool.txt [InstallFolder]\doc\Licence\apache-dbcp.txt [InstallFolder]\doc\Licence\apache-derby.txt [InstallFolder]\doc\Licence\apache-log4j.txt [InstallFolder]\doc\Licence\apache-tomcat-native-library.txt [InstallFolder]\doc\Licence\apache-tomcat.txt [InstallFolder]\doc\Licence\asynckit.txt [InstallFolder]\doc\Licence\avast_retry-go.txt [InstallFolder]\doc\Licence\axios.txt [InstallFolder]\doc\Licence\backbone.js.txt [InstallFolder]\doc\Licence\combined-stream.txt [InstallFolder]\doc\Licence\cryptopp.txt [InstallFolder]\doc\Licence\davecgh_go-spew.txt [InstallFolder]\doc\Licence\deckarep_golang-set.txt [InstallFolder]\doc\Licence\delayed-stream.txt [InstallFolder]\doc\Licence\ecj.txt [InstallFolder]\doc\Licence\electron-context-menu.txt [InstallFolder]\doc\Licence\electron-dl.txt [InstallFolder]\doc\Licence\electron-is-dev.txt [InstallFolder]\doc\Licence\electron-store.txt [InstallFolder]\doc\Licence\electron.txt [InstallFolder]\doc\Licence\elevate.txt [InstallFolder]\doc\Licence\follow-redirects.txt [InstallFolder]\doc\Licence\form-data.txt [InstallFolder]\doc\Licence\gettext_libintl.txt [InstallFolder]\doc\Licence\go-asn1-ber_asn1-ber.txt [InstallFolder]\doc\Licence\go-ldap_ldap.txt [InstallFolder]\doc\Licence\go-viper_mapstructure.txt [InstallFolder]\doc\Licence\go-yaml_yaml.txt [InstallFolder]\doc\Licence\golang.org_x_crypto.txt [InstallFolder]\doc\Licence\golang.org_x_exp.txt [InstallFolder]\doc\Licence\golang.org_x_sys.txt [InstallFolder]\doc\Licence\golang.org_x_text.txt [InstallFolder]\doc\Licence\google_uuid.txt [InstallFolder]\doc\Licence\gosimple_slug.txt [InstallFolder]\doc\Licence\gosimple_unidecode.txt [InstallFolder]\doc\Licence\icu.txt [InstallFolder]\doc\Licence\jackc_pgpassfile.txt [InstallFolder]\doc\Licence\jackc_pgservicefile.txt [InstallFolder]\doc\Licence\jackc_pgx.txt [InstallFolder]\doc\Licence\jackson-annotations.txt [InstallFolder]\doc\Licence\jackson-core.txt [InstallFolder]\doc\Licence\javahelp2.txt [InstallFolder]\doc\Licence\javax-inject.txt [InstallFolder]\doc\Licence\jcl-over-slf4j.txt [InstallFolder]\doc\Licence\joho_godotenv.txt [InstallFolder]\doc\Licence\jquery-html5storage.txt [InstallFolder]\doc\Licence\jquery-ui.txt [InstallFolder]\doc\Licence\jquery.txt [InstallFolder]\doc\Licence\json2.txt [InstallFolder]\doc\Licence\jstl.txt [InstallFolder]\doc\Licence\knadh_koanf.txt [InstallFolder]\doc\Licence\knadh_koanf_maps.txt [InstallFolder]\doc\Licence\knadh_koanf_providers_confmap.txt [InstallFolder]\doc\Licence\knadh_koanf_providers_env.txt [InstallFolder]\doc\Licence\knadh_koanf_providers_posflag.txt [InstallFolder]\doc\Licence\ldap2pg.txt [InstallFolder]\doc\Licence\libedit.txt [InstallFolder]\doc\Licence\libevent.txt [InstallFolder]\doc\Licence\libiconv.txt [InstallFolder]\doc\Licence\libkmip.txt [InstallFolder]\doc\Licence\libssh2.txt [InstallFolder]\doc\Licence\libxml2.txt [InstallFolder]\doc\Licence\libxslt.txt [InstallFolder]\doc\Licence\lithammer_dedent.txt [InstallFolder]\doc\Licence\lmittmann_tint.txt [InstallFolder]\doc\Licence\log4cplus.txt [InstallFolder]\doc\Licence\lombok.txt [InstallFolder]\doc\Licence\lz4.txt [InstallFolder]\doc\Licence\mattn_go-isatty.txt [InstallFolder]\doc\Licence\mime-db.txt [InstallFolder]\doc\Licence\mime-types.txt [InstallFolder]\doc\Licence\mitchellh_copystructure.txt [InstallFolder]\doc\Licence\mitchellh_mapstructure.txt [InstallFolder]\doc\Licence\mitchellh_reflectwalk.txt [InstallFolder]\doc\Licence\moment.js.txt [InstallFolder]\doc\Licence\ms-vc2015-2022_en.txt [InstallFolder]\doc\Licence\ms-vc2015-2022_jp.txt [InstallFolder]\doc\Licence\netbeans_platform_custom.txt [InstallFolder]\doc\Licence\numeral-js.txt [InstallFolder]\doc\Licence\oracle_fdw.txt [InstallFolder]\doc\Licence\orafce.txt [InstallFolder]\doc\Licence\osgi.core.txt [InstallFolder]\doc\Licence\paexec.txt [InstallFolder]\doc\Licence\pgAdmin4.txt [InstallFolder]\doc\Licence\pgBadger.txt [InstallFolder]\doc\Licence\pg_bigm.txt [InstallFolder]\doc\Licence\pg_cron.txt [InstallFolder]\doc\Licence\pg_dbms_stats.txt [InstallFolder]\doc\Licence\pg_hint_plan.txt [InstallFolder]\doc\Licence\pg_repack.txt [InstallFolder]\doc\Licence\pg_rman.txt [InstallFolder]\doc\Licence\pg_statsinfo.txt [InstallFolder]\doc\Licence\pgai.txt [InstallFolder]\doc\Licence\pgaudit.txt [InstallFolder]\doc\Licence\pgbackrest.txt [InstallFolder]\doc\Licence\pgvector.txt [InstallFolder]\doc\Licence\pgvectorscale.txt [InstallFolder]\doc\Licence\pmezard_go-difflib.txt [InstallFolder]\doc\Licence\proxy-from-env.txt [InstallFolder]\doc\Licence\psqlODBC.txt [InstallFolder]\doc\Licence\psycopg-c.txt [InstallFolder]\doc\Licence\psycopg-pool.txt [InstallFolder]\doc\Licence\psycopg.txt [InstallFolder]\doc\Licence\python.txt [InstallFolder]\doc\Licence\slf4j-api-module.txt [InstallFolder]\doc\Licence\slf4j-log4j-12-binding.txt [InstallFolder]\doc\Licence\spf13_pflag.txt [InstallFolder]\doc\Licence\spin.js.txt [InstallFolder]\doc\Licence\spring-commons-logging-bridge.txt [InstallFolder]\doc\Licence\spring-framework.txt [InstallFolder]\doc\Licence\spring-security.txt [InstallFolder]\doc\Licence\spring-transaction.txt [InstallFolder]\doc\Licence\stretchr_testify.txt [InstallFolder]\doc\Licence\tomcat-ssi.txt [InstallFolder]\doc\Licence\underscore.js.txt [InstallFolder]\doc\Licence\vis.js.txt [InstallFolder]\doc\Licence\xerces-c.txt [InstallFolder]\doc\Licence\zlib.txt [InstallFolder]\etc\mcversion [InstallFolder]\include\SQLCA-COBOL [InstallFolder]\include\SQLCA-COBOL.cob [InstallFolder]\include\ecpg_config.h [InstallFolder]\include\ecpg_informix.h [InstallFolder]\include\ecpgerrno.h [InstallFolder]\include\ecpglib.h [InstallFolder]\include\ecpgtype.h [InstallFolder]\include\informix\esql\datetime.h [InstallFolder]\include\informix\esql\decimal.h [InstallFolder]\include\informix\esql\sqltypes.h [InstallFolder]\include\internal\c.h [InstallFolder]\include\internal\cmlite.h [InstallFolder]\include\internal\fe-auth-sasl.h [InstallFolder]\include\internal\libpq-int.h [InstallFolder]\include\internal\libpq\pqcomm.h [InstallFolder]\include\internal\libpq\protocol.h [InstallFolder]\include\internal\port.h [InstallFolder]\include\internal\postgres_fe.h [InstallFolder]\include\internal\pqexpbuffer.h [InstallFolder]\include\libintl.h [InstallFolder]\include\libpq-events.h [InstallFolder]\include\libpq-fe.h [InstallFolder]\include\libpq\libpq-fs.h [InstallFolder]\include\pg_config.h [InstallFolder]\include\pg_config_ext.h [InstallFolder]\include\pg_config_manual.h [InstallFolder]\include\pg_config_os.h [InstallFolder]\include\pgtypes.h [InstallFolder]\include\pgtypes_date.h [InstallFolder]\include\pgtypes_error.h [InstallFolder]\include\pgtypes_interval.h [InstallFolder]\include\pgtypes_numeric.h [InstallFolder]\include\pgtypes_timestamp.h [InstallFolder]\include\postgres_ext.h [InstallFolder]\include\server\access\amapi.h [InstallFolder]\include\server\access\amvalidate.h [InstallFolder]\include\server\access\attmap.h [InstallFolder]\include\server\access\attnum.h [InstallFolder]\include\server\access\brin.h [InstallFolder]\include\server\access\brin_internal.h [InstallFolder]\include\server\access\brin_page.h [InstallFolder]\include\server\access\brin_pageops.h [InstallFolder]\include\server\access\brin_revmap.h [InstallFolder]\include\server\access\brin_tuple.h [InstallFolder]\include\server\access\brin_xlog.h [InstallFolder]\include\server\access\bufmask.h [InstallFolder]\include\server\access\clog.h [InstallFolder]\include\server\access\commit_ts.h [InstallFolder]\include\server\access\detoast.h [InstallFolder]\include\server\access\genam.h [InstallFolder]\include\server\access\generic_xlog.h [InstallFolder]\include\server\access\gin.h [InstallFolder]\include\server\access\gin_private.h [InstallFolder]\include\server\access\ginblock.h [InstallFolder]\include\server\access\ginxlog.h [InstallFolder]\include\server\access\gist.h [InstallFolder]\include\server\access\gist_private.h [InstallFolder]\include\server\access\gistscan.h [InstallFolder]\include\server\access\gistxlog.h [InstallFolder]\include\server\access\hash.h [InstallFolder]\include\server\access\hash_xlog.h [InstallFolder]\include\server\access\heapam.h [InstallFolder]\include\server\access\heapam_xlog.h [InstallFolder]\include\server\access\heaptoast.h [InstallFolder]\include\server\access\hio.h [InstallFolder]\include\server\access\htup.h [InstallFolder]\include\server\access\htup_details.h [InstallFolder]\include\server\access\itup.h [InstallFolder]\include\server\access\multixact.h [InstallFolder]\include\server\access\nbtree.h [InstallFolder]\include\server\access\nbtxlog.h [InstallFolder]\include\server\access\parallel.h [InstallFolder]\include\server\access\printsimple.h [InstallFolder]\include\server\access\printtup.h [InstallFolder]\include\server\access\relation.h [InstallFolder]\include\server\access\reloptions.h [InstallFolder]\include\server\access\relscan.h [InstallFolder]\include\server\access\rewriteheap.h [InstallFolder]\include\server\access\rmgr.h [InstallFolder]\include\server\access\rmgrdesc_utils.h [InstallFolder]\include\server\access\rmgrlist.h [InstallFolder]\include\server\access\sdir.h [InstallFolder]\include\server\access\sequence.h [InstallFolder]\include\server\access\session.h [InstallFolder]\include\server\access\skey.h [InstallFolder]\include\server\access\slru.h [InstallFolder]\include\server\access\spgist.h [InstallFolder]\include\server\access\spgist_private.h [InstallFolder]\include\server\access\spgxlog.h [InstallFolder]\include\server\access\stratnum.h [InstallFolder]\include\server\access\subtrans.h [InstallFolder]\include\server\access\syncscan.h [InstallFolder]\include\server\access\sysattr.h [InstallFolder]\include\server\access\table.h [InstallFolder]\include\server\access\tableam.h [InstallFolder]\include\server\access\tidstore.h [InstallFolder]\include\server\access\timeline.h [InstallFolder]\include\server\access\toast_compression.h [InstallFolder]\include\server\access\toast_helper.h [InstallFolder]\include\server\access\toast_internals.h [InstallFolder]\include\server\access\transam.h [InstallFolder]\include\server\access\tsmapi.h [InstallFolder]\include\server\access\tupconvert.h [InstallFolder]\include\server\access\tupdesc.h [InstallFolder]\include\server\access\tupdesc_details.h [InstallFolder]\include\server\access\tupmacs.h [InstallFolder]\include\server\access\twophase.h [InstallFolder]\include\server\access\twophase_rmgr.h [InstallFolder]\include\server\access\valid.h [InstallFolder]\include\server\access\visibilitymap.h [InstallFolder]\include\server\access\visibilitymapdefs.h [InstallFolder]\include\server\access\wal_arbiter.h [InstallFolder]\include\server\access\xact.h [InstallFolder]\include\server\access\xlog.h [InstallFolder]\include\server\access\xlog_internal.h [InstallFolder]\include\server\access\xlogarchive.h [InstallFolder]\include\server\access\xlogbackup.h [InstallFolder]\include\server\access\xlogdefs.h [InstallFolder]\include\server\access\xloginsert.h [InstallFolder]\include\server\access\xlogprefetcher.h [InstallFolder]\include\server\access\xlogreader.h [InstallFolder]\include\server\access\xlogrecord.h [InstallFolder]\include\server\access\xlogrecovery.h [InstallFolder]\include\server\access\xlogstats.h [InstallFolder]\include\server\access\xlogutils.h [InstallFolder]\include\server\archive\archive_module.h [InstallFolder]\include\server\archive\shell_archive.h [InstallFolder]\include\server\bootstrap\bootstrap.h [InstallFolder]\include\server\c.h [InstallFolder]\include\server\catalog\binary_upgrade.h [InstallFolder]\include\server\catalog\catalog.h [InstallFolder]\include\server\catalog\catversion.h [InstallFolder]\include\server\catalog\dependency.h [InstallFolder]\include\server\catalog\genbki.h [InstallFolder]\include\server\catalog\heap.h [InstallFolder]\include\server\catalog\index.h [InstallFolder]\include\server\catalog\indexing.h [InstallFolder]\include\server\catalog\namespace.h [InstallFolder]\include\server\catalog\objectaccess.h [InstallFolder]\include\server\catalog\objectaddress.h [InstallFolder]\include\server\catalog\partition.h [InstallFolder]\include\server\catalog\pg_aggregate.h [InstallFolder]\include\server\catalog\pg_aggregate_d.h [InstallFolder]\include\server\catalog\pg_am.h [InstallFolder]\include\server\catalog\pg_am_d.h [InstallFolder]\include\server\catalog\pg_amop.h [InstallFolder]\include\server\catalog\pg_amop_d.h [InstallFolder]\include\server\catalog\pg_amproc.h [InstallFolder]\include\server\catalog\pg_amproc_d.h [InstallFolder]\include\server\catalog\pg_attrdef.h [InstallFolder]\include\server\catalog\pg_attrdef_d.h [InstallFolder]\include\server\catalog\pg_attribute.h [InstallFolder]\include\server\catalog\pg_attribute_d.h [InstallFolder]\include\server\catalog\pg_auth_members.h [InstallFolder]\include\server\catalog\pg_auth_members_d.h [InstallFolder]\include\server\catalog\pg_authid.h [InstallFolder]\include\server\catalog\pg_authid_d.h [InstallFolder]\include\server\catalog\pg_cast.h [InstallFolder]\include\server\catalog\pg_cast_d.h [InstallFolder]\include\server\catalog\pg_class.h [InstallFolder]\include\server\catalog\pg_class_d.h [InstallFolder]\include\server\catalog\pg_collation.h [InstallFolder]\include\server\catalog\pg_collation_d.h [InstallFolder]\include\server\catalog\pg_constraint.h [InstallFolder]\include\server\catalog\pg_constraint_d.h [InstallFolder]\include\server\catalog\pg_control.h [InstallFolder]\include\server\catalog\pg_conversion.h [InstallFolder]\include\server\catalog\pg_conversion_d.h [InstallFolder]\include\server\catalog\pg_database.h [InstallFolder]\include\server\catalog\pg_database_d.h [InstallFolder]\include\server\catalog\pg_db_role_setting.h [InstallFolder]\include\server\catalog\pg_db_role_setting_d.h [InstallFolder]\include\server\catalog\pg_default_acl.h [InstallFolder]\include\server\catalog\pg_default_acl_d.h [InstallFolder]\include\server\catalog\pg_depend.h [InstallFolder]\include\server\catalog\pg_depend_d.h [InstallFolder]\include\server\catalog\pg_description.h [InstallFolder]\include\server\catalog\pg_description_d.h [InstallFolder]\include\server\catalog\pg_enum.h [InstallFolder]\include\server\catalog\pg_enum_d.h [InstallFolder]\include\server\catalog\pg_event_trigger.h [InstallFolder]\include\server\catalog\pg_event_trigger_d.h [InstallFolder]\include\server\catalog\pg_extension.h [InstallFolder]\include\server\catalog\pg_extension_d.h [InstallFolder]\include\server\catalog\pg_foreign_data_wrapper.h [InstallFolder]\include\server\catalog\pg_foreign_data_wrapper_d.h [InstallFolder]\include\server\catalog\pg_foreign_server.h [InstallFolder]\include\server\catalog\pg_foreign_server_d.h [InstallFolder]\include\server\catalog\pg_foreign_table.h [InstallFolder]\include\server\catalog\pg_foreign_table_d.h [InstallFolder]\include\server\catalog\pg_index.h [InstallFolder]\include\server\catalog\pg_index_d.h [InstallFolder]\include\server\catalog\pg_inherits.h [InstallFolder]\include\server\catalog\pg_inherits_d.h [InstallFolder]\include\server\catalog\pg_init_privs.h [InstallFolder]\include\server\catalog\pg_init_privs_d.h [InstallFolder]\include\server\catalog\pg_language.h [InstallFolder]\include\server\catalog\pg_language_d.h [InstallFolder]\include\server\catalog\pg_largeobject.h [InstallFolder]\include\server\catalog\pg_largeobject_d.h [InstallFolder]\include\server\catalog\pg_largeobject_metadata.h [InstallFolder]\include\server\catalog\pg_largeobject_metadata_d.h [InstallFolder]\include\server\catalog\pg_namespace.h [InstallFolder]\include\server\catalog\pg_namespace_d.h [InstallFolder]\include\server\catalog\pg_opclass.h [InstallFolder]\include\server\catalog\pg_opclass_d.h [InstallFolder]\include\server\catalog\pg_operator.h [InstallFolder]\include\server\catalog\pg_operator_d.h [InstallFolder]\include\server\catalog\pg_opfamily.h [InstallFolder]\include\server\catalog\pg_opfamily_d.h [InstallFolder]\include\server\catalog\pg_parameter_acl.h [InstallFolder]\include\server\catalog\pg_parameter_acl_d.h [InstallFolder]\include\server\catalog\pg_partitioned_table.h [InstallFolder]\include\server\catalog\pg_partitioned_table_d.h [InstallFolder]\include\server\catalog\pg_policy.h [InstallFolder]\include\server\catalog\pg_policy_d.h [InstallFolder]\include\server\catalog\pg_proc.h [InstallFolder]\include\server\catalog\pg_proc_d.h [InstallFolder]\include\server\catalog\pg_publication.h [InstallFolder]\include\server\catalog\pg_publication_d.h [InstallFolder]\include\server\catalog\pg_publication_namespace.h [InstallFolder]\include\server\catalog\pg_publication_namespace_d.h [InstallFolder]\include\server\catalog\pg_publication_rel.h [InstallFolder]\include\server\catalog\pg_publication_rel_d.h [InstallFolder]\include\server\catalog\pg_range.h [InstallFolder]\include\server\catalog\pg_range_d.h [InstallFolder]\include\server\catalog\pg_replication_origin.h [InstallFolder]\include\server\catalog\pg_replication_origin_d.h [InstallFolder]\include\server\catalog\pg_rewrite.h [InstallFolder]\include\server\catalog\pg_rewrite_d.h [InstallFolder]\include\server\catalog\pg_seclabel.h [InstallFolder]\include\server\catalog\pg_seclabel_d.h [InstallFolder]\include\server\catalog\pg_sequence.h [InstallFolder]\include\server\catalog\pg_sequence_d.h [InstallFolder]\include\server\catalog\pg_shdepend.h [InstallFolder]\include\server\catalog\pg_shdepend_d.h [InstallFolder]\include\server\catalog\pg_shdescription.h [InstallFolder]\include\server\catalog\pg_shdescription_d.h [InstallFolder]\include\server\catalog\pg_shseclabel.h [InstallFolder]\include\server\catalog\pg_shseclabel_d.h [InstallFolder]\include\server\catalog\pg_statistic.h [InstallFolder]\include\server\catalog\pg_statistic_d.h [InstallFolder]\include\server\catalog\pg_statistic_ext.h [InstallFolder]\include\server\catalog\pg_statistic_ext_d.h [InstallFolder]\include\server\catalog\pg_statistic_ext_data.h [InstallFolder]\include\server\catalog\pg_statistic_ext_data_d.h [InstallFolder]\include\server\catalog\pg_subscription.h [InstallFolder]\include\server\catalog\pg_subscription_d.h [InstallFolder]\include\server\catalog\pg_subscription_rel.h [InstallFolder]\include\server\catalog\pg_subscription_rel_d.h [InstallFolder]\include\server\catalog\pg_tablespace.h [InstallFolder]\include\server\catalog\pg_tablespace_d.h [InstallFolder]\include\server\catalog\pg_transform.h [InstallFolder]\include\server\catalog\pg_transform_d.h [InstallFolder]\include\server\catalog\pg_trigger.h [InstallFolder]\include\server\catalog\pg_trigger_d.h [InstallFolder]\include\server\catalog\pg_ts_config.h [InstallFolder]\include\server\catalog\pg_ts_config_d.h [InstallFolder]\include\server\catalog\pg_ts_config_map.h [InstallFolder]\include\server\catalog\pg_ts_config_map_d.h [InstallFolder]\include\server\catalog\pg_ts_dict.h [InstallFolder]\include\server\catalog\pg_ts_dict_d.h [InstallFolder]\include\server\catalog\pg_ts_parser.h [InstallFolder]\include\server\catalog\pg_ts_parser_d.h [InstallFolder]\include\server\catalog\pg_ts_template.h [InstallFolder]\include\server\catalog\pg_ts_template_d.h [InstallFolder]\include\server\catalog\pg_type.h [InstallFolder]\include\server\catalog\pg_type_d.h [InstallFolder]\include\server\catalog\pg_user_mapping.h [InstallFolder]\include\server\catalog\pg_user_mapping_d.h [InstallFolder]\include\server\catalog\pgx_auth_password.h [InstallFolder]\include\server\catalog\pgx_auth_password_d.h [InstallFolder]\include\server\catalog\pgx_depend_nodes.h [InstallFolder]\include\server\catalog\pgx_depend_nodes_d.h [InstallFolder]\include\server\catalog\pgx_password_history.h [InstallFolder]\include\server\catalog\pgx_password_history_d.h [InstallFolder]\include\server\catalog\pgx_pgxnode.h [InstallFolder]\include\server\catalog\pgx_pgxnode_d.h [InstallFolder]\include\server\catalog\pgx_pgxnodedb.h [InstallFolder]\include\server\catalog\pgx_pgxnodedb_d.h [InstallFolder]\include\server\catalog\pgx_profile.h [InstallFolder]\include\server\catalog\pgx_profile_d.h [InstallFolder]\include\server\catalog\pgx_replication_object.h [InstallFolder]\include\server\catalog\pgx_replication_object_d.h [InstallFolder]\include\server\catalog \pgx_replication_object_subscription.h [InstallFolder]\include\server\catalog \pgx_replication_object_subscription_d.h [InstallFolder]\include\server\catalog\pgx_replication_table.h [InstallFolder]\include\server\catalog\pgx_replication_table_d.h [InstallFolder]\include\server\catalog\pgx_replication_table_node.h [InstallFolder]\include\server\catalog\pgx_replication_table_node_d.h [InstallFolder]\include\server\catalog\pgx_shard.h [InstallFolder]\include\server\catalog\pgx_shard_d.h [InstallFolder]\include\server\catalog\pgx_shard_placement.h [InstallFolder]\include\server\catalog\pgx_shard_placement_d.h [InstallFolder]\include\server\catalog\pgx_shard_table.h [InstallFolder]\include\server\catalog\pgx_shard_table_d.h [InstallFolder]\include\server\catalog\pgx_shard_tablespace.h [InstallFolder]\include\server\catalog\pgx_shard_tablespace_d.h [InstallFolder]\include\server\catalog\pgx_shdepend.h [InstallFolder]\include\server\catalog\pgx_shdepend_d.h [InstallFolder]\include\server\catalog\pgx_shdepend_nodes.h [InstallFolder]\include\server\catalog\pgx_shdepend_nodes_d.h [InstallFolder]\include\server\catalog\pgx_shuser_mapping.h [InstallFolder]\include\server\catalog\pgx_shuser_mapping_d.h [InstallFolder]\include\server\catalog\pgx_user_profile.h [InstallFolder]\include\server\catalog\pgx_user_profile_d.h [InstallFolder]\include\server\catalog\schemapg.h [InstallFolder]\include\server\catalog\storage.h [InstallFolder]\include\server\catalog\storage_xlog.h [InstallFolder]\include\server\catalog\syscache_ids.h [InstallFolder]\include\server\catalog\system_fk_info.h [InstallFolder]\include\server\catalog\toasting.h [InstallFolder]\include\server\commands\alter.h [InstallFolder]\include\server\commands\async.h [InstallFolder]\include\server\commands\cluster.h [InstallFolder]\include\server\commands\collationcmds.h [InstallFolder]\include\server\commands\comment.h [InstallFolder]\include\server\commands\conversioncmds.h [InstallFolder]\include\server\commands\copy.h [InstallFolder]\include\server\commands\copyfrom_internal.h [InstallFolder]\include\server\commands\createas.h [InstallFolder]\include\server\commands\dbcommands.h [InstallFolder]\include\server\commands\dbcommands_xlog.h [InstallFolder]\include\server\commands\defrem.h [InstallFolder]\include\server\commands\discard.h [InstallFolder]\include\server\commands\event_trigger.h [InstallFolder]\include\server\commands\explain.h [InstallFolder]\include\server\commands\extension.h [InstallFolder]\include\server\commands\lockcmds.h [InstallFolder]\include\server\commands\matview.h [InstallFolder]\include\server\commands\policy.h [InstallFolder]\include\server\commands\portalcmds.h [InstallFolder]\include\server\commands\prepare.h [InstallFolder]\include\server\commands\proclang.h [InstallFolder]\include\server\commands\progress.h [InstallFolder]\include\server\commands\publicationcmds.h [InstallFolder]\include\server\commands\schemacmds.h [InstallFolder]\include\server\commands\seclabel.h [InstallFolder]\include\server\commands\sequence.h [InstallFolder]\include\server\commands\shard.h [InstallFolder]\include\server\commands\subscriptioncmds.h [InstallFolder]\include\server\commands\tablecmds.h [InstallFolder]\include\server\commands\tablespace.h [InstallFolder]\include\server\commands\trigger.h [InstallFolder]\include\server\commands\typecmds.h [InstallFolder]\include\server\commands\user.h [InstallFolder]\include\server\commands\vacuum.h [InstallFolder]\include\server\commands\view.h [InstallFolder]\include\server\common\archive.h [InstallFolder]\include\server\common\base64.h [InstallFolder]\include\server\common\blkreftable.h [InstallFolder]\include\server\common\checksum_helper.h [InstallFolder]\include\server\common\compression.h [InstallFolder]\include\server\common\config_info.h [InstallFolder]\include\server\common\connect.h [InstallFolder]\include\server\common\controldata_utils.h [InstallFolder]\include\server\common\cryptohash.h [InstallFolder]\include\server\common\fe_memutils.h [InstallFolder]\include\server\common\file_perm.h [InstallFolder]\include\server\common\file_utils.h [InstallFolder]\include\server\common\hashfn.h [InstallFolder]\include\server\common\hashfn_unstable.h [InstallFolder]\include\server\common\hmac.h [InstallFolder]\include\server\common\int.h [InstallFolder]\include\server\common\int128.h [InstallFolder]\include\server\common\ip.h [InstallFolder]\include\server\common\jsonapi.h [InstallFolder]\include\server\common\keywords.h [InstallFolder]\include\server\common\kwlookup.h [InstallFolder]\include\server\common\link-canary.h [InstallFolder]\include\server\common\logging.h [InstallFolder]\include\server\common\md5.h [InstallFolder]\include\server\common\openssl.h [InstallFolder]\include\server\common\parse_manifest.h [InstallFolder]\include\server\common\percentrepl.h [InstallFolder]\include\server\common\pg_lzcompress.h [InstallFolder]\include\server\common\pg_prng.h [InstallFolder]\include\server\common\relpath.h [InstallFolder]\include\server\common\restricted_token.h [InstallFolder]\include\server\common\saslprep.h [InstallFolder]\include\server\common\scram-common.h [InstallFolder]\include\server\common\sha1.h [InstallFolder]\include\server\common\sha2.h [InstallFolder]\include\server\common\shortest_dec.h [InstallFolder]\include\server\common\string.h [InstallFolder]\include\server\common\unicode_case.h [InstallFolder]\include\server\common\unicode_case_table.h [InstallFolder]\include\server\common\unicode_category.h [InstallFolder]\include\server\common\unicode_category_table.h [InstallFolder]\include\server\common\unicode_east_asian_fw_table.h [InstallFolder]\include\server\common\unicode_nonspacing_table.h [InstallFolder]\include\server\common\unicode_norm.h [InstallFolder]\include\server\common\unicode_norm_hashfunc.h [InstallFolder]\include\server\common\unicode_norm_table.h [InstallFolder]\include\server\common\unicode_normprops_table.h [InstallFolder]\include\server\common\unicode_version.h [InstallFolder]\include\server\common\username.h [InstallFolder]\include\server\datatype\timestamp.h [InstallFolder]\include\server\executor\execAsync.h [InstallFolder]\include\server\executor\execExpr.h [InstallFolder]\include\server\executor\execParallel.h [InstallFolder]\include\server\executor\execPartition.h [InstallFolder]\include\server\executor\execdebug.h [InstallFolder]\include\server\executor\execdesc.h [InstallFolder]\include\server\executor\executor.h [InstallFolder]\include\server\executor\functions.h [InstallFolder]\include\server\executor\hashjoin.h [InstallFolder]\include\server\executor\instrument.h [InstallFolder]\include\server\executor\nodeAgg.h [InstallFolder]\include\server\executor\nodeAppend.h [InstallFolder]\include\server\executor\nodeBitmapAnd.h [InstallFolder]\include\server\executor\nodeBitmapHeapscan.h [InstallFolder]\include\server\executor\nodeBitmapIndexscan.h [InstallFolder]\include\server\executor\nodeBitmapOr.h [InstallFolder]\include\server\executor\nodeCtescan.h [InstallFolder]\include\server\executor\nodeCustom.h [InstallFolder]\include\server\executor\nodeForeignscan.h [InstallFolder]\include\server\executor\nodeFunctionscan.h [InstallFolder]\include\server\executor\nodeGather.h [InstallFolder]\include\server\executor\nodeGatherMerge.h [InstallFolder]\include\server\executor\nodeGroup.h [InstallFolder]\include\server\executor\nodeHash.h [InstallFolder]\include\server\executor\nodeHashjoin.h [InstallFolder]\include\server\executor\nodeIncrementalSort.h [InstallFolder]\include\server\executor\nodeIndexonlyscan.h [InstallFolder]\include\server\executor\nodeIndexscan.h [InstallFolder]\include\server\executor\nodeLimit.h [InstallFolder]\include\server\executor\nodeLockRows.h [InstallFolder]\include\server\executor\nodeMaterial.h [InstallFolder]\include\server\executor\nodeMemoize.h [InstallFolder]\include\server\executor\nodeMergeAppend.h [InstallFolder]\include\server\executor\nodeMergejoin.h [InstallFolder]\include\server\executor\nodeModifyTable.h [InstallFolder]\include\server\executor\nodeNamedtuplestorescan.h [InstallFolder]\include\server\executor\nodeNestloop.h [InstallFolder]\include\server\executor\nodeProjectSet.h [InstallFolder]\include\server\executor\nodeRecursiveunion.h [InstallFolder]\include\server\executor\nodeResult.h [InstallFolder]\include\server\executor\nodeSamplescan.h [InstallFolder]\include\server\executor\nodeSeqscan.h [InstallFolder]\include\server\executor\nodeSetOp.h [InstallFolder]\include\server\executor\nodeSort.h [InstallFolder]\include\server\executor\nodeSubplan.h [InstallFolder]\include\server\executor\nodeSubqueryscan.h [InstallFolder]\include\server\executor\nodeTableFuncscan.h [InstallFolder]\include\server\executor\nodeTidrangescan.h [InstallFolder]\include\server\executor\nodeTidscan.h [InstallFolder]\include\server\executor\nodeUnique.h [InstallFolder]\include\server\executor\nodeValuesscan.h [InstallFolder]\include\server\executor\nodeWindowAgg.h [InstallFolder]\include\server\executor\nodeWorktablescan.h [InstallFolder]\include\server\executor\spi.h [InstallFolder]\include\server\executor\spi_priv.h [InstallFolder]\include\server\executor\tablefunc.h [InstallFolder]\include\server\executor\tqueue.h [InstallFolder]\include\server\executor\tstoreReceiver.h [InstallFolder]\include\server\executor\tuptable.h [InstallFolder]\include\server\extension\cube\cubedata.h [InstallFolder]\include\server\extension\hstore\hstore.h [InstallFolder]\include\server\extension\isn\isn.h [InstallFolder]\include\server\extension\ltree\ltree.h [InstallFolder]\include\server\extension\seg\segdata.h [InstallFolder]\include\server\extension\vci_utils\nodes.t [InstallFolder]\include\server\fe_utils\archive.h [InstallFolder]\include\server\fe_utils\cancel.h [InstallFolder]\include\server\fe_utils\conditional.h [InstallFolder]\include\server\fe_utils\connect_utils.h [InstallFolder]\include\server\fe_utils\mbprint.h [InstallFolder]\include\server\fe_utils\option_utils.h [InstallFolder]\include\server\fe_utils\parallel_slot.h [InstallFolder]\include\server\fe_utils\print.h [InstallFolder]\include\server\fe_utils\psqlscan.h [InstallFolder]\include\server\fe_utils\psqlscan_int.h [InstallFolder]\include\server\fe_utils\query_utils.h [InstallFolder]\include\server\fe_utils\recovery_gen.h [InstallFolder]\include\server\fe_utils\simple_list.h [InstallFolder]\include\server\fe_utils\string_utils.h [InstallFolder]\include\server\fmgr.h [InstallFolder]\include\server\foreign\fdwapi.h [InstallFolder]\include\server\foreign\foreign.h [InstallFolder]\include\server\foreign\scaleout.h [InstallFolder]\include\server\funcapi.h [InstallFolder]\include\server\getopt_long.h [InstallFolder]\include\server\jit\SectionMemoryManager.h [InstallFolder]\include\server\jit\jit.h [InstallFolder]\include\server\jit\llvmjit.h [InstallFolder]\include\server\jit\llvmjit_backport.h [InstallFolder]\include\server\jit\llvmjit_emit.h [InstallFolder]\include\server\lib\binaryheap.h [InstallFolder]\include\server\lib\bipartite_match.h [InstallFolder]\include\server\lib\bloomfilter.h [InstallFolder]\include\server\lib\dshash.h [InstallFolder]\include\server\lib\hyperloglog.h [InstallFolder]\include\server\lib\ilist.h [InstallFolder]\include\server\lib\integerset.h [InstallFolder]\include\server\lib\knapsack.h [InstallFolder]\include\server\lib\pairingheap.h [InstallFolder]\include\server\lib\qunique.h [InstallFolder]\include\server\lib\radixtree.h [InstallFolder]\include\server\lib\rbtree.h [InstallFolder]\include\server\lib\simplehash.h [InstallFolder]\include\server\lib\sort_template.h [InstallFolder]\include\server\lib\stringinfo.h [InstallFolder]\include\server\libpq\auth.h [InstallFolder]\include\server\libpq\be-fsstubs.h [InstallFolder]\include\server\libpq\be-gssapi-common.h [InstallFolder]\include\server\libpq\crypt.h [InstallFolder]\include\server\libpq\hba.h [InstallFolder]\include\server\libpq\ifaddr.h [InstallFolder]\include\server\libpq\libpq-be-fe-helpers.h [InstallFolder]\include\server\libpq\libpq-be.h [InstallFolder]\include\server\libpq\libpq-fs.h [InstallFolder]\include\server\libpq\libpq.h [InstallFolder]\include\server\libpq\pqcomm.h [InstallFolder]\include\server\libpq\pqformat.h [InstallFolder]\include\server\libpq\pqmq.h [InstallFolder]\include\server\libpq\pqsignal.h [InstallFolder]\include\server\libpq\protocol.h [InstallFolder]\include\server\libpq\sasl.h [InstallFolder]\include\server\libpq\scram.h [InstallFolder]\include\server\lic\fjlic-client.h [InstallFolder]\include\server\mb\pg_wchar.h [InstallFolder]\include\server\mb\stringinfo_mb.h [InstallFolder]\include\server\miscadmin.h [InstallFolder]\include\server\nodes\bitmapset.h [InstallFolder]\include\server\nodes\execnodes.h [InstallFolder]\include\server\nodes\extensible.h [InstallFolder]\include\server\nodes\lockoptions.h [InstallFolder]\include\server\nodes\makefuncs.h [InstallFolder]\include\server\nodes\memnodes.h [InstallFolder]\include\server\nodes\miscnodes.h [InstallFolder]\include\server\nodes\multibitmapset.h [InstallFolder]\include\server\nodes\nodeFuncs.h [InstallFolder]\include\server\nodes\nodes.h [InstallFolder]\include\server\nodes\nodetags.h [InstallFolder]\include\server\nodes\params.h [InstallFolder]\include\server\nodes\parsenodes.h [InstallFolder]\include\server\nodes\pathnodes.h [InstallFolder]\include\server\nodes\pg_list.h [InstallFolder]\include\server\nodes\plannodes.h [InstallFolder]\include\server\nodes\primnodes.h [InstallFolder]\include\server\nodes\print.h [InstallFolder]\include\server\nodes\queryjumble.h [InstallFolder]\include\server\nodes\readfuncs.h [InstallFolder]\include\server\nodes\replnodes.h [InstallFolder]\include\server\nodes\subscripting.h [InstallFolder]\include\server\nodes\supportnodes.h [InstallFolder]\include\server\nodes\tidbitmap.h [InstallFolder]\include\server\nodes\value.h [InstallFolder]\include\server\optimizer\appendinfo.h [InstallFolder]\include\server\optimizer\clauses.h [InstallFolder]\include\server\optimizer\cost.h [InstallFolder]\include\server\optimizer\geqo.h [InstallFolder]\include\server\optimizer\geqo_copy.h [InstallFolder]\include\server\optimizer\geqo_gene.h [InstallFolder]\include\server\optimizer\geqo_misc.h [InstallFolder]\include\server\optimizer\geqo_mutation.h [InstallFolder]\include\server\optimizer\geqo_pool.h [InstallFolder]\include\server\optimizer\geqo_random.h [InstallFolder]\include\server\optimizer\geqo_recombination.h [InstallFolder]\include\server\optimizer\geqo_selection.h [InstallFolder]\include\server\optimizer\inherit.h [InstallFolder]\include\server\optimizer\joininfo.h [InstallFolder]\include\server\optimizer\optimizer.h [InstallFolder]\include\server\optimizer\orclauses.h [InstallFolder]\include\server\optimizer\paramassign.h [InstallFolder]\include\server\optimizer\pathnode.h [InstallFolder]\include\server\optimizer\paths.h [InstallFolder]\include\server\optimizer\placeholder.h [InstallFolder]\include\server\optimizer\plancat.h [InstallFolder]\include\server\optimizer\planmain.h [InstallFolder]\include\server\optimizer\planner.h [InstallFolder]\include\server\optimizer\prep.h [InstallFolder]\include\server\optimizer\restrictinfo.h [InstallFolder]\include\server\optimizer\subselect.h [InstallFolder]\include\server\optimizer\tlist.h [InstallFolder]\include\server\parser\analyze.h [InstallFolder]\include\server\parser\convert.h [InstallFolder]\include\server\parser\convert_item.h [InstallFolder]\include\server\parser\kwlist.h [InstallFolder]\include\server\parser\parse_agg.h [InstallFolder]\include\server\parser\parse_clause.h [InstallFolder]\include\server\parser\parse_coerce.h [InstallFolder]\include\server\parser\parse_collate.h [InstallFolder]\include\server\parser\parse_cte.h [InstallFolder]\include\server\parser\parse_enr.h [InstallFolder]\include\server\parser\parse_expr.h [InstallFolder]\include\server\parser\parse_func.h [InstallFolder]\include\server\parser\parse_merge.h [InstallFolder]\include\server\parser\parse_node.h [InstallFolder]\include\server\parser\parse_oper.h [InstallFolder]\include\server\parser\parse_param.h [InstallFolder]\include\server\parser\parse_relation.h [InstallFolder]\include\server\parser\parse_target.h [InstallFolder]\include\server\parser\parse_type.h [InstallFolder]\include\server\parser\parse_utilcmd.h [InstallFolder]\include\server\parser\parser.h [InstallFolder]\include\server\parser\parsetree.h [InstallFolder]\include\server\parser\scanner.h [InstallFolder]\include\server\parser\scansup.h [InstallFolder]\include\server\partitioning\partbounds.h [InstallFolder]\include\server\partitioning\partdefs.h [InstallFolder]\include\server\partitioning\partdesc.h [InstallFolder]\include\server\partitioning\partprune.h [InstallFolder]\include\server\pg_config.h [InstallFolder]\include\server\pg_config_ext.h [InstallFolder]\include\server\pg_config_manual.h [InstallFolder]\include\server\pg_config_os.h [InstallFolder]\include\server\pg_getopt.h [InstallFolder]\include\server\pg_trace.h [InstallFolder]\include\server\pgstat.h [InstallFolder]\include\server\pgtar.h [InstallFolder]\include\server\pgtime.h [InstallFolder]\include\server\plperl.h [InstallFolder]\include\server\plperl_system.h [InstallFolder]\include\server\plpgsql.h [InstallFolder]\include\server\plpy_cursorobject.h [InstallFolder]\include\server\plpy_elog.h [InstallFolder]\include\server\plpy_exec.h [InstallFolder]\include\server\plpy_main.h [InstallFolder]\include\server\plpy_planobject.h [InstallFolder]\include\server\plpy_plpymodule.h [InstallFolder]\include\server\plpy_procedure.h [InstallFolder]\include\server\plpy_resultobject.h [InstallFolder]\include\server\plpy_spi.h [InstallFolder]\include\server\plpy_subxactobject.h [InstallFolder]\include\server\plpy_typeio.h [InstallFolder]\include\server\plpy_util.h [InstallFolder]\include\server\plpython.h [InstallFolder]\include\server\plpython_system.h [InstallFolder]\include\server\port.h [InstallFolder]\include\server\port\atomics.h [InstallFolder]\include\server\port\atomics\arch-arm.h [InstallFolder]\include\server\port\atomics\arch-hppa.h [InstallFolder]\include\server\port\atomics\arch-ppc.h [InstallFolder]\include\server\port\atomics\arch-x86.h [InstallFolder]\include\server\port\atomics\fallback.h [InstallFolder]\include\server\port\atomics\generic-gcc.h [InstallFolder]\include\server\port\atomics\generic-msvc.h [InstallFolder]\include\server\port\atomics\generic-sunpro.h [InstallFolder]\include\server\port\atomics\generic.h [InstallFolder]\include\server\port\cygwin.h [InstallFolder]\include\server\port\darwin.h [InstallFolder]\include\server\port\freebsd.h [InstallFolder]\include\server\port\linux.h [InstallFolder]\include\server\port\netbsd.h [InstallFolder]\include\server\port\openbsd.h [InstallFolder]\include\server\port\pg_bitutils.h [InstallFolder]\include\server\port\pg_bswap.h [InstallFolder]\include\server\port\pg_crc32c.h [InstallFolder]\include\server\port\pg_iovec.h [InstallFolder]\include\server\port\pg_lfind.h [InstallFolder]\include\server\port\pg_pthread.h [InstallFolder]\include\server\port\simd.h [InstallFolder]\include\server\port\solaris.h [InstallFolder]\include\server\port\win32.h [InstallFolder]\include\server\port\win32\arpa\inet.h [InstallFolder]\include\server\port\win32\dlfcn.h [InstallFolder]\include\server\port\win32\grp.h [InstallFolder]\include\server\port\win32\netdb.h [InstallFolder]\include\server\port\win32\netinet\in.h [InstallFolder]\include\server\port\win32\netinet\tcp.h [InstallFolder]\include\server\port\win32\pwd.h [InstallFolder]\include\server\port\win32\sys\resource.h [InstallFolder]\include\server\port\win32\sys\select.h [InstallFolder]\include\server\port\win32\sys\socket.h [InstallFolder]\include\server\port\win32\sys\un.h [InstallFolder]\include\server\port\win32\sys\wait.h [InstallFolder]\include\server\port\win32_msvc\dirent.h [InstallFolder]\include\server\port\win32_msvc\sys\file.h [InstallFolder]\include\server\port\win32_msvc\sys\param.h [InstallFolder]\include\server\port\win32_msvc\sys\time.h [InstallFolder]\include\server\port\win32_msvc\unistd.h [InstallFolder]\include\server\port\win32_msvc\utime.h [InstallFolder]\include\server\port\win32_port.h [InstallFolder]\include\server\port\win32ntdll.h [InstallFolder]\include\server\portability\instr_time.h [InstallFolder]\include\server\portability\mem.h [InstallFolder]\include\server\postgres.h [InstallFolder]\include\server\postgres_ext.h [InstallFolder]\include\server\postgres_fe.h [InstallFolder]\include\server\postmaster\autovacuum.h [InstallFolder]\include\server\postmaster\auxprocess.h [InstallFolder]\include\server\postmaster\bgworker.h [InstallFolder]\include\server\postmaster\bgworker_internals.h [InstallFolder]\include\server\postmaster\bgwriter.h [InstallFolder]\include\server\postmaster\fork_process.h [InstallFolder]\include\server\postmaster\interrupt.h [InstallFolder]\include\server\postmaster\pgarch.h [InstallFolder]\include\server\postmaster\postmaster.h [InstallFolder]\include\server\postmaster\startup.h [InstallFolder]\include\server\postmaster\syslogger.h [InstallFolder]\include\server\postmaster\walsummarizer.h [InstallFolder]\include\server\postmaster\walwriter.h [InstallFolder]\include\server\postmaster\xlogmultiplexer.h [InstallFolder]\include\server\ppport.h [InstallFolder]\include\server\regex\regcustom.h [InstallFolder]\include\server\regex\regerrs.h [InstallFolder]\include\server\regex\regex.h [InstallFolder]\include\server\regex\regexport.h [InstallFolder]\include\server\regex\regguts.h [InstallFolder]\include\server\replication\decode.h [InstallFolder]\include\server\replication\followsend.h [InstallFolder]\include\server\replication\logical.h [InstallFolder]\include\server\replication\logicallauncher.h [InstallFolder]\include\server\replication\logicalproto.h [InstallFolder]\include\server\replication\logicalrelation.h [InstallFolder]\include\server\replication\logicalworker.h [InstallFolder]\include\server\replication\message.h [InstallFolder]\include\server\replication\origin.h [InstallFolder]\include\server\replication\output_plugin.h [InstallFolder]\include\server\replication\pgoutput.h [InstallFolder]\include\server\replication\reorderbuffer.h [InstallFolder]\include\server\replication\slot.h [InstallFolder]\include\server\replication\slotsync.h [InstallFolder]\include\server\replication\snapbuild.h [InstallFolder]\include\server\replication\syncrep.h [InstallFolder]\include\server\replication\walreceiver.h [InstallFolder]\include\server\replication\walsender.h [InstallFolder]\include\server\replication\walsender_private.h [InstallFolder]\include\server\replication\worker_internal.h [InstallFolder]\include\server\rewrite\prs2lock.h [InstallFolder]\include\server\rewrite\rewriteDefine.h [InstallFolder]\include\server\rewrite\rewriteHandler.h [InstallFolder]\include\server\rewrite\rewriteManip.h [InstallFolder]\include\server\rewrite\rewriteRemove.h [InstallFolder]\include\server\rewrite\rewriteSearchCycle.h [InstallFolder]\include\server\rewrite\rewriteSupport.h [InstallFolder]\include\server\rewrite\rowsecurity.h [InstallFolder]\include\server\snowball\header.h [InstallFolder]\include\server\snowball\libstemmer\api.h [InstallFolder]\include\server\snowball\libstemmer\header.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_1_basque.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_1_catalan.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_1_danish.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_1_dutch.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_1_english.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_1_finnish.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_1_french.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_1_german.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_1_indonesian.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_1_irish.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_1_italian.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_1_norwegian.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_1_porter.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_1_portuguese.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_1_spanish.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_1_swedish.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_2_hungarian.h [InstallFolder]\include\server\snowball\libstemmer \stem_ISO_8859_2_romanian.h [InstallFolder]\include\server\snowball\libstemmer\stem_KOI8_R_russian.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_arabic.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_armenian.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_basque.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_catalan.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_danish.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_dutch.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_english.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_finnish.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_french.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_german.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_greek.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_hindi.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_hungarian.h [InstallFolder]\include\server\snowball\libstemmer \stem_UTF_8_indonesian.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_irish.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_italian.h [InstallFolder]\include\server\snowball\libstemmer \stem_UTF_8_lithuanian.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_nepali.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_norwegian.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_porter.h [InstallFolder]\include\server\snowball\libstemmer \stem_UTF_8_portuguese.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_romanian.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_russian.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_serbian.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_spanish.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_swedish.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_tamil.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_turkish.h [InstallFolder]\include\server\snowball\libstemmer\stem_UTF_8_yiddish.h [InstallFolder]\include\server\statistics\extended_stats_internal.h [InstallFolder]\include\server\statistics\statistics.h [InstallFolder]\include\server\storage\barrier.h [InstallFolder]\include\server\storage\block.h [InstallFolder]\include\server\storage\buf.h [InstallFolder]\include\server\storage\buf_internals.h [InstallFolder]\include\server\storage\buffile.h [InstallFolder]\include\server\storage\bufmgr.h [InstallFolder]\include\server\storage\bufpage.h [InstallFolder]\include\server\storage\bulk_write.h [InstallFolder]\include\server\storage\checksum.h [InstallFolder]\include\server\storage\checksum_impl.h [InstallFolder]\include\server\storage\condition_variable.h [InstallFolder]\include\server\storage\copydir.h [InstallFolder]\include\server\storage\dsm.h [InstallFolder]\include\server\storage\dsm_impl.h [InstallFolder]\include\server\storage\dsm_registry.h [InstallFolder]\include\server\storage\fd.h [InstallFolder]\include\server\storage\fileset.h [InstallFolder]\include\server\storage\freespace.h [InstallFolder]\include\server\storage\fsm_internals.h [InstallFolder]\include\server\storage\indexfsm.h [InstallFolder]\include\server\storage\ipc.h [InstallFolder]\include\server\storage\item.h [InstallFolder]\include\server\storage\itemid.h [InstallFolder]\include\server\storage\itemptr.h [InstallFolder]\include\server\storage\large_object.h [InstallFolder]\include\server\storage\latch.h [InstallFolder]\include\server\storage\lmgr.h [InstallFolder]\include\server\storage\lock.h [InstallFolder]\include\server\storage\lockdefs.h [InstallFolder]\include\server\storage\lwlock.h [InstallFolder]\include\server\storage\lwlocklist.h [InstallFolder]\include\server\storage\lwlocknames.h [InstallFolder]\include\server\storage\md.h [InstallFolder]\include\server\storage\off.h [InstallFolder]\include\server\storage\pg_sema.h [InstallFolder]\include\server\storage\pg_shmem.h [InstallFolder]\include\server\storage\pmsignal.h [InstallFolder]\include\server\storage\predicate.h [InstallFolder]\include\server\storage\predicate_internals.h [InstallFolder]\include\server\storage\proc.h [InstallFolder]\include\server\storage\procarray.h [InstallFolder]\include\server\storage\proclist.h [InstallFolder]\include\server\storage\proclist_types.h [InstallFolder]\include\server\storage\procnumber.h [InstallFolder]\include\server\storage\procsignal.h [InstallFolder]\include\server\storage\read_stream.h [InstallFolder]\include\server\storage\reinit.h [InstallFolder]\include\server\storage\relfilelocator.h [InstallFolder]\include\server\storage\s_lock.h [InstallFolder]\include\server\storage\sharedfileset.h [InstallFolder]\include\server\storage\shm_mq.h [InstallFolder]\include\server\storage\shm_toc.h [InstallFolder]\include\server\storage\shmem.h [InstallFolder]\include\server\storage\sinval.h [InstallFolder]\include\server\storage\sinvaladt.h [InstallFolder]\include\server\storage\smgr.h [InstallFolder]\include\server\storage\spin.h [InstallFolder]\include\server\storage\standby.h [InstallFolder]\include\server\storage\standbydefs.h [InstallFolder]\include\server\storage\sync.h [InstallFolder]\include\server\tcop\backend_startup.h [InstallFolder]\include\server\tcop\cmdtag.h [InstallFolder]\include\server\tcop\cmdtaglist.h [InstallFolder]\include\server\tcop\deparse_utility.h [InstallFolder]\include\server\tcop\dest.h [InstallFolder]\include\server\tcop\fastpath.h [InstallFolder]\include\server\tcop\pquery.h [InstallFolder]\include\server\tcop\tcopprot.h [InstallFolder]\include\server\tcop\utility.h [InstallFolder]\include\server\tsearch\dicts\regis.h [InstallFolder]\include\server\tsearch\dicts\spell.h [InstallFolder]\include\server\tsearch\ts_cache.h [InstallFolder]\include\server\tsearch\ts_locale.h [InstallFolder]\include\server\tsearch\ts_public.h [InstallFolder]\include\server\tsearch\ts_type.h [InstallFolder]\include\server\tsearch\ts_utils.h [InstallFolder]\include\server\utils\acl.h [InstallFolder]\include\server\utils\aclchk_internal.h [InstallFolder]\include\server\utils\array.h [InstallFolder]\include\server\utils\arrayaccess.h [InstallFolder]\include\server\utils\ascii.h [InstallFolder]\include\server\utils\attoptcache.h [InstallFolder]\include\server\utils\backend_progress.h [InstallFolder]\include\server\utils\backend_status.h [InstallFolder]\include\server\utils\builtins.h [InstallFolder]\include\server\utils\bytea.h [InstallFolder]\include\server\utils\cash.h [InstallFolder]\include\server\utils\catcache.h [InstallFolder]\include\server\utils\combocid.h [InstallFolder]\include\server\utils\compatible_dbms.h [InstallFolder]\include\server\utils\conffiles.h [InstallFolder]\include\server\utils\cpu.h [InstallFolder]\include\server\utils\date.h [InstallFolder]\include\server\utils\datetime.h [InstallFolder]\include\server\utils\datum.h [InstallFolder]\include\server\utils\dsa.h [InstallFolder]\include\server\utils\dynahash.h [InstallFolder]\include\server\utils\elog.h [InstallFolder]\include\server\utils\encryption.h [InstallFolder]\include\server\utils\errcodes.h [InstallFolder]\include\server\utils\evtcache.h [InstallFolder]\include\server\utils\expandeddatum.h [InstallFolder]\include\server\utils\expandedrecord.h [InstallFolder]\include\server\utils\float.h [InstallFolder]\include\server\utils\fmgroids.h [InstallFolder]\include\server\utils\fmgrprotos.h [InstallFolder]\include\server\utils\fmgrtab.h [InstallFolder]\include\server\utils\formatting.h [InstallFolder]\include\server\utils\freepage.h [InstallFolder]\include\server\utils\geo_decls.h [InstallFolder]\include\server\utils\guc.h [InstallFolder]\include\server\utils\guc_hooks.h [InstallFolder]\include\server\utils\guc_tables.h [InstallFolder]\include\server\utils\help_config.h [InstallFolder]\include\server\utils\hsearch.h [InstallFolder]\include\server\utils\index_selfuncs.h [InstallFolder]\include\server\utils\inet.h [InstallFolder]\include\server\utils\injection_point.h [InstallFolder]\include\server\utils\inval.h [InstallFolder]\include\server\utils\json.h [InstallFolder]\include\server\utils\jsonb.h [InstallFolder]\include\server\utils\jsonfuncs.h [InstallFolder]\include\server\utils\jsonpath.h [InstallFolder]\include\server\utils\logtape.h [InstallFolder]\include\server\utils\lsyscache.h [InstallFolder]\include\server\utils\memdebug.h [InstallFolder]\include\server\utils\memutils.h [InstallFolder]\include\server\utils\memutils_internal.h [InstallFolder]\include\server\utils\memutils_memorychunk.h [InstallFolder]\include\server\utils\multirangetypes.h [InstallFolder]\include\server\utils\numeric.h [InstallFolder]\include\server\utils\palloc.h [InstallFolder]\include\server\utils\partcache.h [InstallFolder]\include\server\utils\pg_crc.h [InstallFolder]\include\server\utils\pg_locale.h [InstallFolder]\include\server\utils\pg_lsn.h [InstallFolder]\include\server\utils\pg_rusage.h [InstallFolder]\include\server\utils\pgstat_internal.h [InstallFolder]\include\server\utils\pidfile.h [InstallFolder]\include\server\utils\plancache.h [InstallFolder]\include\server\utils\portal.h [InstallFolder]\include\server\utils\probes.h [InstallFolder]\include\server\utils\ps_status.h [InstallFolder]\include\server\utils\queryenvironment.h [InstallFolder]\include\server\utils\rangetypes.h [InstallFolder]\include\server\utils\regproc.h [InstallFolder]\include\server\utils\rel.h [InstallFolder]\include\server\utils\relcache.h [InstallFolder]\include\server\utils\relfilenumbermap.h [InstallFolder]\include\server\utils\relmapper.h [InstallFolder]\include\server\utils\relptr.h [InstallFolder]\include\server\utils\reltrigger.h [InstallFolder]\include\server\utils\resowner.h [InstallFolder]\include\server\utils\rls.h [InstallFolder]\include\server\utils\ruleutils.h [InstallFolder]\include\server\utils\sampling.h [InstallFolder]\include\server\utils\selfuncs.h [InstallFolder]\include\server\utils\shared_meta_cache.h [InstallFolder]\include\server\utils\sharedtuplestore.h [InstallFolder]\include\server\utils\snapmgr.h [InstallFolder]\include\server\utils\snapshot.h [InstallFolder]\include\server\utils\sortsupport.h [InstallFolder]\include\server\utils\spccache.h [InstallFolder]\include\server\utils\syscache.h [InstallFolder]\include\server\utils\timeout.h [InstallFolder]\include\server\utils\timestamp.h [InstallFolder]\include\server\utils\tuplesort.h [InstallFolder]\include\server\utils\tuplesortstate.h [InstallFolder]\include\server\utils\tuplestore.h [InstallFolder]\include\server\utils\typcache.h [InstallFolder]\include\server\utils\tzparser.h [InstallFolder]\include\server\utils\usercontext.h [InstallFolder]\include\server\utils\userprofile.h [InstallFolder]\include\server\utils\userprofile_shmem.h [InstallFolder]\include\server\utils\uuid.h [InstallFolder]\include\server\utils\varbit.h [InstallFolder]\include\server\utils\varlena.h [InstallFolder]\include\server\utils\wait_event.h [InstallFolder]\include\server\utils\wait_event_types.h [InstallFolder]\include\server\utils\xid8.h [InstallFolder]\include\server\utils\xml.h [InstallFolder]\include\server\varatt.h [InstallFolder]\include\server\windowapi.h [InstallFolder]\include\sql3types.h [InstallFolder]\include\sqlca.h [InstallFolder]\include\sqlda-compat.h [InstallFolder]\include\sqlda-native.h [InstallFolder]\include\sqlda.h [InstallFolder]\lib\_int.dll [InstallFolder]\lib\_int.pdb [InstallFolder]\lib\amcheck.dll [InstallFolder]\lib\amcheck.pdb [InstallFolder]\lib\auth_delay.dll [InstallFolder]\lib\auth_delay.pdb [InstallFolder]\lib\auto_explain.dll [InstallFolder]\lib\auto_explain.pdb [InstallFolder]\lib\autoinc.dll [InstallFolder]\lib\autoinc.pdb [InstallFolder]\lib\basebackup_to_shell.dll [InstallFolder]\lib\basebackup_to_shell.pdb [InstallFolder]\lib\basic_archive.dll [InstallFolder]\lib\basic_archive.pdb [InstallFolder]\lib\bloom.dll [InstallFolder]\lib\bloom.pdb [InstallFolder]\lib\bool_plperl.dll [InstallFolder]\lib\bool_plperl.pdb [InstallFolder]\lib\btree_gin.dll [InstallFolder]\lib\btree_gin.pdb [InstallFolder]\lib\btree_gist.dll [InstallFolder]\lib\btree_gist.pdb [InstallFolder]\lib\citext.dll [InstallFolder]\lib\citext.pdb [InstallFolder]\lib\cube.dll [InstallFolder]\lib\cube.pdb [InstallFolder]\lib\cyrillic_and_mic.dll [InstallFolder]\lib\cyrillic_and_mic.pdb [InstallFolder]\lib\dblink.dll [InstallFolder]\lib\dblink.pdb [InstallFolder]\lib\dict_int.dll [InstallFolder]\lib\dict_int.pdb [InstallFolder]\lib\dict_snowball.dll [InstallFolder]\lib\dict_snowball.pdb [InstallFolder]\lib\dict_xsyn.dll [InstallFolder]\lib\dict_xsyn.pdb [InstallFolder]\lib\earthdistance.dll [InstallFolder]\lib\earthdistance.pdb [InstallFolder]\lib\euc2004_sjis2004.dll [InstallFolder]\lib\euc2004_sjis2004.pdb [InstallFolder]\lib\euc_cn_and_mic.dll [InstallFolder]\lib\euc_cn_and_mic.pdb [InstallFolder]\lib\euc_jp_and_sjis.dll [InstallFolder]\lib\euc_jp_and_sjis.pdb [InstallFolder]\lib\euc_kr_and_mic.dll [InstallFolder]\lib\euc_kr_and_mic.pdb [InstallFolder]\lib\euc_tw_and_big5.dll [InstallFolder]\lib\euc_tw_and_big5.pdb [InstallFolder]\lib\file_fdw.dll [InstallFolder]\lib\file_fdw.pdb [InstallFolder]\lib\fuzzystrmatch.dll [InstallFolder]\lib\fuzzystrmatch.pdb [InstallFolder]\lib\hstore.dll [InstallFolder]\lib\hstore.pdb [InstallFolder]\lib\hstore_plperl.dll [InstallFolder]\lib\hstore_plperl.pdb [InstallFolder]\lib\hstore_plpython3.dll [InstallFolder]\lib\hstore_plpython3.pdb [InstallFolder]\lib\insert_username.dll [InstallFolder]\lib\insert_username.pdb [InstallFolder]\lib\isn.dll [InstallFolder]\lib\isn.pdb [InstallFolder]\lib\jsonb_plperl.dll [InstallFolder]\lib\jsonb_plperl.pdb [InstallFolder]\lib\jsonb_plpython3.dll [InstallFolder]\lib\jsonb_plpython3.pdb [InstallFolder]\lib\latin2_and_win1250.dll [InstallFolder]\lib\latin2_and_win1250.pdb [InstallFolder]\lib\latin_and_mic.dll [InstallFolder]\lib\latin_and_mic.pdb [InstallFolder]\lib\libecpg.a [InstallFolder]\lib\libecpg.dll [InstallFolder]\lib\libecpg.lib [InstallFolder]\lib\libecpg.pdb [InstallFolder]\lib\libecpg_compat.a [InstallFolder]\lib\libecpg_compat.dll [InstallFolder]\lib\libecpg_compat.lib [InstallFolder]\lib\libecpg_compat.pdb [InstallFolder]\lib\libintl.lib [InstallFolder]\lib\libpgcommon.a [InstallFolder]\lib\libpgcommon_shlib.a [InstallFolder]\lib\libpgfeutils.a [InstallFolder]\lib\libpgport.a [InstallFolder]\lib\libpgport_shlib.a [InstallFolder]\lib\libpgtypes.a [InstallFolder]\lib\libpgtypes.dll [InstallFolder]\lib\libpgtypes.lib [InstallFolder]\lib\libpgtypes.pdb [InstallFolder]\lib\libpq.a [InstallFolder]\lib\libpq.dll [InstallFolder]\lib\libpq.lib [InstallFolder]\lib\libpq.pdb [InstallFolder]\lib\libpqwalreceiver.dll [InstallFolder]\lib\libpqwalreceiver.pdb [InstallFolder]\lib\lo.dll [InstallFolder]\lib\lo.pdb [InstallFolder]\lib\ltree.dll [InstallFolder]\lib\ltree.pdb [InstallFolder]\lib\ltree_plpython3.dll [InstallFolder]\lib\ltree_plpython3.pdb [InstallFolder]\lib\mcevent.dll [InstallFolder]\lib\moddatetime.dll [InstallFolder]\lib\moddatetime.pdb [InstallFolder]\lib\orafce.pdb [InstallFolder]\lib\ossl-modules\legacy.dll [InstallFolder]\lib\pageinspect.dll [InstallFolder]\lib\pageinspect.pdb [InstallFolder]\lib\passwordcheck.dll [InstallFolder]\lib\passwordcheck.pdb [InstallFolder]\lib\pg_buffercache.dll [InstallFolder]\lib\pg_buffercache.pdb [InstallFolder]\lib\pg_freespacemap.dll [InstallFolder]\lib\pg_freespacemap.pdb [InstallFolder]\lib\pg_prewarm.dll [InstallFolder]\lib\pg_prewarm.pdb [InstallFolder]\lib\pg_stat_statements.dll [InstallFolder]\lib\pg_stat_statements.pdb [InstallFolder]\lib\pg_surgery.dll [InstallFolder]\lib\pg_surgery.pdb [InstallFolder]\lib\pg_trgm.dll [InstallFolder]\lib\pg_trgm.pdb [InstallFolder]\lib\pg_visibility.dll [InstallFolder]\lib\pg_visibility.pdb [InstallFolder]\lib\pg_walinspect.dll [InstallFolder]\lib\pg_walinspect.pdb [InstallFolder]\lib\pgcrypto.dll [InstallFolder]\lib\pgcrypto.pdb [InstallFolder]\lib\pgevent.dll [InstallFolder]\lib\pgevent.lib [InstallFolder]\lib\pgevent.pdb [InstallFolder]\lib\pgoutput.dll [InstallFolder]\lib\pgoutput.pdb [InstallFolder]\lib\pgrowlocks.dll [InstallFolder]\lib\pgrowlocks.pdb [InstallFolder]\lib\pgstattuple.dll [InstallFolder]\lib\pgstattuple.pdb [InstallFolder]\lib\pgx_datamasking.dll [InstallFolder]\lib\pgx_datamasking.pdb [InstallFolder]\lib\pgx_loader.dll [InstallFolder]\lib\pgx_loader.pdb [InstallFolder]\lib\pgx_oracle_compatible.dll [InstallFolder]\lib\pgx_stat_vacuum_freeze.dll [InstallFolder]\lib\pgx_stat_vacuum_freeze.pdb [InstallFolder]\lib\pgxml.dll [InstallFolder]\lib\pgxml.pdb [InstallFolder]\lib\pgxs\config\install-sh [InstallFolder]\lib\pgxs\config\missing [InstallFolder]\lib\pgxs\src\Makefile.global [InstallFolder]\lib\pgxs\src\Makefile.port [InstallFolder]\lib\pgxs\src\Makefile.shlib [InstallFolder]\lib\pgxs\src\makefiles\pgxs.mk [InstallFolder]\lib\pgxs\src\nls-global.mk [InstallFolder]\lib\pgxs\src\test\isolation\isolationtester.exe [InstallFolder]\lib\pgxs\src\test\isolation\isolationtester.pdb [InstallFolder]\lib\pgxs\src\test\isolation\pg_isolation_regress.exe [InstallFolder]\lib\pgxs\src\test\isolation\pg_isolation_regress.pdb [InstallFolder]\lib\pgxs\src\test\perl\PostgreSQL\Test\BackgroundPsql.pm [InstallFolder]\lib\pgxs\src\test\perl\PostgreSQL\Test\Cluster.pm [InstallFolder]\lib\pgxs\src\test\perl\PostgreSQL\Test\RecursiveCopy.pm [InstallFolder]\lib\pgxs\src\test\perl\PostgreSQL\Test\SimpleTee.pm [InstallFolder]\lib\pgxs\src\test\perl\PostgreSQL\Test\Utils.pm [InstallFolder]\lib\pgxs\src\test\perl\PostgreSQL\Version.pm [InstallFolder]\lib\pgxs\src\test\regress\pg_regress.exe [InstallFolder]\lib\pgxs\src\test\regress\pg_regress.pdb [InstallFolder]\lib\pgxs\src\test\regress\pg_regress_add.exe [InstallFolder]\lib\pgxs\src\test\regress\pg_regress_add.pdb [InstallFolder]\lib\pkgconfig\libecpg.pc [InstallFolder]\lib\pkgconfig\libecpg_compat.pc [InstallFolder]\lib\pkgconfig\libpgtypes.pc [InstallFolder]\lib\pkgconfig\libpq.pc [InstallFolder]\lib\plperl.dll [InstallFolder]\lib\plperl.pdb [InstallFolder]\lib\plpgsql.dll [InstallFolder]\lib\plpgsql.pdb [InstallFolder]\lib\plpython3.dll [InstallFolder]\lib\plpython3.pdb [InstallFolder]\lib\pltcl.dll [InstallFolder]\lib\pltcl.pdb [InstallFolder]\lib\postgres.lib [InstallFolder]\lib\postgres_fdw.dll [InstallFolder]\lib\postgres_fdw.pdb [InstallFolder]\lib\postgres_scaleout_fdw.dll [InstallFolder]\lib\postgres_scaleout_fdw.pdb [InstallFolder]\lib\refint.dll [InstallFolder]\lib\refint.pdb [InstallFolder]\lib\seg.dll [InstallFolder]\lib\seg.pdb [InstallFolder]\lib\sslinfo.dll [InstallFolder]\lib\sslinfo.pdb [InstallFolder]\lib\tablefunc.dll [InstallFolder]\lib\tablefunc.pdb [InstallFolder]\lib\tcn.dll [InstallFolder]\lib\tcn.pdb [InstallFolder]\lib\test_decoding.dll [InstallFolder]\lib\test_decoding.pdb [InstallFolder]\lib\tsm_system_rows.dll [InstallFolder]\lib\tsm_system_rows.pdb [InstallFolder]\lib\tsm_system_time.dll [InstallFolder]\lib\tsm_system_time.pdb [InstallFolder]\lib\unaccent.dll [InstallFolder]\lib\unaccent.pdb [InstallFolder]\lib\utf8_and_big5.dll [InstallFolder]\lib\utf8_and_big5.pdb [InstallFolder]\lib\utf8_and_cyrillic.dll [InstallFolder]\lib\utf8_and_cyrillic.pdb [InstallFolder]\lib\utf8_and_euc2004.dll [InstallFolder]\lib\utf8_and_euc2004.pdb [InstallFolder]\lib\utf8_and_euc_cn.dll [InstallFolder]\lib\utf8_and_euc_cn.pdb [InstallFolder]\lib\utf8_and_euc_jp.dll [InstallFolder]\lib\utf8_and_euc_jp.pdb [InstallFolder]\lib\utf8_and_euc_kr.dll [InstallFolder]\lib\utf8_and_euc_kr.pdb [InstallFolder]\lib\utf8_and_euc_tw.dll [InstallFolder]\lib\utf8_and_euc_tw.pdb [InstallFolder]\lib\utf8_and_gb18030.dll [InstallFolder]\lib\utf8_and_gb18030.pdb [InstallFolder]\lib\utf8_and_gbk.dll [InstallFolder]\lib\utf8_and_gbk.pdb [InstallFolder]\lib\utf8_and_iso8859.dll [InstallFolder]\lib\utf8_and_iso8859.pdb [InstallFolder]\lib\utf8_and_iso8859_1.dll [InstallFolder]\lib\utf8_and_iso8859_1.pdb [InstallFolder]\lib\utf8_and_johab.dll [InstallFolder]\lib\utf8_and_johab.pdb [InstallFolder]\lib\utf8_and_sjis.dll [InstallFolder]\lib\utf8_and_sjis.pdb [InstallFolder]\lib\utf8_and_sjis2004.dll [InstallFolder]\lib\utf8_and_sjis2004.pdb [InstallFolder]\lib\utf8_and_uhc.dll [InstallFolder]\lib\utf8_and_uhc.pdb [InstallFolder]\lib\utf8_and_win.dll [InstallFolder]\lib\utf8_and_win.pdb [InstallFolder]\lib\uuid-ossp.dll [InstallFolder]\lib\uuid-ossp.pdb [InstallFolder]\lib\vci.dll [InstallFolder]\lib\vci.lib [InstallFolder]\lib\vci.pdb [InstallFolder]\lib\vci_inspect.dll [InstallFolder]\lib\vci_inspect.pdb [InstallFolder]\lib\watchdog.dll [InstallFolder]\lib\watchdog.pdb [InstallFolder]\mc\jdbc\lib\postgresql-jdbc42.jar [InstallFolder]\mc\jdk8\ASSEMBLY_EXCEPTION [InstallFolder]\mc\jdk8\LICENSE [InstallFolder]\mc\jdk8\THIRDPARTYLICENSE-FREETYPE.txt [InstallFolder]\mc\jdk8\THIRD_PARTY_README [InstallFolder]\mc\jdk8\bin\api-ms-win-core-console-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-datetime-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-debug-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-errorhandling-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-file-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-file-l1-2-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-file-l2-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-handle-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-heap-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-interlocked-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-libraryloader-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-localization-l1-2-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-memory-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-namedpipe-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-processenvironment-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-processthreads-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-processthreads-l1-1-1.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-profile-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-rtlsupport-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-string-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-synch-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-synch-l1-2-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-sysinfo-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-timezone-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-core-util-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-crt-conio-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-crt-convert-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-crt-environment-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-crt-filesystem-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-crt-heap-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-crt-locale-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-crt-math-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-crt-multibyte-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-crt-private-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-crt-process-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-crt-runtime-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-crt-stdio-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-crt-string-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-crt-time-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\api-ms-win-crt-utility-l1-1-0.dll [InstallFolder]\mc\jdk8\bin\appletviewer.exe [InstallFolder]\mc\jdk8\bin\clhsdb.exe [InstallFolder]\mc\jdk8\bin\extcheck.exe [InstallFolder]\mc\jdk8\bin\hsdb.exe [InstallFolder]\mc\jdk8\bin\idlj.exe [InstallFolder]\mc\jdk8\bin\jabswitch.exe [InstallFolder]\mc\jdk8\bin\jar.exe [InstallFolder]\mc\jdk8\bin\jarsigner.exe [InstallFolder]\mc\jdk8\bin\java-rmi.exe [InstallFolder]\mc\jdk8\bin\java.exe [InstallFolder]\mc\jdk8\bin\javac.exe [InstallFolder]\mc\jdk8\bin\javadoc.exe [InstallFolder]\mc\jdk8\bin\javah.exe [InstallFolder]\mc\jdk8\bin\javap.exe [InstallFolder]\mc\jdk8\bin\javaw.exe [InstallFolder]\mc\jdk8\bin\jcmd.exe [InstallFolder]\mc\jdk8\bin\jconsole.exe [InstallFolder]\mc\jdk8\bin\jdb.exe [InstallFolder]\mc\jdk8\bin\jdeps.exe [InstallFolder]\mc\jdk8\bin\jfr.exe [InstallFolder]\mc\jdk8\bin\jhat.exe [InstallFolder]\mc\jdk8\bin\jinfo.exe [InstallFolder]\mc\jdk8\bin\jjs.exe [InstallFolder]\mc\jdk8\bin\jli.dll [InstallFolder]\mc\jdk8\bin\jmap.exe [InstallFolder]\mc\jdk8\bin\jps.exe [InstallFolder]\mc\jdk8\bin\jrunscript.exe [InstallFolder]\mc\jdk8\bin\jsadebugd.exe [InstallFolder]\mc\jdk8\bin\jstack.exe [InstallFolder]\mc\jdk8\bin\jstat.exe [InstallFolder]\mc\jdk8\bin\jstatd.exe [InstallFolder]\mc\jdk8\bin\jvisualvm.exe [InstallFolder]\mc\jdk8\bin\keytool.exe [InstallFolder]\mc\jdk8\bin\kinit.exe [InstallFolder]\mc\jdk8\bin\klist.exe [InstallFolder]\mc\jdk8\bin\ktab.exe [InstallFolder]\mc\jdk8\bin\msvcp140.dll [InstallFolder]\mc\jdk8\bin\native2ascii.exe [InstallFolder]\mc\jdk8\bin\orbd.exe [InstallFolder]\mc\jdk8\bin\pack200.exe [InstallFolder]\mc\jdk8\bin\policytool.exe [InstallFolder]\mc\jdk8\bin\rmic.exe [InstallFolder]\mc\jdk8\bin\rmid.exe [InstallFolder]\mc\jdk8\bin\rmiregistry.exe [InstallFolder]\mc\jdk8\bin\schemagen.exe [InstallFolder]\mc\jdk8\bin\serialver.exe [InstallFolder]\mc\jdk8\bin\servertool.exe [InstallFolder]\mc\jdk8\bin\tnameserv.exe [InstallFolder]\mc\jdk8\bin\ucrtbase.dll [InstallFolder]\mc\jdk8\bin\unpack200.exe [InstallFolder]\mc\jdk8\bin\vcruntime140.dll [InstallFolder]\mc\jdk8\bin\wsgen.exe [InstallFolder]\mc\jdk8\bin\wsimport.exe [InstallFolder]\mc\jdk8\bin\xjc.exe [InstallFolder]\mc\jdk8\include\classfile_constants.h [InstallFolder]\mc\jdk8\include\jawt.h [InstallFolder]\mc\jdk8\include\jdwpTransport.h [InstallFolder]\mc\jdk8\include\jni.h [InstallFolder]\mc\jdk8\include\jvmti.h [InstallFolder]\mc\jdk8\include\jvmticmlr.h [InstallFolder]\mc\jdk8\include\win32\bridge\AccessBridgeCallbacks.h [InstallFolder]\mc\jdk8\include\win32\bridge\AccessBridgeCalls.c [InstallFolder]\mc\jdk8\include\win32\bridge\AccessBridgeCalls.h [InstallFolder]\mc\jdk8\include\win32\bridge\AccessBridgePackages.h [InstallFolder]\mc\jdk8\include\win32\jawt_md.h [InstallFolder]\mc\jdk8\include\win32\jni_md.h [InstallFolder]\mc\jdk8\jre\ASSEMBLY_EXCEPTION [InstallFolder]\mc\jdk8\jre\LICENSE [InstallFolder]\mc\jdk8\jre\THIRD_PARTY_README [InstallFolder]\mc\jdk8\jre\bin\JAWTAccessBridge-64.dll [InstallFolder]\mc\jdk8\jre\bin\JavaAccessBridge-64.dll [InstallFolder]\mc\jdk8\jre\bin\WindowsAccessBridge-64.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-console-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-datetime-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-debug-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-errorhandling-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-file-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-file-l1-2-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-file-l2-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-handle-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-heap-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-interlocked-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-libraryloader-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-localization-l1-2-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-memory-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-namedpipe-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin \api-ms-win-core-processenvironment-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-processthreads-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-processthreads-l1-1-1.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-profile-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-rtlsupport-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-string-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-synch-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-synch-l1-2-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-sysinfo-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-timezone-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-core-util-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-crt-conio-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-crt-convert-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-crt-environment-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-crt-filesystem-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-crt-heap-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-crt-locale-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-crt-math-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-crt-multibyte-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-crt-private-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-crt-process-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-crt-runtime-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-crt-stdio-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-crt-string-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-crt-time-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\api-ms-win-crt-utility-l1-1-0.dll [InstallFolder]\mc\jdk8\jre\bin\attach.dll [InstallFolder]\mc\jdk8\jre\bin\awt.dll [InstallFolder]\mc\jdk8\jre\bin\dt_shmem.dll [InstallFolder]\mc\jdk8\jre\bin\dt_socket.dll [InstallFolder]\mc\jdk8\jre\bin\fjvm\Xusage.txt [InstallFolder]\mc\jdk8\jre\bin\fjvm\jvm.dll [InstallFolder]\mc\jdk8\jre\bin\fontmanager.dll [InstallFolder]\mc\jdk8\jre\bin\freetype.dll [InstallFolder]\mc\jdk8\jre\bin\hprof.dll [InstallFolder]\mc\jdk8\jre\bin\instrument.dll [InstallFolder]\mc\jdk8\jre\bin\j2gss.dll [InstallFolder]\mc\jdk8\jre\bin\j2pcsc.dll [InstallFolder]\mc\jdk8\jre\bin\j2pkcs11.dll [InstallFolder]\mc\jdk8\jre\bin\jaas_nt.dll [InstallFolder]\mc\jdk8\jre\bin\jabswitch.exe [InstallFolder]\mc\jdk8\jre\bin\java-rmi.exe [InstallFolder]\mc\jdk8\jre\bin\java.dll [InstallFolder]\mc\jdk8\jre\bin\java.exe [InstallFolder]\mc\jdk8\jre\bin\java_crw_demo.dll [InstallFolder]\mc\jdk8\jre\bin\javaw.exe [InstallFolder]\mc\jdk8\jre\bin\jawt.dll [InstallFolder]\mc\jdk8\jre\bin\jdwp.dll [InstallFolder]\mc\jdk8\jre\bin\jjs.exe [InstallFolder]\mc\jdk8\jre\bin\jli.dll [InstallFolder]\mc\jdk8\jre\bin\jpeg.dll [InstallFolder]\mc\jdk8\jre\bin\jsdt.dll [InstallFolder]\mc\jdk8\jre\bin\jsound.dll [InstallFolder]\mc\jdk8\jre\bin\jsoundds.dll [InstallFolder]\mc\jdk8\jre\bin\keytool.exe [InstallFolder]\mc\jdk8\jre\bin\kinit.exe [InstallFolder]\mc\jdk8\jre\bin\klist.exe [InstallFolder]\mc\jdk8\jre\bin\ktab.exe [InstallFolder]\mc\jdk8\jre\bin\lcms.dll [InstallFolder]\mc\jdk8\jre\bin\management.dll [InstallFolder]\mc\jdk8\jre\bin\mlib_image.dll [InstallFolder]\mc\jdk8\jre\bin\msvcp140.dll [InstallFolder]\mc\jdk8\jre\bin\net.dll [InstallFolder]\mc\jdk8\jre\bin\nio.dll [InstallFolder]\mc\jdk8\jre\bin\npt.dll [InstallFolder]\mc\jdk8\jre\bin\orbd.exe [InstallFolder]\mc\jdk8\jre\bin\pack200.exe [InstallFolder]\mc\jdk8\jre\bin\policytool.exe [InstallFolder]\mc\jdk8\jre\bin\rmid.exe [InstallFolder]\mc\jdk8\jre\bin\rmiregistry.exe [InstallFolder]\mc\jdk8\jre\bin\sawindbg.dll [InstallFolder]\mc\jdk8\jre\bin\server\Xusage.txt [InstallFolder]\mc\jdk8\jre\bin\server\jvm.dll [InstallFolder]\mc\jdk8\jre\bin\servertool.exe [InstallFolder]\mc\jdk8\jre\bin\splashscreen.dll [InstallFolder]\mc\jdk8\jre\bin\sspi_bridge.dll [InstallFolder]\mc\jdk8\jre\bin\sunec.dll [InstallFolder]\mc\jdk8\jre\bin\sunmscapi.dll [InstallFolder]\mc\jdk8\jre\bin\tnameserv.exe [InstallFolder]\mc\jdk8\jre\bin\ucrtbase.dll [InstallFolder]\mc\jdk8\jre\bin\unpack.dll [InstallFolder]\mc\jdk8\jre\bin\unpack200.exe [InstallFolder]\mc\jdk8\jre\bin\vcruntime140.dll [InstallFolder]\mc\jdk8\jre\bin\verify.dll [InstallFolder]\mc\jdk8\jre\bin\w2k_lsa_auth.dll [InstallFolder]\mc\jdk8\jre\bin\zip.dll [InstallFolder]\mc\jdk8\jre\lib\accessibility.properties [InstallFolder]\mc\jdk8\jre\lib\amd64\jvm.cfg [InstallFolder]\mc\jdk8\jre\lib\calendars.properties [InstallFolder]\mc\jdk8\jre\lib\charsets.jar [InstallFolder]\mc\jdk8\jre\lib\classlist [InstallFolder]\mc\jdk8\jre\lib\cmm\CIEXYZ.pf [InstallFolder]\mc\jdk8\jre\lib\cmm\GRAY.pf [InstallFolder]\mc\jdk8\jre\lib\cmm\LINEAR_RGB.pf [InstallFolder]\mc\jdk8\jre\lib\cmm\PYCC.pf [InstallFolder]\mc\jdk8\jre\lib\cmm\sRGB.pf [InstallFolder]\mc\jdk8\jre\lib\content-types.properties [InstallFolder]\mc\jdk8\jre\lib\currency.data [InstallFolder]\mc\jdk8\jre\lib\ext\access-bridge-64.jar [InstallFolder]\mc\jdk8\jre\lib\ext\cldrdata.jar [InstallFolder]\mc\jdk8\jre\lib\ext\dnsns.jar [InstallFolder]\mc\jdk8\jre\lib\ext\jaccess.jar [InstallFolder]\mc\jdk8\jre\lib\ext\localedata.jar [InstallFolder]\mc\jdk8\jre\lib\ext\meta-index [InstallFolder]\mc\jdk8\jre\lib\ext\nashorn.jar [InstallFolder]\mc\jdk8\jre\lib\ext\sunec.jar [InstallFolder]\mc\jdk8\jre\lib\ext\sunjce_provider.jar [InstallFolder]\mc\jdk8\jre\lib\ext\sunmscapi.jar [InstallFolder]\mc\jdk8\jre\lib\ext\sunpkcs11.jar [InstallFolder]\mc\jdk8\jre\lib\ext\zipfs.jar [InstallFolder]\mc\jdk8\jre\lib\flavormap.properties [InstallFolder]\mc\jdk8\jre\lib\fontconfig.bfc [InstallFolder]\mc\jdk8\jre\lib\fontconfig.properties.src [InstallFolder]\mc\jdk8\jre\lib\hijrah-config-umalqura.properties [InstallFolder]\mc\jdk8\jre\lib\images\cursors\cursors.properties [InstallFolder]\mc\jdk8\jre\lib\images\cursors\invalid32x32.gif [InstallFolder]\mc\jdk8\jre\lib\images\cursors\win32_CopyDrop32x32.gif [InstallFolder]\mc\jdk8\jre\lib\images\cursors\win32_CopyNoDrop32x32.gif [InstallFolder]\mc\jdk8\jre\lib\images\cursors\win32_LinkDrop32x32.gif [InstallFolder]\mc\jdk8\jre\lib\images\cursors\win32_LinkNoDrop32x32.gif [InstallFolder]\mc\jdk8\jre\lib\images\cursors\win32_MoveDrop32x32.gif [InstallFolder]\mc\jdk8\jre\lib\images\cursors\win32_MoveNoDrop32x32.gif [InstallFolder]\mc\jdk8\jre\lib\jce.jar [InstallFolder]\mc\jdk8\jre\lib\jfr.jar [InstallFolder]\mc\jdk8\jre\lib\jfr\default.jfc [InstallFolder]\mc\jdk8\jre\lib\jfr\extend.jfc [InstallFolder]\mc\jdk8\jre\lib\jfr\profile.jfc [InstallFolder]\mc\jdk8\jre\lib\jsse.jar [InstallFolder]\mc\jdk8\jre\lib\jvm.hprof.txt [InstallFolder]\mc\jdk8\jre\lib\logging.properties [InstallFolder]\mc\jdk8\jre\lib\management-agent.jar [InstallFolder]\mc\jdk8\jre\lib\management\jmxremote.access [InstallFolder]\mc\jdk8\jre\lib\management\jmxremote.password.template [InstallFolder]\mc\jdk8\jre\lib\management\management.properties [InstallFolder]\mc\jdk8\jre\lib\management\snmp.acl.template [InstallFolder]\mc\jdk8\jre\lib\meta-index [InstallFolder]\mc\jdk8\jre\lib\net.properties [InstallFolder]\mc\jdk8\jre\lib\psfont.properties.ja [InstallFolder]\mc\jdk8\jre\lib\psfontj2d.properties [InstallFolder]\mc\jdk8\jre\lib\resources.jar [InstallFolder]\mc\jdk8\jre\lib\rt.jar [InstallFolder]\mc\jdk8\jre\lib\security\blacklisted.certs [InstallFolder]\mc\jdk8\jre\lib\security\cacerts [InstallFolder]\mc\jdk8\jre\lib\security\java.policy [InstallFolder]\mc\jdk8\jre\lib\security\java.security [InstallFolder]\mc\jdk8\jre\lib\security\policy\limited \US_export_policy.jar [InstallFolder]\mc\jdk8\jre\lib\security\policy\limited\local_policy.jar [InstallFolder]\mc\jdk8\jre\lib\security\policy\unlimited \US_export_policy.jar [InstallFolder]\mc\jdk8\jre\lib\security\policy\unlimited \local_policy.jar [InstallFolder]\mc\jdk8\jre\lib\sound.properties [InstallFolder]\mc\jdk8\jre\lib\tzdb.dat [InstallFolder]\mc\jdk8\jre\lib\tzmappings [InstallFolder]\mc\jdk8\lib\ct.sym [InstallFolder]\mc\jdk8\lib\dt.jar [InstallFolder]\mc\jdk8\lib\ir.idl [InstallFolder]\mc\jdk8\lib\jawt.lib [InstallFolder]\mc\jdk8\lib\jconsole.jar [InstallFolder]\mc\jdk8\lib\jvm.lib [InstallFolder]\mc\jdk8\lib\orb.idl [InstallFolder]\mc\jdk8\lib\sa-jdi.jar [InstallFolder]\mc\jdk8\lib\tools.jar [InstallFolder]\mc\jdk8\lib\visualvm\etc\visualvm.clusters [InstallFolder]\mc\jdk8\lib\visualvm\etc\visualvm.conf [InstallFolder]\mc\jdk8\lib\visualvm\etc\visualvm.icns [InstallFolder]\mc\jdk8\lib\visualvm\license\LICENSE.txt [InstallFolder]\mc\jdk8\lib\visualvm\license\netbeans_platform \LICENSE.txt [InstallFolder]\mc\jdk8\lib\visualvm\license\netbeans_platform \felix-4.2.1-license.txt [InstallFolder]\mc\jdk8\lib\visualvm\license\netbeans_platform \jhall-2.0_05-license.txt [InstallFolder]\mc\jdk8\lib\visualvm\license\netbeans_platform \jna-4.1.0-license.txt [InstallFolder]\mc\jdk8\lib\visualvm\license\netbeans_platform \jna-platform-4.1.0-license.txt [InstallFolder]\mc\jdk8\lib\visualvm\license\netbeans_platform\o.n.core \DISTRIBUTION.txt [InstallFolder]\mc\jdk8\lib\visualvm\license\netbeans_platform\o.n.core \LICENSE.txt [InstallFolder]\mc\jdk8\lib\visualvm\license\netbeans_platform\o.n.core \THIRDPARTYLICENSEREADME.txt [InstallFolder]\mc\jdk8\lib\visualvm\license\netbeans_platform \osgi-4.2-license.txt [InstallFolder]\mc\jdk8\lib\visualvm\platform\.lastModified [InstallFolder]\mc\jdk8\lib\visualvm\platform\VERSION.txt [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\ModuleAutoDeps \org-netbeans-core.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\ModuleAutoDeps \org-netbeans-modules-options-api.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\ModuleAutoDeps \org-netbeans-modules-queries.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\ModuleAutoDeps \org-openide-execution.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\ModuleAutoDeps \org-openide-explorer.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\ModuleAutoDeps \org-openide-filesystems.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\ModuleAutoDeps \org-openide-loaders.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\ModuleAutoDeps \org-openide-modules.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\ModuleAutoDeps \org-openide-nodes.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\ModuleAutoDeps \org-openide-text.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\ModuleAutoDeps \org-openide-util.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-api-annotations-common.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-api-progress.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-api-search.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-api-visual.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-core-execution.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-core-io-ui.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-core-multitabs.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-core-multiview.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-core-nativeaccess.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-core-netigso.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-core-network.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-core-osgi.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-core-output2.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-core-ui.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-core-windows.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-core.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-lib-uihandler.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-libs-felix.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-libs-javafx.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-libs-jna-platform.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-libs-jna.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-libs-jsr223.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-libs-osgi.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-applemenu.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-autoupdate-cli.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-autoupdate-services.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-autoupdate-ui.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-core-kit.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-editor-mimelookup-impl.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-editor-mimelookup.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-favorites.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-javahelp.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-keyring-fallback.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-keyring-impl.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-keyring.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-masterfs-linux.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-masterfs-macosx.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-masterfs-nio2.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-masterfs-windows.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-masterfs.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-options-api.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-options-keymap.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-print.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-progress-ui.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-queries.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-sampler.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-sendopts.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-settings.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-spi-actions.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-templates.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-modules-uihandler.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-spi-quicksearch.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-swing-outline.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-swing-plaf.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-netbeans-swing-tabcontrol.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-openide-actions.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-openide-awt.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-openide-compat.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-openide-dialogs.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-openide-execution.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-openide-explorer.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-openide-io.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-openide-loaders.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-openide-nodes.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-openide-options.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-openide-text.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-openide-util-enumerations.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\config\Modules \org-openide-windows.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\core\core.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\core\locale\core_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\core\locale\core_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\core\locale \org-openide-filesystems_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\core\locale \org-openide-filesystems_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\core \org-openide-filesystems.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\lib\boot.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\lib\locale\boot_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\lib\locale\boot_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\lib\locale \org-openide-modules_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\lib\locale \org-openide-modules_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\lib\locale \org-openide-util-lookup_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\lib\locale \org-openide-util-lookup_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\lib\locale \org-openide-util_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\lib\locale \org-openide-util_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\lib\nbexec.dll [InstallFolder]\mc\jdk8\lib\visualvm\platform\lib\nbexec.exe [InstallFolder]\mc\jdk8\lib\visualvm\platform\lib\nbexec64.dll [InstallFolder]\mc\jdk8\lib\visualvm\platform\lib\nbexec64.exe [InstallFolder]\mc\jdk8\lib\visualvm\platform\lib\org-openide-modules.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\lib \org-openide-util-lookup.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\lib\org-openide-util.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\ext\felix-4.2.1.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\ext \jhall-2.0_05.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\ext\jna-4.1.0.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\ext \jna-platform-4.1.0.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\ext\locale \updater_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\ext\locale \updater_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\ext \osgi.cmpn-4.2.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\ext \osgi.core-5.0.0.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\ext\updater.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\lib\amd64 \jnidispatch-410.dll [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-api-annotations-common_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-api-annotations-common_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-api-progress_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-api-progress_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-api-search_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-api-search_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-api-visual_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-api-visual_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-core-execution_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-core-execution_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-core-io-ui_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-core-io-ui_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-core-multitabs_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-core-multitabs_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-core-multiview_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-core-multiview_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-core-output2_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-core-output2_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-core-ui_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-core-ui_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-core-windows_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-core-windows_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-core_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-core_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-lib-uihandler_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-lib-uihandler_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-applemenu_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-applemenu_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-autoupdate-cli_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-autoupdate-cli_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-autoupdate-services_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-autoupdate-services_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-autoupdate-ui_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-autoupdate-ui_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-core-kit_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-core-kit_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-editor-mimelookup-impl_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-editor-mimelookup-impl_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-editor-mimelookup_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-editor-mimelookup_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-favorites_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-favorites_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-javahelp_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-javahelp_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-keyring-fallback_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-keyring-fallback_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-keyring-impl_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-keyring-impl_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-keyring_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-keyring_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-masterfs-nio2_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-masterfs-nio2_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-masterfs_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-masterfs_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-options-api_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-options-api_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-options-keymap_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-options-keymap_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-print_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-print_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-progress-ui_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-progress-ui_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-queries_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-queries_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-sampler_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-sampler_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-sendopts_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-sendopts_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-settings_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-settings_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-spi-actions_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-spi-actions_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-templates_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-templates_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-uihandler_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-modules-uihandler_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-spi-quicksearch_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-spi-quicksearch_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-swing-outline_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-swing-outline_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-swing-plaf_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-swing-plaf_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-swing-tabcontrol_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-netbeans-swing-tabcontrol_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-actions_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-actions_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-awt_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-awt_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-compat_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-compat_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-dialogs_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-dialogs_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-execution_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-execution_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-explorer_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-explorer_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-io_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-io_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-loaders_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-loaders_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-nodes_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-nodes_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-options_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-options_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-text_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-text_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-util-enumerations_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-util-enumerations_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-windows_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\locale \org-openide-windows_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-api-annotations-common.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-api-progress.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-api-search.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-api-visual.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-core-execution.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-core-io-ui.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-core-multitabs.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-core-multiview.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-core-nativeaccess.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-core-netigso.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-core-network.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-core-osgi.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-core-output2.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-core-ui.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-core-windows.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-core.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-lib-uihandler.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-libs-felix.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-libs-javafx.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-libs-jna-platform.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-libs-jna.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-libs-jsr223.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-libs-osgi.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-applemenu.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-autoupdate-cli.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-autoupdate-services.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-autoupdate-ui.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-core-kit.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-editor-mimelookup-impl.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-editor-mimelookup.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-favorites.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-javahelp.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-keyring-fallback.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-keyring-impl.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-keyring.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-masterfs-linux.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-masterfs-macosx.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-masterfs-nio2.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-masterfs-windows.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-masterfs.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-options-api.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-options-keymap.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-print.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-progress-ui.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-queries.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-sampler.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-sendopts.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-settings.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-spi-actions.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-templates.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-modules-uihandler.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-spi-quicksearch.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-swing-outline.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-swing-plaf.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-netbeans-swing-tabcontrol.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-openide-actions.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\org-openide-awt.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-openide-compat.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-openide-dialogs.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-openide-execution.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-openide-explorer.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules\org-openide-io.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-openide-loaders.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-openide-nodes.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-openide-options.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-openide-text.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-openide-util-enumerations.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\modules \org-openide-windows.jar [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-api-annotations-common.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-api-progress.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-api-search.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-api-visual.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-bootstrap.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-core-execution.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-core-io-ui.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-core-multitabs.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-core-multiview.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-core-nativeaccess.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-core-netigso.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-core-network.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-core-osgi.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-core-output2.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-core-startup.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-core-ui.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-core-windows.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-core.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-lib-uihandler.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-libs-felix.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-libs-javafx.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-libs-jna-platform.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-libs-jna.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-libs-jsr223.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-libs-osgi.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-applemenu.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-autoupdate-cli.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-autoupdate-services.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-autoupdate-ui.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-core-kit.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-editor-mimelookup-impl.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-editor-mimelookup.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-favorites.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-javahelp.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-keyring-fallback.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-keyring-impl.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-keyring.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-masterfs-linux.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-masterfs-macosx.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-masterfs-nio2.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-masterfs-windows.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-masterfs.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-options-api.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-options-keymap.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-print.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-progress-ui.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-queries.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-sampler.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-sendopts.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-settings.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-spi-actions.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-templates.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-modules-uihandler.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-spi-quicksearch.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-swing-outline.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-swing-plaf.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-netbeans-swing-tabcontrol.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-openide-actions.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-openide-awt.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-openide-compat.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-openide-dialogs.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-openide-execution.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-openide-explorer.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-openide-filesystems.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-openide-io.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-openide-loaders.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-openide-modules.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-openide-nodes.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-openide-options.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-openide-text.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-openide-util-enumerations.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-openide-util-lookup.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-openide-util.xml [InstallFolder]\mc\jdk8\lib\visualvm\platform\update_tracking \org-openide-windows.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\.lastModified [InstallFolder]\mc\jdk8\lib\visualvm\profiler\VERSION.txt [InstallFolder]\mc\jdk8\lib\visualvm\profiler\config\Modules \org-netbeans-lib-profiler-charts.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\config\Modules \org-netbeans-lib-profiler-common.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\config\Modules \org-netbeans-lib-profiler-ui.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\config\Modules \org-netbeans-lib-profiler.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\config\Modules \org-netbeans-modules-profiler-api.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\config\Modules \org-netbeans-modules-profiler-attach.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\config\Modules \org-netbeans-modules-profiler-heapwalker.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\config\Modules \org-netbeans-modules-profiler-oql.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\config\Modules \org-netbeans-modules-profiler-selector-api.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\config\Modules \org-netbeans-modules-profiler-selector-ui.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\config\Modules \org-netbeans-modules-profiler-snaptracer.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\config\Modules \org-netbeans-modules-profiler-utilities.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\config\Modules \org-netbeans-modules-profiler.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\lib\deployed\jdk15 \windows-amd64\profilerinterface.dll [InstallFolder]\mc\jdk8\lib\visualvm\profiler\lib\deployed\jdk16 \windows-amd64\profilerinterface.dll [InstallFolder]\mc\jdk8\lib\visualvm\profiler\lib\jfluid-server-15.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\lib\jfluid-server.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\lib\locale \jfluid-server_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\lib\locale \jfluid-server_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-lib-profiler-charts_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-lib-profiler-charts_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-lib-profiler-common_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-lib-profiler-common_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-lib-profiler-ui_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-lib-profiler-ui_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-lib-profiler_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-lib-profiler_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler-api_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler-api_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler-attach_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler-attach_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler-heapwalker_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler-heapwalker_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler-oql_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler-oql_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler-selector-api_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler-selector-api_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler-selector-ui_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler-selector-ui_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler-snaptracer_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler-snaptracer_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler-utilities_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler-utilities_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules\locale \org-netbeans-modules-profiler_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules \org-netbeans-lib-profiler-charts.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules \org-netbeans-lib-profiler-common.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules \org-netbeans-lib-profiler-ui.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules \org-netbeans-lib-profiler.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules \org-netbeans-modules-profiler-api.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules \org-netbeans-modules-profiler-attach.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules \org-netbeans-modules-profiler-heapwalker.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules \org-netbeans-modules-profiler-oql.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules \org-netbeans-modules-profiler-selector-api.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules \org-netbeans-modules-profiler-selector-ui.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules \org-netbeans-modules-profiler-snaptracer.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules \org-netbeans-modules-profiler-utilities.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\modules \org-netbeans-modules-profiler.jar [InstallFolder]\mc\jdk8\lib\visualvm\profiler\update_tracking \org-netbeans-lib-profiler-charts.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\update_tracking \org-netbeans-lib-profiler-common.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\update_tracking \org-netbeans-lib-profiler-ui.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\update_tracking \org-netbeans-lib-profiler.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\update_tracking \org-netbeans-modules-profiler-api.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\update_tracking \org-netbeans-modules-profiler-attach.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\update_tracking \org-netbeans-modules-profiler-heapwalker.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\update_tracking \org-netbeans-modules-profiler-oql.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\update_tracking \org-netbeans-modules-profiler-selector-api.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\update_tracking \org-netbeans-modules-profiler-selector-ui.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\update_tracking \org-netbeans-modules-profiler-snaptracer.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\update_tracking \org-netbeans-modules-profiler-utilities.xml [InstallFolder]\mc\jdk8\lib\visualvm\profiler\update_tracking \org-netbeans-modules-profiler.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\.lastModified [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-api-caching.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-application-views.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-application.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-attach.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-charts.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-core.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-coredump.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-heapdump.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-host-remote.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-host-views.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-host.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-jmx.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-jvm.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-jvmstat.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-modules-appui.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-profiler.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-profiling.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-sa.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-sampler.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-threaddump.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-tools.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \com-sun-tools-visualvm-uisupport.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-netbeans-api-visual.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-netbeans-core-execution.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-netbeans-core-io-ui.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-netbeans-core-netigso.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-netbeans-core-osgi.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-netbeans-core-output2.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-netbeans-lib-uihandler.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-netbeans-libs-felix.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-netbeans-libs-jsr223.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-netbeans-libs-osgi.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-netbeans-modules-core-kit.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-netbeans-modules-favorites.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-netbeans-modules-options-keymap.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-netbeans-modules-print.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-netbeans-modules-spi-actions.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-netbeans-modules-templates.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-netbeans-modules-uihandler.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-openide-compat.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-openide-execution.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-openide-options.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\config\Modules \org-openide-util-enumerations.xml_hidden [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\core \com-sun-tools-visualvm-modules-startup.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\core\locale \com-sun-tools-visualvm-modules-startup_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\core\locale \com-sun-tools-visualvm-modules-startup_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\core\locale \core_visualvm.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-api-caching.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-application-views.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-application.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-attach.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-charts.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-core.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-coredump.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-heapdump.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-host-remote.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-host-views.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-host.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-jmx.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-jvm.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-jvmstat.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-modules-appui.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-profiler.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-profiling.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-sa.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-sampler.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-threaddump.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-tools.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules \com-sun-tools-visualvm-uisupport.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-api-caching_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-api-caching_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-application-views_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-application-views_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-application_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-application_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-attach_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-attach_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-charts_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-charts_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-core_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-core_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-coredump_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-coredump_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-heapdump_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-heapdump_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-host-remote_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-host-remote_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-host-views_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-host-views_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-host_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-host_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-jmx_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-jmx_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-jvm_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-jvm_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-jvmstat_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-jvmstat_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-modules-appui_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-modules-appui_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-profiler_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-profiler_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-profiling_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-profiling_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-sa_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-sa_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-sampler_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-sampler_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-threaddump_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-threaddump_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-tools_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-tools_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-uisupport_ja.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \com-sun-tools-visualvm-uisupport_zh_CN.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \org-netbeans-core-windows_visualvm.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \org-netbeans-core_visualvm.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\modules\locale \org-netbeans-modules-profiler_visualvm.jar [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-api-caching.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-application-views.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-application.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-attach.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-charts.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-core.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-coredump.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-heapdump.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-host-remote.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-host-views.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-host.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-jmx.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-jvm.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-jvmstat.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-modules-appui.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-modules-startup.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-profiler.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-profiling.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-sa.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-sampler.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-threaddump.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-tools.xml [InstallFolder]\mc\jdk8\lib\visualvm\visualvm\update_tracking \com-sun-tools-visualvm-uisupport.xml [InstallFolder]\mc\jdk8\release [InstallFolder]\mc\jdk8\src.zip [InstallFolder]\mc\jdk8\tools\fjtrace\Jakarta-Regexp-License.txt [InstallFolder]\mc\jdk8\tools\fjtrace\TraceAgent.dll [InstallFolder]\mc\jdk8\tools\fjtrace\fjtrace.conf [InstallFolder]\mc\jdk8\tools\fjtrace\fjtrace.dll [InstallFolder]\mc\jdk8\tools\fjtrace\jakarta-regexp-1.2.jar [InstallFolder]\mc\jdk8\tools\fjtrace\mt.jar [InstallFolder]\mc\jdk8\tools\jheap\api-ms-win-crt-convert-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\jheap\api-ms-win-crt-environment-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\jheap\api-ms-win-crt-heap-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\jheap\api-ms-win-crt-locale-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\jheap\api-ms-win-crt-math-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\jheap\api-ms-win-crt-runtime-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\jheap\api-ms-win-crt-stdio-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\jheap\api-ms-win-crt-string-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\jheap\api-ms-win-crt-time-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\jheap\jheap.exe [InstallFolder]\mc\jdk8\tools\jheap\vcruntime140.dll [InstallFolder]\mc\jdk8\tools\thdump\api-ms-win-crt-convert-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\thdump\api-ms-win-crt-filesystem-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\thdump\api-ms-win-crt-heap-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\thdump\api-ms-win-crt-locale-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\thdump\api-ms-win-crt-math-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\thdump\api-ms-win-crt-runtime-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\thdump\api-ms-win-crt-stdio-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\thdump\api-ms-win-crt-string-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\thdump\api-ms-win-crt-time-l1-1-0.dll [InstallFolder]\mc\jdk8\tools\thdump\f5cxwtdp.dll [InstallFolder]\mc\jdk8\tools\thdump\thdump.exe [InstallFolder]\mc\jdk8\tools\thdump\thdumpSVC\f5cxwtdp.dll [InstallFolder]\mc\jdk8\tools\thdump\thdumpSVC\thdumpSVC.exe [InstallFolder]\mc\jdk8\tools\thdump\thdumpSVC\thdump_impl.exe [InstallFolder]\mc\jdk8\tools\thdump\thdumpSVC\vcruntime140.dll [InstallFolder]\mc\jdk8\tools\thdump\vcruntime140.dll [InstallFolder]\share\COPYRIGHT.orafce [InstallFolder]\share\INSTALL.orafce [InstallFolder]\share\README.asciidoc [InstallFolder]\share\cobol_entry.info [InstallFolder]\share\copy_command.bat.sample [InstallFolder]\share\doc\extension\autoinc.example [InstallFolder]\share\doc\extension\export_effective_stats-17.sql.sample [InstallFolder]\share\doc\extension\export_plain_stats-17.sql.sample [InstallFolder]\share\doc\extension\insert_username.example [InstallFolder]\share\doc\extension\moddatetime.example [InstallFolder]\share\doc\extension\refint.example [InstallFolder]\share\errcodes.txt [InstallFolder]\share\execute_freeze.ps1.sample [InstallFolder]\share\extension\amcheck--1.0--1.1.sql [InstallFolder]\share\extension\amcheck--1.0.sql [InstallFolder]\share\extension\amcheck--1.1--1.2.sql [InstallFolder]\share\extension\amcheck--1.2--1.3.sql [InstallFolder]\share\extension\amcheck--1.3--1.4.sql [InstallFolder]\share\extension\amcheck.control [InstallFolder]\share\extension\autoinc--1.0.sql [InstallFolder]\share\extension\autoinc.control [InstallFolder]\share\extension\bloom--1.0.sql [InstallFolder]\share\extension\bloom.control [InstallFolder]\share\extension\bool_plperl--1.0.sql [InstallFolder]\share\extension\bool_plperl.control [InstallFolder]\share\extension\bool_plperlu--1.0.sql [InstallFolder]\share\extension\bool_plperlu.control [InstallFolder]\share\extension\btree_gin--1.0--1.1.sql [InstallFolder]\share\extension\btree_gin--1.0.sql [InstallFolder]\share\extension\btree_gin--1.1--1.2.sql [InstallFolder]\share\extension\btree_gin--1.2--1.3.sql [InstallFolder]\share\extension\btree_gin.control [InstallFolder]\share\extension\btree_gist--1.0--1.1.sql [InstallFolder]\share\extension\btree_gist--1.1--1.2.sql [InstallFolder]\share\extension\btree_gist--1.2--1.3.sql [InstallFolder]\share\extension\btree_gist--1.2.sql [InstallFolder]\share\extension\btree_gist--1.3--1.4.sql [InstallFolder]\share\extension\btree_gist--1.4--1.5.sql [InstallFolder]\share\extension\btree_gist--1.5--1.6.sql [InstallFolder]\share\extension\btree_gist--1.6--1.7.sql [InstallFolder]\share\extension\btree_gist.control [InstallFolder]\share\extension\citext--1.0--1.1.sql [InstallFolder]\share\extension\citext--1.1--1.2.sql [InstallFolder]\share\extension\citext--1.2--1.3.sql [InstallFolder]\share\extension\citext--1.3--1.4.sql [InstallFolder]\share\extension\citext--1.4--1.5.sql [InstallFolder]\share\extension\citext--1.4.sql [InstallFolder]\share\extension\citext--1.5--1.6.sql [InstallFolder]\share\extension\citext.control [InstallFolder]\share\extension\cube--1.0--1.1.sql [InstallFolder]\share\extension\cube--1.1--1.2.sql [InstallFolder]\share\extension\cube--1.2--1.3.sql [InstallFolder]\share\extension\cube--1.2.sql [InstallFolder]\share\extension\cube--1.3--1.4.sql [InstallFolder]\share\extension\cube--1.4--1.5.sql [InstallFolder]\share\extension\cube.control [InstallFolder]\share\extension\dblink--1.0--1.1.sql [InstallFolder]\share\extension\dblink--1.1--1.2.sql [InstallFolder]\share\extension\dblink--1.2--1.2.1.sql [InstallFolder]\share\extension\dblink--1.2.sql [InstallFolder]\share\extension\dblink.control [InstallFolder]\share\extension\dict_int--1.0.sql [InstallFolder]\share\extension\dict_int.control [InstallFolder]\share\extension\dict_xsyn--1.0.sql [InstallFolder]\share\extension\dict_xsyn.control [InstallFolder]\share\extension\earthdistance--1.0--1.1.sql [InstallFolder]\share\extension\earthdistance--1.1--1.2.sql [InstallFolder]\share\extension\earthdistance--1.1.sql [InstallFolder]\share\extension\earthdistance.control [InstallFolder]\share\extension\file_fdw--1.0.sql [InstallFolder]\share\extension\file_fdw.control [InstallFolder]\share\extension\fuzzystrmatch--1.0--1.1.sql [InstallFolder]\share\extension\fuzzystrmatch--1.1--1.2.sql [InstallFolder]\share\extension\fuzzystrmatch--1.1.sql [InstallFolder]\share\extension\fuzzystrmatch.control [InstallFolder]\share\extension\hstore--1.1--1.2.sql [InstallFolder]\share\extension\hstore--1.2--1.3.sql [InstallFolder]\share\extension\hstore--1.3--1.4.sql [InstallFolder]\share\extension\hstore--1.4--1.5.sql [InstallFolder]\share\extension\hstore--1.4.sql [InstallFolder]\share\extension\hstore--1.5--1.6.sql [InstallFolder]\share\extension\hstore--1.6--1.7.sql [InstallFolder]\share\extension\hstore--1.7--1.8.sql [InstallFolder]\share\extension\hstore.control [InstallFolder]\share\extension\hstore_plperl--1.0.sql [InstallFolder]\share\extension\hstore_plperl.control [InstallFolder]\share\extension\hstore_plperlu--1.0.sql [InstallFolder]\share\extension\hstore_plperlu.control [InstallFolder]\share\extension\hstore_plpython3u--1.0.sql [InstallFolder]\share\extension\hstore_plpython3u.control [InstallFolder]\share\extension\insert_username--1.0.sql [InstallFolder]\share\extension\insert_username.control [InstallFolder]\share\extension\intagg--1.0--1.1.sql [InstallFolder]\share\extension\intagg--1.1.sql [InstallFolder]\share\extension\intagg.control [InstallFolder]\share\extension\intarray--1.0--1.1.sql [InstallFolder]\share\extension\intarray--1.1--1.2.sql [InstallFolder]\share\extension\intarray--1.2--1.3.sql [InstallFolder]\share\extension\intarray--1.2.sql [InstallFolder]\share\extension\intarray--1.3--1.4.sql [InstallFolder]\share\extension\intarray--1.4--1.5.sql [InstallFolder]\share\extension\intarray.control [InstallFolder]\share\extension\isn--1.0--1.1.sql [InstallFolder]\share\extension\isn--1.1--1.2.sql [InstallFolder]\share\extension\isn--1.1.sql [InstallFolder]\share\extension\isn.control [InstallFolder]\share\extension\jsonb_plperl--1.0.sql [InstallFolder]\share\extension\jsonb_plperl.control [InstallFolder]\share\extension\jsonb_plperlu--1.0.sql [InstallFolder]\share\extension\jsonb_plperlu.control [InstallFolder]\share\extension\jsonb_plpython3u--1.0.sql [InstallFolder]\share\extension\jsonb_plpython3u.control [InstallFolder]\share\extension\lo--1.0--1.1.sql [InstallFolder]\share\extension\lo--1.1.sql [InstallFolder]\share\extension\lo.control [InstallFolder]\share\extension\ltree--1.0--1.1.sql [InstallFolder]\share\extension\ltree--1.1--1.2.sql [InstallFolder]\share\extension\ltree--1.1.sql [InstallFolder]\share\extension\ltree--1.2--1.3.sql [InstallFolder]\share\extension\ltree.control [InstallFolder]\share\extension\ltree_plpython3u--1.0.sql [InstallFolder]\share\extension\ltree_plpython3u.control [InstallFolder]\share\extension\moddatetime--1.0.sql [InstallFolder]\share\extension\moddatetime.control [InstallFolder]\share\extension\oracle_compatible--3.10--3.11.sql [InstallFolder]\share\extension\oracle_compatible--3.11--3.12.sql [InstallFolder]\share\extension\oracle_compatible--3.12--3.13.sql [InstallFolder]\share\extension\oracle_compatible--3.13--3.14.sql [InstallFolder]\share\extension\oracle_compatible--3.14--3.15.sql [InstallFolder]\share\extension\oracle_compatible--3.15--3.16.sql [InstallFolder]\share\extension\oracle_compatible--3.16--3.17.sql [InstallFolder]\share\extension\oracle_compatible--3.17--3.18.sql [InstallFolder]\share\extension\oracle_compatible--3.18--3.19.sql [InstallFolder]\share\extension\oracle_compatible--3.19--3.20.sql [InstallFolder]\share\extension\oracle_compatible--3.2--3.3.sql [InstallFolder]\share\extension\oracle_compatible--3.20--3.21.sql [InstallFolder]\share\extension\oracle_compatible--3.21--3.22.sql [InstallFolder]\share\extension\oracle_compatible--3.22--3.23.sql [InstallFolder]\share\extension\oracle_compatible--3.23--3.24.sql [InstallFolder]\share\extension\oracle_compatible--3.24--3.25.sql [InstallFolder]\share\extension\oracle_compatible--3.25--4.0.sql [InstallFolder]\share\extension\oracle_compatible--3.3--3.4.sql [InstallFolder]\share\extension\oracle_compatible--3.4--3.5.sql [InstallFolder]\share\extension\oracle_compatible--3.5--3.6.sql [InstallFolder]\share\extension\oracle_compatible--3.6--3.7.sql [InstallFolder]\share\extension\oracle_compatible--3.7--3.8.sql [InstallFolder]\share\extension\oracle_compatible--3.8--3.9.sql [InstallFolder]\share\extension\oracle_compatible--3.9--3.10.sql [InstallFolder]\share\extension\oracle_compatible--4.0--4.1.sql [InstallFolder]\share\extension\oracle_compatible--4.1--4.2.sql [InstallFolder]\share\extension\oracle_compatible--4.10--4.11.sql [InstallFolder]\share\extension\oracle_compatible--4.11--4.12.sql [InstallFolder]\share\extension\oracle_compatible--4.12--4.13.sql [InstallFolder]\share\extension\oracle_compatible--4.13--4.14.sql [InstallFolder]\share\extension\oracle_compatible--4.13--pgx4.13.sql [InstallFolder]\share\extension\oracle_compatible--4.14--4.15.sql [InstallFolder]\share\extension\oracle_compatible--4.14--pgx4.14.sql [InstallFolder]\share\extension\oracle_compatible--4.15--pgx4.15.sql [InstallFolder]\share\extension\oracle_compatible--4.15.sql [InstallFolder]\share\extension\oracle_compatible--4.2--4.3.sql [InstallFolder]\share\extension\oracle_compatible--4.3--4.4.sql [InstallFolder]\share\extension\oracle_compatible--4.4--4.5.sql [InstallFolder]\share\extension\oracle_compatible--4.5--4.6.sql [InstallFolder]\share\extension\oracle_compatible--4.6--4.7.sql [InstallFolder]\share\extension\oracle_compatible--4.7--4.8.sql [InstallFolder]\share\extension\oracle_compatible--4.8--4.9.sql [InstallFolder]\share\extension\oracle_compatible--4.9--4.10.sql [InstallFolder]\share\extension\oracle_compatible--pgx4.13--4.13.sql [InstallFolder]\share\extension\oracle_compatible--pgx4.14--4.14.sql [InstallFolder]\share\extension\oracle_compatible--pgx4.15--4.15.sql [InstallFolder]\share\extension\oracle_compatible.control [InstallFolder]\share\extension\oracle_compatible.control.bak [InstallFolder]\share\extension\pageinspect--1.0--1.1.sql [InstallFolder]\share\extension\pageinspect--1.1--1.2.sql [InstallFolder]\share\extension\pageinspect--1.10--1.11.sql [InstallFolder]\share\extension\pageinspect--1.11--1.12.sql [InstallFolder]\share\extension\pageinspect--1.2--1.3.sql [InstallFolder]\share\extension\pageinspect--1.3--1.4.sql [InstallFolder]\share\extension\pageinspect--1.4--1.5.sql [InstallFolder]\share\extension\pageinspect--1.5--1.6.sql [InstallFolder]\share\extension\pageinspect--1.5.sql [InstallFolder]\share\extension\pageinspect--1.6--1.7.sql [InstallFolder]\share\extension\pageinspect--1.7--1.8.sql [InstallFolder]\share\extension\pageinspect--1.8--1.9.sql [InstallFolder]\share\extension\pageinspect--1.9--1.10.sql [InstallFolder]\share\extension\pageinspect.control [InstallFolder]\share\extension\pg_buffercache--1.0--1.1.sql [InstallFolder]\share\extension\pg_buffercache--1.1--1.2.sql [InstallFolder]\share\extension\pg_buffercache--1.2--1.3.sql [InstallFolder]\share\extension\pg_buffercache--1.2.sql [InstallFolder]\share\extension\pg_buffercache--1.3--1.4.sql [InstallFolder]\share\extension\pg_buffercache--1.4--1.5.sql [InstallFolder]\share\extension\pg_buffercache.control [InstallFolder]\share\extension\pg_freespacemap--1.0--1.1.sql [InstallFolder]\share\extension\pg_freespacemap--1.1--1.2.sql [InstallFolder]\share\extension\pg_freespacemap--1.1.sql [InstallFolder]\share\extension\pg_freespacemap.control [InstallFolder]\share\extension\pg_prewarm--1.0--1.1.sql [InstallFolder]\share\extension\pg_prewarm--1.1--1.2.sql [InstallFolder]\share\extension\pg_prewarm--1.1.sql [InstallFolder]\share\extension\pg_prewarm.control [InstallFolder]\share\extension\pg_stat_statements--1.0--1.1.sql [InstallFolder]\share\extension\pg_stat_statements--1.1--1.2.sql [InstallFolder]\share\extension\pg_stat_statements--1.10--1.11.sql [InstallFolder]\share\extension\pg_stat_statements--1.2--1.3.sql [InstallFolder]\share\extension\pg_stat_statements--1.3--1.4.sql [InstallFolder]\share\extension\pg_stat_statements--1.4--1.5.sql [InstallFolder]\share\extension\pg_stat_statements--1.4.sql [InstallFolder]\share\extension\pg_stat_statements--1.5--1.6.sql [InstallFolder]\share\extension\pg_stat_statements--1.6--1.7.sql [InstallFolder]\share\extension\pg_stat_statements--1.7--1.8.sql [InstallFolder]\share\extension\pg_stat_statements--1.8--1.9.sql [InstallFolder]\share\extension\pg_stat_statements--1.9--1.10.sql [InstallFolder]\share\extension\pg_stat_statements.control [InstallFolder]\share\extension\pg_surgery--1.0.sql [InstallFolder]\share\extension\pg_surgery.control [InstallFolder]\share\extension\pg_trgm--1.0--1.1.sql [InstallFolder]\share\extension\pg_trgm--1.1--1.2.sql [InstallFolder]\share\extension\pg_trgm--1.2--1.3.sql [InstallFolder]\share\extension\pg_trgm--1.3--1.4.sql [InstallFolder]\share\extension\pg_trgm--1.3.sql [InstallFolder]\share\extension\pg_trgm--1.4--1.5.sql [InstallFolder]\share\extension\pg_trgm--1.5--1.6.sql [InstallFolder]\share\extension\pg_trgm.control [InstallFolder]\share\extension\pg_visibility--1.0--1.1.sql [InstallFolder]\share\extension\pg_visibility--1.1--1.2.sql [InstallFolder]\share\extension\pg_visibility--1.1.sql [InstallFolder]\share\extension\pg_visibility.control [InstallFolder]\share\extension\pg_walinspect--1.0--1.1.sql [InstallFolder]\share\extension\pg_walinspect--1.0.sql [InstallFolder]\share\extension\pg_walinspect.control [InstallFolder]\share\extension\pgcrypto--1.0--1.1.sql [InstallFolder]\share\extension\pgcrypto--1.1--1.2.sql [InstallFolder]\share\extension\pgcrypto--1.2--1.3.sql [InstallFolder]\share\extension\pgcrypto--1.3.sql [InstallFolder]\share\extension\pgcrypto.control [InstallFolder]\share\extension\pgrowlocks--1.0--1.1.sql [InstallFolder]\share\extension\pgrowlocks--1.1--1.2.sql [InstallFolder]\share\extension\pgrowlocks--1.2.sql [InstallFolder]\share\extension\pgrowlocks.control [InstallFolder]\share\extension\pgstattuple--1.0--1.1.sql [InstallFolder]\share\extension\pgstattuple--1.1--1.2.sql [InstallFolder]\share\extension\pgstattuple--1.2--1.3.sql [InstallFolder]\share\extension\pgstattuple--1.3--1.4.sql [InstallFolder]\share\extension\pgstattuple--1.4--1.5.sql [InstallFolder]\share\extension\pgstattuple--1.4.sql [InstallFolder]\share\extension\pgstattuple.control [InstallFolder]\share\extension \pgx_confidential_management_support--1.0.sql [InstallFolder]\share\extension \pgx_confidential_management_support.control [InstallFolder]\share\extension \pgx_confidential_management_support_policy.sql [InstallFolder]\share\extension\pgx_datamasking--1.0.sql [InstallFolder]\share\extension\pgx_datamasking.control [InstallFolder]\share\extension\pgx_loader--1.0.sql [InstallFolder]\share\extension\pgx_loader.control [InstallFolder]\share\extension\pgx_stat_latch--1.0.sql [InstallFolder]\share\extension\pgx_stat_latch.control [InstallFolder]\share\extension\pgx_stat_lwlock--1.0.sql [InstallFolder]\share\extension\pgx_stat_lwlock.control [InstallFolder]\share\extension\pgx_stat_sql--1.0.sql [InstallFolder]\share\extension\pgx_stat_sql.control [InstallFolder]\share\extension\pgx_stat_vacuum_freeze--1.0.sql [InstallFolder]\share\extension\pgx_stat_vacuum_freeze.c [InstallFolder]\share\extension\pgx_stat_vacuum_freeze.conf [InstallFolder]\share\extension\pgx_stat_vacuum_freeze.control [InstallFolder]\share\extension\pgx_stat_walwriter--1.0.sql [InstallFolder]\share\extension\pgx_stat_walwriter.control [InstallFolder]\share\extension\plperl--1.0.sql [InstallFolder]\share\extension\plperl.control [InstallFolder]\share\extension\plperlu--1.0.sql [InstallFolder]\share\extension\plperlu.control [InstallFolder]\share\extension\plpgsql--1.0.sql [InstallFolder]\share\extension\plpgsql.control [InstallFolder]\share\extension\plpython3u--1.0.sql [InstallFolder]\share\extension\plpython3u.control [InstallFolder]\share\extension\pltcl--1.0.sql [InstallFolder]\share\extension\pltcl.control [InstallFolder]\share\extension\pltclu--1.0.sql [InstallFolder]\share\extension\pltclu.control [InstallFolder]\share\extension\postgres_fdw--1.0--1.1.sql [InstallFolder]\share\extension\postgres_fdw--1.0.sql [InstallFolder]\share\extension\postgres_fdw.control [InstallFolder]\share\extension\postgres_scaleout_fdw--1.0--1.1.sql [InstallFolder]\share\extension\postgres_scaleout_fdw--1.0.sql [InstallFolder]\share\extension\postgres_scaleout_fdw--1.1--1.2.sql [InstallFolder]\share\extension\postgres_scaleout_fdw.control [InstallFolder]\share\extension\refint--1.0.sql [InstallFolder]\share\extension\refint.control [InstallFolder]\share\extension\seg--1.0--1.1.sql [InstallFolder]\share\extension\seg--1.1--1.2.sql [InstallFolder]\share\extension\seg--1.1.sql [InstallFolder]\share\extension\seg--1.2--1.3.sql [InstallFolder]\share\extension\seg--1.3--1.4.sql [InstallFolder]\share\extension\seg.control [InstallFolder]\share\extension\sslinfo--1.0--1.1.sql [InstallFolder]\share\extension\sslinfo--1.1--1.2.sql [InstallFolder]\share\extension\sslinfo--1.2.sql [InstallFolder]\share\extension\sslinfo.control [InstallFolder]\share\extension\tablefunc--1.0.sql [InstallFolder]\share\extension\tablefunc.control [InstallFolder]\share\extension\tcn--1.0.sql [InstallFolder]\share\extension\tcn.control [InstallFolder]\share\extension\tsm_system_rows--1.0.sql [InstallFolder]\share\extension\tsm_system_rows.control [InstallFolder]\share\extension\tsm_system_time--1.0.sql [InstallFolder]\share\extension\tsm_system_time.control [InstallFolder]\share\extension\unaccent--1.0--1.1.sql [InstallFolder]\share\extension\unaccent--1.1.sql [InstallFolder]\share\extension\unaccent.control [InstallFolder]\share\extension\uuid-ossp--1.0--1.1.sql [InstallFolder]\share\extension\uuid-ossp--1.1.sql [InstallFolder]\share\extension\uuid-ossp.control [InstallFolder]\share\extension\vci--2.0.sql [InstallFolder]\share\extension\vci.control [InstallFolder]\share\extension\vci_inspect--1.0--1.1.sql [InstallFolder]\share\extension\vci_inspect--1.1.sql [InstallFolder]\share\extension\vci_inspect.control [InstallFolder]\share\extension\watchdog--1.0.sql [InstallFolder]\share\extension\watchdog.control [InstallFolder]\share\extension\xml2--1.0--1.1.sql [InstallFolder]\share\extension\xml2--1.1.sql [InstallFolder]\share\extension\xml2.control [InstallFolder]\share\information_schema.sql [InstallFolder]\share\locale\cs\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\pg_archivecleanup-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\pg_checksums-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\pg_resetwal-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\pg_rewind-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\pg_upgrade-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\pg_waldump-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\pgscripts-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\cs\LC_MESSAGES\psql-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pg_amcheck-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pg_archivecleanup-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pg_checksums-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pg_combinebackup-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pg_resetwal-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pg_rewind-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pg_upgrade-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pg_verifybackup-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pg_waldump-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pg_walsummary-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pgscripts-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\postgres-17.mo [InstallFolder]\share\locale\de\LC_MESSAGES\psql-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\pg_amcheck-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\pg_archivecleanup-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\pg_checksums-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\pg_resetwal-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\pg_rewind-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\pg_verifybackup-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\pg_waldump-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\pgscripts-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\el\LC_MESSAGES\psql-17.mo [InstallFolder]\share\locale\en\LC_MESSAGES\cm_ctl-17.mo [InstallFolder]\share\locale\en\LC_MESSAGES\conmgr-17.mo [InstallFolder]\share\locale\en\LC_MESSAGES\mc_ctl.mo [InstallFolder]\share\locale\en\LC_MESSAGES\watchdog-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pg_amcheck-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pg_archivecleanup-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pg_checksums-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pg_combinebackup-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pg_resetwal-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pg_rewind-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pg_upgrade-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pg_verifybackup-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pg_waldump-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pg_walsummary-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pgscripts-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\postgres-17.mo [InstallFolder]\share\locale\es\LC_MESSAGES\psql-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pg_amcheck-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pg_archivecleanup-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pg_checksums-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pg_combinebackup-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pg_resetwal-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pg_rewind-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pg_upgrade-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pg_verifybackup-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pg_waldump-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pg_walsummary-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pgscripts-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\postgres-17.mo [InstallFolder]\share\locale\fr\LC_MESSAGES\psql-17.mo [InstallFolder]\share\locale\he\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\he\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\he\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\he\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\he\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\he\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\he\LC_MESSAGES\pgscripts-17.mo [InstallFolder]\share\locale\he\LC_MESSAGES\psql-17.mo [InstallFolder]\share\locale\id\LC_MESSAGES\postgres-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\pg_amcheck-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\pg_archivecleanup-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\pg_checksums-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\pg_resetwal-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\pg_rewind-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\pg_verifybackup-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\pg_waldump-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\pgscripts-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\postgres-17.mo [InstallFolder]\share\locale\it\LC_MESSAGES\psql-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\cm_ctl-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\conmgr-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\mc_ctl.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pg_amcheck-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pg_archivecleanup-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pg_checksums-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pg_combinebackup-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pg_resetwal-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pg_rewind-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pg_upgrade-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pg_verifybackup-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pg_waldump-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pg_walsummary-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pgaudit-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pgscripts-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pgx_copy-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pgx_dmpall-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pgx_keystore-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pgx_loader-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\postgres-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\psql-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\vci-17.mo [InstallFolder]\share\locale\ja\LC_MESSAGES\watchdog-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pg_amcheck-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pg_archivecleanup-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pg_checksums-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pg_combinebackup-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pg_resetwal-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pg_rewind-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pg_upgrade-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pg_verifybackup-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pg_waldump-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pg_walsummary-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pgscripts-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\postgres-17.mo [InstallFolder]\share\locale\ka\LC_MESSAGES\psql-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\pg_amcheck-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\pg_archivecleanup-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\pg_checksums-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\pg_resetwal-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\pg_rewind-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\pg_upgrade-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\pg_verifybackup-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\pg_waldump-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\pgscripts-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\postgres-17.mo [InstallFolder]\share\locale\ko\LC_MESSAGES\psql-17.mo [InstallFolder]\share\locale\nb\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\pg_archivecleanup-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\pg_resetwal-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\pg_rewind-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\pgscripts-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\postgres-17.mo [InstallFolder]\share\locale\pl\LC_MESSAGES\psql-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\pg_archivecleanup-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\pg_checksums-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\pg_resetwal-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\pg_rewind-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\pgscripts-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\postgres-17.mo [InstallFolder]\share\locale\pt_BR\LC_MESSAGES\psql-17.mo [InstallFolder]\share\locale\ro\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\ro\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\ro\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\ro\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pg_amcheck-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pg_archivecleanup-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pg_checksums-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pg_combinebackup-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pg_resetwal-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pg_rewind-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pg_upgrade-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pg_verifybackup-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pg_waldump-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pg_walsummary-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pgscripts-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\postgres-17.mo [InstallFolder]\share\locale\ru\LC_MESSAGES\psql-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pg_amcheck-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pg_archivecleanup-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pg_checksums-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pg_combinebackup-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pg_resetwal-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pg_rewind-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pg_upgrade-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pg_verifybackup-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pg_waldump-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pg_walsummary-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pgscripts-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\postgres-17.mo [InstallFolder]\share\locale\sv\LC_MESSAGES\psql-17.mo [InstallFolder]\share\locale\ta\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\pg_archivecleanup-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\pg_checksums-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\pg_resetwal-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\pg_rewind-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\pg_upgrade-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\pg_waldump-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\pgscripts-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\postgres-17.mo [InstallFolder]\share\locale\tr\LC_MESSAGES\psql-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\pg_amcheck-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\pg_archivecleanup-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\pg_checksums-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\pg_resetwal-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\pg_rewind-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\pg_upgrade-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\pg_verifybackup-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\pg_waldump-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\pgscripts-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\postgres-17.mo [InstallFolder]\share\locale\uk\LC_MESSAGES\psql-17.mo [InstallFolder]\share\locale\vi\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\vi\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\vi\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\vi\LC_MESSAGES\pg_archivecleanup-17.mo [InstallFolder]\share\locale\vi\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\vi\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\vi\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\vi\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\vi\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\vi\LC_MESSAGES\pg_waldump-17.mo [InstallFolder]\share\locale\vi\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\vi\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\vi\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\vi\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\pg_amcheck-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\pg_archivecleanup-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\pg_basebackup-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\pg_checksums-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\pg_resetwal-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\pg_rewind-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\pg_upgrade-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\pg_verifybackup-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\pg_waldump-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\pgscripts-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\postgres-17.mo [InstallFolder]\share\locale\zh_CN\LC_MESSAGES\psql-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\ecpg-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\ecpglib6-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\initdb-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\libpq5-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\pg_amcheck-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\pg_checksums-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\pg_config-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\pg_controldata-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\pg_ctl-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\pg_dump-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\pg_rewind-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\pg_test_fsync-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\pg_test_timing-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\pg_verifybackup-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\pg_waldump-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\plperl-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\plpgsql-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\plpython-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\pltcl-17.mo [InstallFolder]\share\locale\zh_TW\LC_MESSAGES\psql-17.mo [InstallFolder]\share\mc_execute_arbitration_command.bat.sample [InstallFolder]\share\mc_network.conf.sample [InstallFolder]\share\mc_server.conf.sample [InstallFolder]\share\pg_hba.conf.sample [InstallFolder]\share\pg_ident.conf.sample [InstallFolder]\share\pg_service.conf.sample [InstallFolder]\share\postgres.bki [InstallFolder]\share\postgres_scaleout.bki [InstallFolder]\share\postgresql.conf.sample [InstallFolder]\share\psqlrc.sample [InstallFolder]\share\putting-metrics-to-monitoring-tool.ps1.sample [InstallFolder]\share\snowball_create.sql [InstallFolder]\share\sql_features.txt [InstallFolder]\share\system_constraints.sql [InstallFolder]\share\system_constraints_scaleout.sql [InstallFolder]\share\system_functions.sql [InstallFolder]\share\system_sequence_sharding.sql [InstallFolder]\share\system_view_pgxnode.sql [InstallFolder]\share\system_view_replication_table.sql [InstallFolder]\share\system_views.sql [InstallFolder]\share\timezone\Africa\Abidjan [InstallFolder]\share\timezone\Africa\Accra [InstallFolder]\share\timezone\Africa\Addis_Ababa [InstallFolder]\share\timezone\Africa\Algiers [InstallFolder]\share\timezone\Africa\Asmara [InstallFolder]\share\timezone\Africa\Asmera [InstallFolder]\share\timezone\Africa\Bamako [InstallFolder]\share\timezone\Africa\Bangui [InstallFolder]\share\timezone\Africa\Banjul [InstallFolder]\share\timezone\Africa\Bissau [InstallFolder]\share\timezone\Africa\Blantyre [InstallFolder]\share\timezone\Africa\Brazzaville [InstallFolder]\share\timezone\Africa\Bujumbura [InstallFolder]\share\timezone\Africa\Cairo [InstallFolder]\share\timezone\Africa\Casablanca [InstallFolder]\share\timezone\Africa\Ceuta [InstallFolder]\share\timezone\Africa\Conakry [InstallFolder]\share\timezone\Africa\Dakar [InstallFolder]\share\timezone\Africa\Dar_es_Salaam [InstallFolder]\share\timezone\Africa\Djibouti [InstallFolder]\share\timezone\Africa\Douala [InstallFolder]\share\timezone\Africa\El_Aaiun [InstallFolder]\share\timezone\Africa\Freetown [InstallFolder]\share\timezone\Africa\Gaborone [InstallFolder]\share\timezone\Africa\Harare [InstallFolder]\share\timezone\Africa\Johannesburg [InstallFolder]\share\timezone\Africa\Juba [InstallFolder]\share\timezone\Africa\Kampala [InstallFolder]\share\timezone\Africa\Khartoum [InstallFolder]\share\timezone\Africa\Kigali [InstallFolder]\share\timezone\Africa\Kinshasa [InstallFolder]\share\timezone\Africa\Lagos [InstallFolder]\share\timezone\Africa\Libreville [InstallFolder]\share\timezone\Africa\Lome [InstallFolder]\share\timezone\Africa\Luanda [InstallFolder]\share\timezone\Africa\Lubumbashi [InstallFolder]\share\timezone\Africa\Lusaka [InstallFolder]\share\timezone\Africa\Malabo [InstallFolder]\share\timezone\Africa\Maputo [InstallFolder]\share\timezone\Africa\Maseru [InstallFolder]\share\timezone\Africa\Mbabane [InstallFolder]\share\timezone\Africa\Mogadishu [InstallFolder]\share\timezone\Africa\Monrovia [InstallFolder]\share\timezone\Africa\Nairobi [InstallFolder]\share\timezone\Africa\Ndjamena [InstallFolder]\share\timezone\Africa\Niamey [InstallFolder]\share\timezone\Africa\Nouakchott [InstallFolder]\share\timezone\Africa\Ouagadougou [InstallFolder]\share\timezone\Africa\Porto-Novo [InstallFolder]\share\timezone\Africa\Sao_Tome [InstallFolder]\share\timezone\Africa\Timbuktu [InstallFolder]\share\timezone\Africa\Tripoli [InstallFolder]\share\timezone\Africa\Tunis [InstallFolder]\share\timezone\Africa\Windhoek [InstallFolder]\share\timezone\America\Adak [InstallFolder]\share\timezone\America\Anchorage [InstallFolder]\share\timezone\America\Anguilla [InstallFolder]\share\timezone\America\Antigua [InstallFolder]\share\timezone\America\Araguaina [InstallFolder]\share\timezone\America\Argentina\Buenos_Aires [InstallFolder]\share\timezone\America\Argentina\Catamarca [InstallFolder]\share\timezone\America\Argentina\ComodRivadavia [InstallFolder]\share\timezone\America\Argentina\Cordoba [InstallFolder]\share\timezone\America\Argentina\Jujuy [InstallFolder]\share\timezone\America\Argentina\La_Rioja [InstallFolder]\share\timezone\America\Argentina\Mendoza [InstallFolder]\share\timezone\America\Argentina\Rio_Gallegos [InstallFolder]\share\timezone\America\Argentina\Salta [InstallFolder]\share\timezone\America\Argentina\San_Juan [InstallFolder]\share\timezone\America\Argentina\San_Luis [InstallFolder]\share\timezone\America\Argentina\Tucuman [InstallFolder]\share\timezone\America\Argentina\Ushuaia [InstallFolder]\share\timezone\America\Aruba [InstallFolder]\share\timezone\America\Asuncion [InstallFolder]\share\timezone\America\Atikokan [InstallFolder]\share\timezone\America\Atka [InstallFolder]\share\timezone\America\Bahia [InstallFolder]\share\timezone\America\Bahia_Banderas [InstallFolder]\share\timezone\America\Barbados [InstallFolder]\share\timezone\America\Belem [InstallFolder]\share\timezone\America\Belize [InstallFolder]\share\timezone\America\Blanc-Sablon [InstallFolder]\share\timezone\America\Boa_Vista [InstallFolder]\share\timezone\America\Bogota [InstallFolder]\share\timezone\America\Boise [InstallFolder]\share\timezone\America\Buenos_Aires [InstallFolder]\share\timezone\America\Cambridge_Bay [InstallFolder]\share\timezone\America\Campo_Grande [InstallFolder]\share\timezone\America\Cancun [InstallFolder]\share\timezone\America\Caracas [InstallFolder]\share\timezone\America\Catamarca [InstallFolder]\share\timezone\America\Cayenne [InstallFolder]\share\timezone\America\Cayman [InstallFolder]\share\timezone\America\Chicago [InstallFolder]\share\timezone\America\Chihuahua [InstallFolder]\share\timezone\America\Ciudad_Juarez [InstallFolder]\share\timezone\America\Coral_Harbour [InstallFolder]\share\timezone\America\Cordoba [InstallFolder]\share\timezone\America\Costa_Rica [InstallFolder]\share\timezone\America\Coyhaique [InstallFolder]\share\timezone\America\Creston [InstallFolder]\share\timezone\America\Cuiaba [InstallFolder]\share\timezone\America\Curacao [InstallFolder]\share\timezone\America\Danmarkshavn [InstallFolder]\share\timezone\America\Dawson [InstallFolder]\share\timezone\America\Dawson_Creek [InstallFolder]\share\timezone\America\Denver [InstallFolder]\share\timezone\America\Detroit [InstallFolder]\share\timezone\America\Dominica [InstallFolder]\share\timezone\America\Edmonton [InstallFolder]\share\timezone\America\Eirunepe [InstallFolder]\share\timezone\America\El_Salvador [InstallFolder]\share\timezone\America\Ensenada [InstallFolder]\share\timezone\America\Fort_Nelson [InstallFolder]\share\timezone\America\Fort_Wayne [InstallFolder]\share\timezone\America\Fortaleza [InstallFolder]\share\timezone\America\Glace_Bay [InstallFolder]\share\timezone\America\Godthab [InstallFolder]\share\timezone\America\Goose_Bay [InstallFolder]\share\timezone\America\Grand_Turk [InstallFolder]\share\timezone\America\Grenada [InstallFolder]\share\timezone\America\Guadeloupe [InstallFolder]\share\timezone\America\Guatemala [InstallFolder]\share\timezone\America\Guayaquil [InstallFolder]\share\timezone\America\Guyana [InstallFolder]\share\timezone\America\Halifax [InstallFolder]\share\timezone\America\Havana [InstallFolder]\share\timezone\America\Hermosillo [InstallFolder]\share\timezone\America\Indiana\Indianapolis [InstallFolder]\share\timezone\America\Indiana\Knox [InstallFolder]\share\timezone\America\Indiana\Marengo [InstallFolder]\share\timezone\America\Indiana\Petersburg [InstallFolder]\share\timezone\America\Indiana\Tell_City [InstallFolder]\share\timezone\America\Indiana\Vevay [InstallFolder]\share\timezone\America\Indiana\Vincennes [InstallFolder]\share\timezone\America\Indiana\Winamac [InstallFolder]\share\timezone\America\Indianapolis [InstallFolder]\share\timezone\America\Inuvik [InstallFolder]\share\timezone\America\Iqaluit [InstallFolder]\share\timezone\America\Jamaica [InstallFolder]\share\timezone\America\Jujuy [InstallFolder]\share\timezone\America\Juneau [InstallFolder]\share\timezone\America\Kentucky\Louisville [InstallFolder]\share\timezone\America\Kentucky\Monticello [InstallFolder]\share\timezone\America\Knox_IN [InstallFolder]\share\timezone\America\Kralendijk [InstallFolder]\share\timezone\America\La_Paz [InstallFolder]\share\timezone\America\Lima [InstallFolder]\share\timezone\America\Los_Angeles [InstallFolder]\share\timezone\America\Louisville [InstallFolder]\share\timezone\America\Lower_Princes [InstallFolder]\share\timezone\America\Maceio [InstallFolder]\share\timezone\America\Managua [InstallFolder]\share\timezone\America\Manaus [InstallFolder]\share\timezone\America\Marigot [InstallFolder]\share\timezone\America\Martinique [InstallFolder]\share\timezone\America\Matamoros [InstallFolder]\share\timezone\America\Mazatlan [InstallFolder]\share\timezone\America\Mendoza [InstallFolder]\share\timezone\America\Menominee [InstallFolder]\share\timezone\America\Merida [InstallFolder]\share\timezone\America\Metlakatla [InstallFolder]\share\timezone\America\Mexico_City [InstallFolder]\share\timezone\America\Miquelon [InstallFolder]\share\timezone\America\Moncton [InstallFolder]\share\timezone\America\Monterrey [InstallFolder]\share\timezone\America\Montevideo [InstallFolder]\share\timezone\America\Montreal [InstallFolder]\share\timezone\America\Montserrat [InstallFolder]\share\timezone\America\Nassau [InstallFolder]\share\timezone\America\New_York [InstallFolder]\share\timezone\America\Nipigon [InstallFolder]\share\timezone\America\Nome [InstallFolder]\share\timezone\America\Noronha [InstallFolder]\share\timezone\America\North_Dakota\Beulah [InstallFolder]\share\timezone\America\North_Dakota\Center [InstallFolder]\share\timezone\America\North_Dakota\New_Salem [InstallFolder]\share\timezone\America\Nuuk [InstallFolder]\share\timezone\America\Ojinaga [InstallFolder]\share\timezone\America\Panama [InstallFolder]\share\timezone\America\Pangnirtung [InstallFolder]\share\timezone\America\Paramaribo [InstallFolder]\share\timezone\America\Phoenix [InstallFolder]\share\timezone\America\Port-au-Prince [InstallFolder]\share\timezone\America\Port_of_Spain [InstallFolder]\share\timezone\America\Porto_Acre [InstallFolder]\share\timezone\America\Porto_Velho [InstallFolder]\share\timezone\America\Puerto_Rico [InstallFolder]\share\timezone\America\Punta_Arenas [InstallFolder]\share\timezone\America\Rainy_River [InstallFolder]\share\timezone\America\Rankin_Inlet [InstallFolder]\share\timezone\America\Recife [InstallFolder]\share\timezone\America\Regina [InstallFolder]\share\timezone\America\Resolute [InstallFolder]\share\timezone\America\Rio_Branco [InstallFolder]\share\timezone\America\Rosario [InstallFolder]\share\timezone\America\Santa_Isabel [InstallFolder]\share\timezone\America\Santarem [InstallFolder]\share\timezone\America\Santiago [InstallFolder]\share\timezone\America\Santo_Domingo [InstallFolder]\share\timezone\America\Sao_Paulo [InstallFolder]\share\timezone\America\Scoresbysund [InstallFolder]\share\timezone\America\Shiprock [InstallFolder]\share\timezone\America\Sitka [InstallFolder]\share\timezone\America\St_Barthelemy [InstallFolder]\share\timezone\America\St_Johns [InstallFolder]\share\timezone\America\St_Kitts [InstallFolder]\share\timezone\America\St_Lucia [InstallFolder]\share\timezone\America\St_Thomas [InstallFolder]\share\timezone\America\St_Vincent [InstallFolder]\share\timezone\America\Swift_Current [InstallFolder]\share\timezone\America\Tegucigalpa [InstallFolder]\share\timezone\America\Thule [InstallFolder]\share\timezone\America\Thunder_Bay [InstallFolder]\share\timezone\America\Tijuana [InstallFolder]\share\timezone\America\Toronto [InstallFolder]\share\timezone\America\Tortola [InstallFolder]\share\timezone\America\Vancouver [InstallFolder]\share\timezone\America\Virgin [InstallFolder]\share\timezone\America\Whitehorse [InstallFolder]\share\timezone\America\Winnipeg [InstallFolder]\share\timezone\America\Yakutat [InstallFolder]\share\timezone\America\Yellowknife [InstallFolder]\share\timezone\Antarctica\Casey [InstallFolder]\share\timezone\Antarctica\Davis [InstallFolder]\share\timezone\Antarctica\DumontDUrville [InstallFolder]\share\timezone\Antarctica\Macquarie [InstallFolder]\share\timezone\Antarctica\Mawson [InstallFolder]\share\timezone\Antarctica\McMurdo [InstallFolder]\share\timezone\Antarctica\Palmer [InstallFolder]\share\timezone\Antarctica\Rothera [InstallFolder]\share\timezone\Antarctica\South_Pole [InstallFolder]\share\timezone\Antarctica\Syowa [InstallFolder]\share\timezone\Antarctica\Troll [InstallFolder]\share\timezone\Antarctica\Vostok [InstallFolder]\share\timezone\Arctic\Longyearbyen [InstallFolder]\share\timezone\Asia\Aden [InstallFolder]\share\timezone\Asia\Almaty [InstallFolder]\share\timezone\Asia\Amman [InstallFolder]\share\timezone\Asia\Anadyr [InstallFolder]\share\timezone\Asia\Aqtau [InstallFolder]\share\timezone\Asia\Aqtobe [InstallFolder]\share\timezone\Asia\Ashgabat [InstallFolder]\share\timezone\Asia\Ashkhabad [InstallFolder]\share\timezone\Asia\Atyrau [InstallFolder]\share\timezone\Asia\Baghdad [InstallFolder]\share\timezone\Asia\Bahrain [InstallFolder]\share\timezone\Asia\Baku [InstallFolder]\share\timezone\Asia\Bangkok [InstallFolder]\share\timezone\Asia\Barnaul [InstallFolder]\share\timezone\Asia\Beirut [InstallFolder]\share\timezone\Asia\Bishkek [InstallFolder]\share\timezone\Asia\Brunei [InstallFolder]\share\timezone\Asia\Calcutta [InstallFolder]\share\timezone\Asia\Chita [InstallFolder]\share\timezone\Asia\Choibalsan [InstallFolder]\share\timezone\Asia\Chongqing [InstallFolder]\share\timezone\Asia\Chungking [InstallFolder]\share\timezone\Asia\Colombo [InstallFolder]\share\timezone\Asia\Dacca [InstallFolder]\share\timezone\Asia\Damascus [InstallFolder]\share\timezone\Asia\Dhaka [InstallFolder]\share\timezone\Asia\Dili [InstallFolder]\share\timezone\Asia\Dubai [InstallFolder]\share\timezone\Asia\Dushanbe [InstallFolder]\share\timezone\Asia\Famagusta [InstallFolder]\share\timezone\Asia\Gaza [InstallFolder]\share\timezone\Asia\Harbin [InstallFolder]\share\timezone\Asia\Hebron [InstallFolder]\share\timezone\Asia\Ho_Chi_Minh [InstallFolder]\share\timezone\Asia\Hong_Kong [InstallFolder]\share\timezone\Asia\Hovd [InstallFolder]\share\timezone\Asia\Irkutsk [InstallFolder]\share\timezone\Asia\Istanbul [InstallFolder]\share\timezone\Asia\Jakarta [InstallFolder]\share\timezone\Asia\Jayapura [InstallFolder]\share\timezone\Asia\Jerusalem [InstallFolder]\share\timezone\Asia\Kabul [InstallFolder]\share\timezone\Asia\Kamchatka [InstallFolder]\share\timezone\Asia\Karachi [InstallFolder]\share\timezone\Asia\Kashgar [InstallFolder]\share\timezone\Asia\Kathmandu [InstallFolder]\share\timezone\Asia\Katmandu [InstallFolder]\share\timezone\Asia\Khandyga [InstallFolder]\share\timezone\Asia\Kolkata [InstallFolder]\share\timezone\Asia\Krasnoyarsk [InstallFolder]\share\timezone\Asia\Kuala_Lumpur [InstallFolder]\share\timezone\Asia\Kuching [InstallFolder]\share\timezone\Asia\Kuwait [InstallFolder]\share\timezone\Asia\Macao [InstallFolder]\share\timezone\Asia\Macau [InstallFolder]\share\timezone\Asia\Magadan [InstallFolder]\share\timezone\Asia\Makassar [InstallFolder]\share\timezone\Asia\Manila [InstallFolder]\share\timezone\Asia\Muscat [InstallFolder]\share\timezone\Asia\Nicosia [InstallFolder]\share\timezone\Asia\Novokuznetsk [InstallFolder]\share\timezone\Asia\Novosibirsk [InstallFolder]\share\timezone\Asia\Omsk [InstallFolder]\share\timezone\Asia\Oral [InstallFolder]\share\timezone\Asia\Phnom_Penh [InstallFolder]\share\timezone\Asia\Pontianak [InstallFolder]\share\timezone\Asia\Pyongyang [InstallFolder]\share\timezone\Asia\Qatar [InstallFolder]\share\timezone\Asia\Qostanay [InstallFolder]\share\timezone\Asia\Qyzylorda [InstallFolder]\share\timezone\Asia\Rangoon [InstallFolder]\share\timezone\Asia\Riyadh [InstallFolder]\share\timezone\Asia\Saigon [InstallFolder]\share\timezone\Asia\Sakhalin [InstallFolder]\share\timezone\Asia\Samarkand [InstallFolder]\share\timezone\Asia\Seoul [InstallFolder]\share\timezone\Asia\Shanghai [InstallFolder]\share\timezone\Asia\Singapore [InstallFolder]\share\timezone\Asia\Srednekolymsk [InstallFolder]\share\timezone\Asia\Taipei [InstallFolder]\share\timezone\Asia\Tashkent [InstallFolder]\share\timezone\Asia\Tbilisi [InstallFolder]\share\timezone\Asia\Tehran [InstallFolder]\share\timezone\Asia\Tel_Aviv [InstallFolder]\share\timezone\Asia\Thimbu [InstallFolder]\share\timezone\Asia\Thimphu [InstallFolder]\share\timezone\Asia\Tokyo [InstallFolder]\share\timezone\Asia\Tomsk [InstallFolder]\share\timezone\Asia\Ujung_Pandang [InstallFolder]\share\timezone\Asia\Ulaanbaatar [InstallFolder]\share\timezone\Asia\Ulan_Bator [InstallFolder]\share\timezone\Asia\Urumqi [InstallFolder]\share\timezone\Asia\Ust-Nera [InstallFolder]\share\timezone\Asia\Vientiane [InstallFolder]\share\timezone\Asia\Vladivostok [InstallFolder]\share\timezone\Asia\Yakutsk [InstallFolder]\share\timezone\Asia\Yangon [InstallFolder]\share\timezone\Asia\Yekaterinburg [InstallFolder]\share\timezone\Asia\Yerevan [InstallFolder]\share\timezone\Atlantic\Azores [InstallFolder]\share\timezone\Atlantic\Bermuda [InstallFolder]\share\timezone\Atlantic\Canary [InstallFolder]\share\timezone\Atlantic\Cape_Verde [InstallFolder]\share\timezone\Atlantic\Faeroe [InstallFolder]\share\timezone\Atlantic\Faroe [InstallFolder]\share\timezone\Atlantic\Jan_Mayen [InstallFolder]\share\timezone\Atlantic\Madeira [InstallFolder]\share\timezone\Atlantic\Reykjavik [InstallFolder]\share\timezone\Atlantic\South_Georgia [InstallFolder]\share\timezone\Atlantic\St_Helena [InstallFolder]\share\timezone\Atlantic\Stanley [InstallFolder]\share\timezone\Australia\ACT [InstallFolder]\share\timezone\Australia\Adelaide [InstallFolder]\share\timezone\Australia\Brisbane [InstallFolder]\share\timezone\Australia\Broken_Hill [InstallFolder]\share\timezone\Australia\Canberra [InstallFolder]\share\timezone\Australia\Currie [InstallFolder]\share\timezone\Australia\Darwin [InstallFolder]\share\timezone\Australia\Eucla [InstallFolder]\share\timezone\Australia\Hobart [InstallFolder]\share\timezone\Australia\LHI [InstallFolder]\share\timezone\Australia\Lindeman [InstallFolder]\share\timezone\Australia\Lord_Howe [InstallFolder]\share\timezone\Australia\Melbourne [InstallFolder]\share\timezone\Australia\NSW [InstallFolder]\share\timezone\Australia\North [InstallFolder]\share\timezone\Australia\Perth [InstallFolder]\share\timezone\Australia\Queensland [InstallFolder]\share\timezone\Australia\South [InstallFolder]\share\timezone\Australia\Sydney [InstallFolder]\share\timezone\Australia\Tasmania [InstallFolder]\share\timezone\Australia\Victoria [InstallFolder]\share\timezone\Australia\West [InstallFolder]\share\timezone\Australia\Yancowinna [InstallFolder]\share\timezone\Brazil\Acre [InstallFolder]\share\timezone\Brazil\DeNoronha [InstallFolder]\share\timezone\Brazil\East [InstallFolder]\share\timezone\Brazil\West [InstallFolder]\share\timezone\CET [InstallFolder]\share\timezone\CST6CDT [InstallFolder]\share\timezone\Canada\Atlantic [InstallFolder]\share\timezone\Canada\Central [InstallFolder]\share\timezone\Canada\Eastern [InstallFolder]\share\timezone\Canada\Mountain [InstallFolder]\share\timezone\Canada\Newfoundland [InstallFolder]\share\timezone\Canada\Pacific [InstallFolder]\share\timezone\Canada\Saskatchewan [InstallFolder]\share\timezone\Canada\Yukon [InstallFolder]\share\timezone\Chile\Continental [InstallFolder]\share\timezone\Chile\EasterIsland [InstallFolder]\share\timezone\Cuba [InstallFolder]\share\timezone\EET [InstallFolder]\share\timezone\EST [InstallFolder]\share\timezone\EST5EDT [InstallFolder]\share\timezone\Egypt [InstallFolder]\share\timezone\Eire [InstallFolder]\share\timezone\Etc\GMT [InstallFolder]\share\timezone\Etc\GMT+0 [InstallFolder]\share\timezone\Etc\GMT+1 [InstallFolder]\share\timezone\Etc\GMT+10 [InstallFolder]\share\timezone\Etc\GMT+11 [InstallFolder]\share\timezone\Etc\GMT+12 [InstallFolder]\share\timezone\Etc\GMT+2 [InstallFolder]\share\timezone\Etc\GMT+3 [InstallFolder]\share\timezone\Etc\GMT+4 [InstallFolder]\share\timezone\Etc\GMT+5 [InstallFolder]\share\timezone\Etc\GMT+6 [InstallFolder]\share\timezone\Etc\GMT+7 [InstallFolder]\share\timezone\Etc\GMT+8 [InstallFolder]\share\timezone\Etc\GMT+9 [InstallFolder]\share\timezone\Etc\GMT-0 [InstallFolder]\share\timezone\Etc\GMT-1 [InstallFolder]\share\timezone\Etc\GMT-10 [InstallFolder]\share\timezone\Etc\GMT-11 [InstallFolder]\share\timezone\Etc\GMT-12 [InstallFolder]\share\timezone\Etc\GMT-13 [InstallFolder]\share\timezone\Etc\GMT-14 [InstallFolder]\share\timezone\Etc\GMT-2 [InstallFolder]\share\timezone\Etc\GMT-3 [InstallFolder]\share\timezone\Etc\GMT-4 [InstallFolder]\share\timezone\Etc\GMT-5 [InstallFolder]\share\timezone\Etc\GMT-6 [InstallFolder]\share\timezone\Etc\GMT-7 [InstallFolder]\share\timezone\Etc\GMT-8 [InstallFolder]\share\timezone\Etc\GMT-9 [InstallFolder]\share\timezone\Etc\GMT0 [InstallFolder]\share\timezone\Etc\Greenwich [InstallFolder]\share\timezone\Etc\UCT [InstallFolder]\share\timezone\Etc\UTC [InstallFolder]\share\timezone\Etc\Universal [InstallFolder]\share\timezone\Etc\Zulu [InstallFolder]\share\timezone\Europe\Amsterdam [InstallFolder]\share\timezone\Europe\Andorra [InstallFolder]\share\timezone\Europe\Astrakhan [InstallFolder]\share\timezone\Europe\Athens [InstallFolder]\share\timezone\Europe\Belfast [InstallFolder]\share\timezone\Europe\Belgrade [InstallFolder]\share\timezone\Europe\Berlin [InstallFolder]\share\timezone\Europe\Bratislava [InstallFolder]\share\timezone\Europe\Brussels [InstallFolder]\share\timezone\Europe\Bucharest [InstallFolder]\share\timezone\Europe\Budapest [InstallFolder]\share\timezone\Europe\Busingen [InstallFolder]\share\timezone\Europe\Chisinau [InstallFolder]\share\timezone\Europe\Copenhagen [InstallFolder]\share\timezone\Europe\Dublin [InstallFolder]\share\timezone\Europe\Gibraltar [InstallFolder]\share\timezone\Europe\Guernsey [InstallFolder]\share\timezone\Europe\Helsinki [InstallFolder]\share\timezone\Europe\Isle_of_Man [InstallFolder]\share\timezone\Europe\Istanbul [InstallFolder]\share\timezone\Europe\Jersey [InstallFolder]\share\timezone\Europe\Kaliningrad [InstallFolder]\share\timezone\Europe\Kiev [InstallFolder]\share\timezone\Europe\Kirov [InstallFolder]\share\timezone\Europe\Kyiv [InstallFolder]\share\timezone\Europe\Lisbon [InstallFolder]\share\timezone\Europe\Ljubljana [InstallFolder]\share\timezone\Europe\London [InstallFolder]\share\timezone\Europe\Luxembourg [InstallFolder]\share\timezone\Europe\Madrid [InstallFolder]\share\timezone\Europe\Malta [InstallFolder]\share\timezone\Europe\Mariehamn [InstallFolder]\share\timezone\Europe\Minsk [InstallFolder]\share\timezone\Europe\Monaco [InstallFolder]\share\timezone\Europe\Moscow [InstallFolder]\share\timezone\Europe\Nicosia [InstallFolder]\share\timezone\Europe\Oslo [InstallFolder]\share\timezone\Europe\Paris [InstallFolder]\share\timezone\Europe\Podgorica [InstallFolder]\share\timezone\Europe\Prague [InstallFolder]\share\timezone\Europe\Riga [InstallFolder]\share\timezone\Europe\Rome [InstallFolder]\share\timezone\Europe\Samara [InstallFolder]\share\timezone\Europe\San_Marino [InstallFolder]\share\timezone\Europe\Sarajevo [InstallFolder]\share\timezone\Europe\Saratov [InstallFolder]\share\timezone\Europe\Simferopol [InstallFolder]\share\timezone\Europe\Skopje [InstallFolder]\share\timezone\Europe\Sofia [InstallFolder]\share\timezone\Europe\Stockholm [InstallFolder]\share\timezone\Europe\Tallinn [InstallFolder]\share\timezone\Europe\Tirane [InstallFolder]\share\timezone\Europe\Tiraspol [InstallFolder]\share\timezone\Europe\Ulyanovsk [InstallFolder]\share\timezone\Europe\Uzhgorod [InstallFolder]\share\timezone\Europe\Vaduz [InstallFolder]\share\timezone\Europe\Vatican [InstallFolder]\share\timezone\Europe\Vienna [InstallFolder]\share\timezone\Europe\Vilnius [InstallFolder]\share\timezone\Europe\Volgograd [InstallFolder]\share\timezone\Europe\Warsaw [InstallFolder]\share\timezone\Europe\Zagreb [InstallFolder]\share\timezone\Europe\Zaporozhye [InstallFolder]\share\timezone\Europe\Zurich [InstallFolder]\share\timezone\Factory [InstallFolder]\share\timezone\GB [InstallFolder]\share\timezone\GB-Eire [InstallFolder]\share\timezone\GMT [InstallFolder]\share\timezone\GMT+0 [InstallFolder]\share\timezone\GMT-0 [InstallFolder]\share\timezone\GMT0 [InstallFolder]\share\timezone\Greenwich [InstallFolder]\share\timezone\HST [InstallFolder]\share\timezone\Hongkong [InstallFolder]\share\timezone\Iceland [InstallFolder]\share\timezone\Indian\Antananarivo [InstallFolder]\share\timezone\Indian\Chagos [InstallFolder]\share\timezone\Indian\Christmas [InstallFolder]\share\timezone\Indian\Cocos [InstallFolder]\share\timezone\Indian\Comoro [InstallFolder]\share\timezone\Indian\Kerguelen [InstallFolder]\share\timezone\Indian\Mahe [InstallFolder]\share\timezone\Indian\Maldives [InstallFolder]\share\timezone\Indian\Mauritius [InstallFolder]\share\timezone\Indian\Mayotte [InstallFolder]\share\timezone\Indian\Reunion [InstallFolder]\share\timezone\Iran [InstallFolder]\share\timezone\Israel [InstallFolder]\share\timezone\Jamaica [InstallFolder]\share\timezone\Japan [InstallFolder]\share\timezone\Kwajalein [InstallFolder]\share\timezone\Libya [InstallFolder]\share\timezone\MET [InstallFolder]\share\timezone\MST [InstallFolder]\share\timezone\MST7MDT [InstallFolder]\share\timezone\Mexico\BajaNorte [InstallFolder]\share\timezone\Mexico\BajaSur [InstallFolder]\share\timezone\Mexico\General [InstallFolder]\share\timezone\NZ [InstallFolder]\share\timezone\NZ-CHAT [InstallFolder]\share\timezone\Navajo [InstallFolder]\share\timezone\PRC [InstallFolder]\share\timezone\PST8PDT [InstallFolder]\share\timezone\Pacific\Apia [InstallFolder]\share\timezone\Pacific\Auckland [InstallFolder]\share\timezone\Pacific\Bougainville [InstallFolder]\share\timezone\Pacific\Chatham [InstallFolder]\share\timezone\Pacific\Chuuk [InstallFolder]\share\timezone\Pacific\Easter [InstallFolder]\share\timezone\Pacific\Efate [InstallFolder]\share\timezone\Pacific\Enderbury [InstallFolder]\share\timezone\Pacific\Fakaofo [InstallFolder]\share\timezone\Pacific\Fiji [InstallFolder]\share\timezone\Pacific\Funafuti [InstallFolder]\share\timezone\Pacific\Galapagos [InstallFolder]\share\timezone\Pacific\Gambier [InstallFolder]\share\timezone\Pacific\Guadalcanal [InstallFolder]\share\timezone\Pacific\Guam [InstallFolder]\share\timezone\Pacific\Honolulu [InstallFolder]\share\timezone\Pacific\Johnston [InstallFolder]\share\timezone\Pacific\Kanton [InstallFolder]\share\timezone\Pacific\Kiritimati [InstallFolder]\share\timezone\Pacific\Kosrae [InstallFolder]\share\timezone\Pacific\Kwajalein [InstallFolder]\share\timezone\Pacific\Majuro [InstallFolder]\share\timezone\Pacific\Marquesas [InstallFolder]\share\timezone\Pacific\Midway [InstallFolder]\share\timezone\Pacific\Nauru [InstallFolder]\share\timezone\Pacific\Niue [InstallFolder]\share\timezone\Pacific\Norfolk [InstallFolder]\share\timezone\Pacific\Noumea [InstallFolder]\share\timezone\Pacific\Pago_Pago [InstallFolder]\share\timezone\Pacific\Palau [InstallFolder]\share\timezone\Pacific\Pitcairn [InstallFolder]\share\timezone\Pacific\Pohnpei [InstallFolder]\share\timezone\Pacific\Ponape [InstallFolder]\share\timezone\Pacific\Port_Moresby [InstallFolder]\share\timezone\Pacific\Rarotonga [InstallFolder]\share\timezone\Pacific\Saipan [InstallFolder]\share\timezone\Pacific\Samoa [InstallFolder]\share\timezone\Pacific\Tahiti [InstallFolder]\share\timezone\Pacific\Tarawa [InstallFolder]\share\timezone\Pacific\Tongatapu [InstallFolder]\share\timezone\Pacific\Truk [InstallFolder]\share\timezone\Pacific\Wake [InstallFolder]\share\timezone\Pacific\Wallis [InstallFolder]\share\timezone\Pacific\Yap [InstallFolder]\share\timezone\Poland [InstallFolder]\share\timezone\Portugal [InstallFolder]\share\timezone\ROC [InstallFolder]\share\timezone\ROK [InstallFolder]\share\timezone\Singapore [InstallFolder]\share\timezone\Turkey [InstallFolder]\share\timezone\UCT [InstallFolder]\share\timezone\US\Alaska [InstallFolder]\share\timezone\US\Aleutian [InstallFolder]\share\timezone\US\Arizona [InstallFolder]\share\timezone\US\Central [InstallFolder]\share\timezone\US\East-Indiana [InstallFolder]\share\timezone\US\Eastern [InstallFolder]\share\timezone\US\Hawaii [InstallFolder]\share\timezone\US\Indiana-Starke [InstallFolder]\share\timezone\US\Michigan [InstallFolder]\share\timezone\US\Mountain [InstallFolder]\share\timezone\US\Pacific [InstallFolder]\share\timezone\US\Samoa [InstallFolder]\share\timezone\UTC [InstallFolder]\share\timezone\Universal [InstallFolder]\share\timezone\W-SU [InstallFolder]\share\timezone\WET [InstallFolder]\share\timezone\Zulu [InstallFolder]\share\timezonesets\Africa.txt [InstallFolder]\share\timezonesets\America.txt [InstallFolder]\share\timezonesets\Antarctica.txt [InstallFolder]\share\timezonesets\Asia.txt [InstallFolder]\share\timezonesets\Atlantic.txt [InstallFolder]\share\timezonesets\Australia [InstallFolder]\share\timezonesets\Australia.txt [InstallFolder]\share\timezonesets\Default [InstallFolder]\share\timezonesets\Etc.txt [InstallFolder]\share\timezonesets\Europe.txt [InstallFolder]\share\timezonesets\India [InstallFolder]\share\timezonesets\Indian.txt [InstallFolder]\share\timezonesets\Pacific.txt [InstallFolder]\share\tsearch_data\danish.stop [InstallFolder]\share\tsearch_data\dutch.stop [InstallFolder]\share\tsearch_data\english.stop [InstallFolder]\share\tsearch_data\finnish.stop [InstallFolder]\share\tsearch_data\french.stop [InstallFolder]\share\tsearch_data\german.stop [InstallFolder]\share\tsearch_data\hungarian.stop [InstallFolder]\share\tsearch_data\hunspell_sample.affix [InstallFolder]\share\tsearch_data\hunspell_sample_long.affix [InstallFolder]\share\tsearch_data\hunspell_sample_long.dict [InstallFolder]\share\tsearch_data\hunspell_sample_num.affix [InstallFolder]\share\tsearch_data\hunspell_sample_num.dict [InstallFolder]\share\tsearch_data\ispell_sample.affix [InstallFolder]\share\tsearch_data\ispell_sample.dict [InstallFolder]\share\tsearch_data\italian.stop [InstallFolder]\share\tsearch_data\nepali.stop [InstallFolder]\share\tsearch_data\norwegian.stop [InstallFolder]\share\tsearch_data\portuguese.stop [InstallFolder]\share\tsearch_data\russian.stop [InstallFolder]\share\tsearch_data\spanish.stop [InstallFolder]\share\tsearch_data\swedish.stop [InstallFolder]\share\tsearch_data\synonym_sample.syn [InstallFolder]\share\tsearch_data\thesaurus_sample.ths [InstallFolder]\share\tsearch_data\turkish.stop [InstallFolder]\share\tsearch_data\unaccent.rules [InstallFolder]\share\tsearch_data\xsyn_sample.rules [InstallFolder]\share\zabbix\mc\bin\disconnect_standby.sh [InstallFolder]\share\zabbix\mc\bin\promote_standby.sh [InstallFolder]\share\zabbix\mc\bin\sanity_check.sh [InstallFolder]\share\zabbix\mc\bin\stop_db.sh [InstallFolder]\share\zabbix\mc\etc\fsep.conf [InstallFolder]\share\zabbix\mc\template \Template_App_Mirroring_Controller.xml [InstallFolder]\share\zabbix\mc\zabbix_agentd.conf.d \userparameter_mc.conf -------------------------------------------------------------------------------