-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from fetchq/feature/23
Add json triggered events
- Loading branch information
Showing
10 changed files
with
2,797 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# FetchQ Changelog | ||
|
||
## v2.1.0 | ||
|
||
- Adds `fetchq_queue_create_indexes(qname)` signature that generate per-queue indexes | ||
based on informations read from the `sys_queues` table. | ||
- Adds `fetchq_trigger_notify_as_json()` that can be attached to any table to emit a full | ||
JSON representation of the event (INSERT; UPDATE; DELETE). | ||
- Emits full JSON events for `fetchq_sys_queues` so that the client can subscribe to it and | ||
honor the queue status. | ||
|
||
## v2.0.0 | ||
|
||
- Introduces the `fetchq_catalog` schema where to collect all the FetchQ related tables |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
FROM postgres:10.11 | ||
ADD ./extension /usr/share/postgresql/10/extension/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
FROM postgres:11.6 | ||
ADD ./extension /usr/share/postgresql/11/extension/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
FROM postgres:12.1 | ||
ADD ./extension /usr/share/postgresql/12/extension/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# FetchQ v2.1.0 | ||
|
||
- Adds `fetchq_queue_create_indexes(qname)` signature that generate per-queue indexes | ||
based on informations read from the `sys_queues` table. | ||
- Adds `fetchq_trigger_notify_as_json()` that can be attached to any table to emit a full | ||
JSON representation of the event (INSERT; UPDATE; DELETE). | ||
- Emits full JSON events for `fetchq_sys_queues` so that the client can subscribe to it and | ||
honor the queue status. | ||
|
Oops, something went wrong.