Skip to content

Commit

Permalink
add extension: wrappers (PG >=14) (#236)
Browse files Browse the repository at this point in the history
* add supabase_vault to allow for wrappers to use vault
* add pgsodium explicitly
  • Loading branch information
wuputah authored Jan 30, 2024
1 parent faa1889 commit c7e9a26
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 2 deletions.
7 changes: 5 additions & 2 deletions files/spilo/postgres-appliance/scripts/spilo_commons.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@

# (min_version, max_version, shared_preload_libraries, extwlist.extensions)
extensions = {
'columnar': (13, 14, True, True),
'columnar': (13, 16, True, True),
#'timescaledb': (9.6, 14, True, True),
'pg_cron': (9.5, 15, True, True),
'pg_stat_kcache': (9.4, 15, True, False),
'pg_partman': (9.4, 15, False, True)
'pg_partman': (9.4, 15, False, True),
'wrappers': (14, 16, False, True),
'pgsodium': (14, 16, False, True),
'supabase_vault': (14, 16, False, True)
}
if os.environ.get('ENABLE_PG_MON') == 'true':
extensions['pg_mon'] = (11, 15, True, False)
Expand Down
6 changes: 6 additions & 0 deletions third-party/pgxman/pgxman_14.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,9 @@ extensions:
version: "0.5.1"
- name: "pg_hint_plan"
version: "1.4.2"
- name: "wrappers"
version: "0.2.0"
- name: "pgsodium"
version: "3.1.9"
- name: "supabase_vault"
version: "0.2.9"
6 changes: 6 additions & 0 deletions third-party/pgxman/pgxman_14_spilo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,9 @@ extensions:
version: "0.5.1"
- name: "pg_hint_plan"
version: "1.4.2"
- name: "wrappers"
version: "0.2.0"
- name: "pgsodium"
version: "3.1.9"
- name: "supabase_vault"
version: "0.2.9"
6 changes: 6 additions & 0 deletions third-party/pgxman/pgxman_15.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,9 @@ extensions:
version: "0.5.1"
- name: "pg_hint_plan"
version: "1.5.1"
- name: "wrappers"
version: "0.2.0"
- name: "pgsodium"
version: "3.1.9"
- name: "supabase_vault"
version: "0.2.9"
6 changes: 6 additions & 0 deletions third-party/pgxman/pgxman_16.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,9 @@ extensions:
version: "0.5.1"
- name: "pg_hint_plan"
version: "1.6.0"
- name: "wrappers"
version: "0.2.0"
- name: "pgsodium"
version: "3.1.9"
- name: "supabase_vault"
version: "0.2.9"

0 comments on commit c7e9a26

Please sign in to comment.