Skip to content

Commit 0abd95b

Browse files
committed
updates the section updating extensions
1 parent 753e73a commit 0abd95b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

articles/postgresql/flexible-server/concepts-extensions.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,11 @@ To update an installed extension to the latest available version supported by Az
111111
ALTER EXTENSION <extension-name> UPDATE;
112112
```
113113

114-
This command simplifies the management of database extensions by automatically upgrading to the latest version approved by Azure, enhancing both compatibility and security.
114+
This command simplifies the management of database extensions by allowing users to manually upgrade to the latest version approved by Azure, enhancing both compatibility and security.
115115

116116
### Limitations
117117
While updating extensions is straightforward, there are certain limitations:
118-
- **Specific Version Selection**: The command does not support updating to intermediate versions of an extension. It will always update to the latest available version.
118+
- **Specific Version Selection**: The command does not support updating to intermediate versions of an extension. It will always update to the [latest available version](#extension-versions).
119119
- **Downgrading**: Azure does not currently support downgrading an extension to a previous version through a similar command. If a downgrade is necessary, it might require manual intervention or support assistance.
120120

121121
#### Viewing Installed Extensions
@@ -129,8 +129,9 @@ SELECT * FROM pg_extension;
129129
To check which versions of an extension are available for your current database installation, execute:
130130

131131
```sql
132-
SELECT * FROM pg_available_extension_versions;
132+
SELECT * FROM pg_available_extensions WHERE name = 'azure_ai';
133133
```
134+
134135
These commands provide necessary insights into the extension configurations of your database, helping maintain your systems efficiently and securely. By enabling easy updates to the latest extension versions, Azure Database for PostgreSQL - Flexible Server continues to support the robust, secure, and efficient management of your database applications.
135136

136137
## dblink and postgres_fdw

0 commit comments

Comments
 (0)