View the minor version

更新时间:
复制 MD 格式

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

View in the console

  1. Log on to the AnalyticDB for PostgreSQL console.

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

  3. Find the instance that you want to manage and click the instance ID.

  4. On the Basic Information page, in the Basic Information section, view the Minor Version.

    Note

    To upgrade the minor version, see Update the minor version of an instance.

View with a client tool

To view the minor version using a client tool, you must connect to an AnalyticDB for PostgreSQL instance. For more information about how to connect to the database, see Client connection.

View the minor version number

Run the following command to view the minor version of the AnalyticDB for PostgreSQL instance:

SHOW adbpg_version;

The command returns the following sample output:

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

View the kernel build date

Run the following command to view the kernel build date of the AnalyticDB for PostgreSQL instance:

SHOW rds_release_date; 

The command returns the following sample output:

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

References