Skip to content

2.15.0

Latest
Compare
Choose a tag to compare
@ewjoachim ewjoachim released this 19 Oct 11:47
· 14 commits to main since this release
98fd11e

Migrations

02.14.01_01_add_indexes_for_fetch_job.sql

Note

The new indexes will block the table while they are being built. Unless you have millions of jobs in the table, it should not be a problem, but you may want to create the index concurrently if you can. Note that you cant create an index concurrently in a transaction, which is why the migration code we suggested doesn't use the CONCURRENTLY keyword. To create the index concurrently, replace CREATE INDEX in the migration code with CREATE INDEX CONCURRENTLY.

What's Changed

Bug Fixes

Full Changelog: 2.14.1...2.15.0