Skip to content

Commit 96e2c59

Browse files
Merge pull request #274594 from varun-dhawan/varund-jul
[postgres] spell check
2 parents 0ea1986 + 4f6b6e8 commit 96e2c59

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

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

Lines changed: 5 additions & 4 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,9 +129,10 @@ 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-
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.
134+
135+
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 continues to support the robust, secure, and efficient management of your database applications.
135136

136137
## dblink and postgres_fdw
137138

0 commit comments

Comments
 (0)