File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ Unmodified Postgres with some useful plugins. Our goal with this repo is not to
45
45
| [ vault] ( https://github.com/supabase/vault ) | [ 0.2.9] ( https://github.com/supabase/vault/releases/tag/v0.2.9 ) | Store encrypted secrets in PostgreSQL |
46
46
| [ wal2json] ( https://github.com/supabase/wal2json ) | [ 2_6] ( https://github.com/supabase/wal2json/releases/tag/v2_6 ) | PostgreSQL JSON output plugin for changeset extraction |
47
47
48
- ### PostgreSQL 17 Extensions
48
+ ### PostgreSQL orioledb- 17 Extensions
49
49
| Extension | Version | Description |
50
50
| ------------- | :-------------: | ------------- |
51
51
| [ hypopg] ( https://github.com/supabase/hypopg ) | [ 1.4.1] ( https://github.com/supabase/hypopg/releases/tag/v1.4.1 ) | Hypothetical Indexes for PostgreSQL |
Original file line number Diff line number Diff line change @@ -107,11 +107,15 @@ def create_version_link [pg_info] {
107
107
}
108
108
109
109
def create_ext_table [extensions , pg_info ] {
110
- let major_version = ($pg_info.version | split row " ." | first )
110
+ let header_version = if $pg_info.is_orioledb {
111
+ $" orioledb-($pg_info.version )" # Add orioledb prefix for orioledb versions
112
+ } else {
113
+ $pg_info.version
114
+ }
111
115
112
116
let header = [
113
117
" " , # blank line for spacing
114
- $" ### PostgreSQL ($major_version ) Extensions" ,
118
+ $" ### PostgreSQL ($header_version ) Extensions" ,
115
119
" | Extension | Version | Description |" ,
116
120
" | ------------- | :-------------: | ------------- |"
117
121
]
You can’t perform that action at this time.
0 commit comments