Skip to content

fix(extension): allow v4.1 to show in extension list#70

Open
gclough wants to merge 1 commit into
EnterpriseDB:masterfrom
gclough:control_file_4.1
Open

fix(extension): allow v4.1 to show in extension list#70
gclough wants to merge 1 commit into
EnterpriseDB:masterfrom
gclough:control_file_4.1

Conversation

@gclough

@gclough gclough commented May 14, 2026

Copy link
Copy Markdown

Fixes #69

Allows correct version to show in extension list after ALTER EXTENSION system_stats UPDATE;

pgtest_dev=# \dx system_stats
                          List of installed extensions
     Name     | Version | Schema |                  Description
--------------+---------+--------+-----------------------------------------------
 system_stats | 4.0     | public | EnterpriseDB system statistics for PostgreSQL
(1 row)

pgtest_dev=# ALTER EXTENSION system_stats UPDATE;
ALTER EXTENSION
pgtest_dev=# \dx system_stats
                          List of installed extensions
     Name     | Version | Schema |                  Description
--------------+---------+--------+-----------------------------------------------
 system_stats | 4.1     | public | EnterpriseDB system statistics for PostgreSQL
(1 row)

Also works on new creation:

pgtest_dev=# DROP EXTENSION system_stats;
DROP EXTENSION
pgtest_dev=# \dx system_stats
     List of installed extensions
 Name | Version | Schema | Description
------+---------+--------+-------------
(0 rows)

pgtest_dev=# CREATE EXTENSION system_stats;
CREATE EXTENSION
pgtest_dev=# \dx system_stats
                          List of installed extensions
     Name     | Version | Schema |                  Description
--------------+---------+--------+-----------------------------------------------
 system_stats | 4.1     | public | EnterpriseDB system statistics for PostgreSQL
(1 row)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Version mismatch: latest tag is 4.1 but control file shows version 4.0

1 participant