All Products
Search
Document Center

AnalyticDB:View the minor version of an instance

Last Updated:Mar 28, 2026

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

  1. Log on to the AnalyticDB for PostgreSQL console.

  2. In the upper-left corner, select a region.

  3. Find the instance and click its instance ID.

  4. In the Basic Information section of the Basic Information page, find the minor version field.

Note

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.

What to do next