PostgreSQL 15 / PostGIS 3.3.3 is expected to be certified and supported with the Pro 3.2 / ArcGIS Enterprise 11.2 release.
ArcGIS 11.1 and ArcGIS Pro 3.1 requirements for PostgreSQL
The following versions of PostgreSQL and PostGIS are supported with ArcGIS. The specific versions listed are the minimum minor version supported and certified for each supported major release of PostgreSQL and PostGIS. Newer minor versions are supported, but are not certified unless otherwise stated. The PostgreSQL version and updates must also be supported by the PostgreSQL Global Development Group.
- PostgreSQL 14.5 (64 bit)
- PostgreSQL 13.6 (64 bit)
- PostgreSQL 12.10 (64 bit)
- PostgreSQL 11.15 (64 bit)
PostGIS 3.3.3 is supported although is not certified.
PostGIS 3.3.3 is a minor version update.
I tested myself and I did not encounter any issue.
For example, my server is running PostgreSQL 14.8 and PostGIS 3.3.3, the latest available versions.
As you can see these versions are newer minor versions, which are supported but not certified. We need to keep PostgreSQL and PosGIS patched, it is a good practice to do so.
The only caveat is if you update the PostGIS version you must upgrade the PostGIS extension version in the PostgreSQL database running these commands.
--update postgis extension in each pg database
SELECT postgis_full_version();
ALTER EXTENSION postgis UPDATE;
SELECT postgis_extensions_upgrade();
--run one more time to check
ALTER EXTENSION postgis UPDATE;
SELECT postgis_full_version();
I hope this helps.
| Marcelo Marques | Esri Principal Product Engineer | Cloud & Database Administrator | OCP - Oracle Database Certified Professional | "In 1992, I embarked on my journey with Esri Technology, and since 1997, I have been working with ArcSDE Geodatabases, right from its initial release. Over the past 32 years, my passion for GIS has only grown stronger." | “ I do not fear computers. I fear the lack of them." Isaac Isimov |