Skip to content

Commit 0380670

Browse files
authored
pgvectorscale: Update the Postgres version pre-check (#796)
With the release of pgvectorscale v0.4.0, the minimum supported version of PostgreSQL 13
1 parent 5f58d90 commit 0380670

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

automation/roles/pre-checks/tasks/extensions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
ansible.builtin.fail:
1919
msg:
2020
- "The current PostgreSQL version ({{ postgresql_version }}) is not supported by the pgvectorscale."
21-
- "PostgreSQL version must be {{ pgvectorscale_minimal_pg_version | default(15) }} or higher."
21+
- "PostgreSQL version must be {{ pgvectorscale_minimal_pg_version | default(13) }} or higher."
2222
when:
2323
- enable_pgvectorscale | default(false) | bool
24-
- postgresql_version | string is version(pgvectorscale_minimal_pg_version | default(15) | string, '<')
24+
- postgresql_version | string is version(pgvectorscale_minimal_pg_version | default(13) | string, '<')
2525

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

0 commit comments

Comments
 (0)