Skip to content
Open
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
2 changes: 2 additions & 0 deletions docs/src/pgstac.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,8 @@ You can add notification triggers alongside pgstac to get notified when items ar

**Important:** Do NOT create these in the `pgstac` schema as they could be removed in future migrations.

**Note on pgSTAC's UPDATE behavior:** For performance and consistency, `update_item()` in pgSTAC uses a **DELETE+INSERT** pattern instead of a direct SQL `UPDATE`. As a result, standard `UPDATE` triggers will not fire during these operations. Applications that rely on change notifications should implement logic that accounts for this behavior.

#### Example Notification Setup

Here's an example of how to set up notification triggers for item changes:
Expand Down
Loading