v0.0.14
Highlight: execute your query much later. Specify a delay, in seconds, to wait until your query is executed. The default is to wait 0 seconds.
To execute your query 60 seconds from now...
select pglater.exec(
query => 'select * from pg_available_extensions order by name limit 2',
delay => 60
) as job_id;
What's Changed
- upgrade pgrx, add lockfile by @ChuckHend in #39
- Add pg 16 support by @owenthereal in #37
- Add PGXN release workflow by @theory in #40
- Make it actually release to PGXN by @theory in #41
- Generate META.json by @theory in #42
- Dockerized improvements by @sjmiller609 in #43
- Optional delay for jobs by @sjmiller609 in #44
New Contributors
- @owenthereal made their first contribution in #37
- @theory made their first contribution in #40
- @sjmiller609 made their first contribution in #43
Full Changelog: v0.0.12...v0.0.14