Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/content/docs/extensions/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,14 @@ INSTALL <EXTENSION_NAME>;
```
You only need to install an extension once.

### Force install an official extension
### Update an official extension

To update an official extension you can use the `UPDATE` command:

```sql
UPDATE <EXTENSION_NAME>;
```

If you run the `INSTALL` command for an extension that is already installed, the second install command will not perform any action.

If you want to forcefully download an extension for any reason, for example if the extension is not working properly, you can use the `FORCE INSTALL` command:
Expand Down