This topic describes how to view the minor engine version of an AnalyticDB for PostgreSQL instance.

Use the console to view the minor engine version

  1. Log on to the AnalyticDB for PostgreSQL console.
  2. In the upper-left corner of the console, select the region where the instance resides.
  3. Find the instance that you want to manage and click the instance ID.
  4. In the Basic Information section of the Basic Information page, view the minor engine version of the instance in Minor Version.
    Note For information about how to update the minor engine version of an instance, see Upgrade the engine version.

Use a client tool to query the minor engine version

To query the minor engine version of an AnalyticDB for PostgreSQL instance by using a client tool, you must connect to the instance first. For more information, see Use client tools to connect to an instance.

Query the minor version number

Execute the following statement to query the minor version number of an AnalyticDB for PostgreSQL instance:

SHOW adbpg_version;

Sample query result:

 adbpg_version
---------------
 6.3.*.0
(1 row)

Query the minor version release date

Execute the following statement to query the minor version release date of an AnalyticDB for PostgreSQL instance:

SHOW rds_release_date; 

Sample query result:

 rds_release_date
------------------
 20210713
(1 row)

References