Skip to content

Commit

Permalink
pgvectorscale: Update the Postgres version pre-check (#796)
Browse files Browse the repository at this point in the history
With the release of pgvectorscale v0.4.0, the minimum supported version of PostgreSQL 13
  • Loading branch information
vitabaks authored Oct 23, 2024
1 parent 5f58d90 commit 0380670
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions automation/roles/pre-checks/tasks/extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
ansible.builtin.fail:
msg:
- "The current PostgreSQL version ({{ postgresql_version }}) is not supported by the pgvectorscale."
- "PostgreSQL version must be {{ pgvectorscale_minimal_pg_version | default(15) }} or higher."
- "PostgreSQL version must be {{ pgvectorscale_minimal_pg_version | default(13) }} or higher."
when:
- enable_pgvectorscale | default(false) | bool
- postgresql_version | string is version(pgvectorscale_minimal_pg_version | default(15) | string, '<')
- postgresql_version | string is version(pgvectorscale_minimal_pg_version | default(13) | string, '<')

- name: Timescale (pgvectorscale) | Checking supported operating system and version
run_once: true
Expand Down

0 comments on commit 0380670

Please sign in to comment.