Before deciding whether to update the minor version of your AnalyticDB for PostgreSQL instance, confirm the version currently running on it. You can check the minor version in the console or query it directly using SQL.
View the minor version in the console
Log on to the AnalyticDB for PostgreSQL console.
In the upper-left corner, select a region.
Find the instance and click its instance ID.
In the Basic Information section of the Basic Information page, find the minor version field.
To update the minor version, see Update the minor version of an instance.
Query the minor version using SQL
Connect to the instance using a client tool before running the following statements. For details, see Client connection.
Query the minor version number
Run the following statement:
SHOW adbpg_version;Expected output:
adbpg_version
---------------
6.3.*.0
(1 row)Query the minor version release date
Run the following statement:
SHOW rds_release_date;Expected output:
rds_release_date
------------------
20210713
(1 row)The release date is in YYYYMMDD format. For example, 20210713 means July 13, 2021.