-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextensions.json
More file actions
255 lines (255 loc) · 8.92 KB
/
extensions.json
File metadata and controls
255 lines (255 loc) · 8.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
{
"postgresql_major": 18,
"extensions": [
{
"name": "timescaledb",
"package": "timescaledb",
"control_file": "timescaledb.control",
"shared_preload_libraries": ["timescaledb"],
"create_extension": "CREATE EXTENSION IF NOT EXISTS timescaledb;",
"category": "time-series",
"enabled_by_default": false,
"notes": "Required only for databases using TimescaleDB hypertables or compression."
},
{
"name": "pg_stat_statements",
"package": "postgresql_18",
"control_file": "pg_stat_statements.control",
"shared_preload_libraries": ["pg_stat_statements"],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_stat_statements;",
"category": "observability",
"enabled_by_default": false,
"notes": "Core contrib extension available from the PostgreSQL base image."
},
{
"name": "vector",
"package": "pgvector",
"control_file": "vector.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS vector;",
"category": "vector-search",
"enabled_by_default": false,
"notes": "Dense vector type and indexes."
},
{
"name": "vchord",
"package": "vectorchord",
"control_file": "vchord.control",
"shared_preload_libraries": ["vchord"],
"create_extension": "CREATE EXTENSION IF NOT EXISTS vchord;",
"category": "vector-search",
"enabled_by_default": false,
"notes": "VectorChord indexing extension."
},
{
"name": "vchord_bm25",
"package": "vchord-bm25",
"control_file": "vchord_bm25.control",
"shared_preload_libraries": ["vchord_bm25"],
"create_extension": "CREATE EXTENSION IF NOT EXISTS vchord_bm25 CASCADE;",
"category": "sparse-search",
"enabled_by_default": false,
"notes": "BM25 sparse ranking. Usually used with pg_tokenizer."
},
{
"name": "pg_tokenizer",
"package": "pg-tokenizer",
"control_file": "pg_tokenizer.control",
"shared_preload_libraries": ["pg_tokenizer"],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_tokenizer;",
"category": "sparse-search",
"enabled_by_default": false,
"notes": "Tokenizer support for BM25 search."
},
{
"name": "age",
"package": "age",
"control_file": "age.control",
"shared_preload_libraries": ["age"],
"create_extension": "CREATE EXTENSION IF NOT EXISTS age;",
"category": "graph",
"enabled_by_default": false,
"notes": "Apache AGE graph database extension."
},
{
"name": "pgmq",
"package": "pgmq",
"control_file": "pgmq.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pgmq;",
"category": "queue",
"enabled_by_default": false,
"notes": "Postgres-backed message queues."
},
{
"name": "pg_cron",
"package": "pg_cron",
"control_file": "pg_cron.control",
"shared_preload_libraries": ["pg_cron"],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_cron;",
"category": "operations",
"enabled_by_default": false,
"notes": "Requires cron.database_name for the database that owns jobs."
},
{
"name": "pg_repack",
"package": "pg_repack",
"control_file": "pg_repack.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_repack;",
"category": "maintenance",
"enabled_by_default": false,
"notes": "Online table and index reorganization."
},
{
"name": "pg_partman",
"package": "pg_partman",
"control_file": "pg_partman.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_partman;",
"category": "partitioning",
"enabled_by_default": false,
"notes": "Partition management extension."
},
{
"name": "hypopg",
"package": "hypopg",
"control_file": "hypopg.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS hypopg;",
"category": "planning",
"enabled_by_default": false,
"notes": "Hypothetical indexes for query planning."
},
{
"name": "pg_hint_plan",
"package": "pg_hint_plan",
"control_file": "pg_hint_plan.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_hint_plan;",
"category": "planning",
"enabled_by_default": false,
"notes": "Planner hints for exceptional query tuning cases."
},
{
"name": "plpgsql_check",
"package": "plpgsql_check",
"control_file": "plpgsql_check.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS plpgsql_check;",
"category": "development",
"enabled_by_default": false,
"notes": "Static analysis and runtime checks for PL/pgSQL."
},
{
"name": "pg_trgm",
"package": "postgresql_18",
"control_file": "pg_trgm.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_trgm;",
"category": "search",
"enabled_by_default": false,
"notes": "Core contrib trigram indexes and fuzzy text matching."
},
{
"name": "unaccent",
"package": "postgresql_18",
"control_file": "unaccent.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS unaccent;",
"category": "search",
"enabled_by_default": false,
"notes": "Core contrib accent-insensitive text normalization."
},
{
"name": "btree_gin",
"package": "postgresql_18",
"control_file": "btree_gin.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS btree_gin;",
"category": "indexing",
"enabled_by_default": false,
"notes": "Core contrib B-tree operator classes for GIN indexes."
},
{
"name": "btree_gist",
"package": "postgresql_18",
"control_file": "btree_gist.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS btree_gist;",
"category": "indexing",
"enabled_by_default": false,
"notes": "Core contrib B-tree operator classes for GiST indexes."
},
{
"name": "pgstattuple",
"package": "postgresql_18",
"control_file": "pgstattuple.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pgstattuple;",
"category": "maintenance",
"enabled_by_default": false,
"notes": "Core contrib table and index bloat inspection."
},
{
"name": "amcheck",
"package": "postgresql_18",
"control_file": "amcheck.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS amcheck;",
"category": "maintenance",
"enabled_by_default": false,
"notes": "Core contrib index and relation corruption checks."
},
{
"name": "pageinspect",
"package": "postgresql_18",
"control_file": "pageinspect.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pageinspect;",
"category": "diagnostics",
"enabled_by_default": false,
"notes": "Core contrib low-level page inspection for incident debugging."
},
{
"name": "postgres_fdw",
"package": "postgresql_18",
"control_file": "postgres_fdw.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS postgres_fdw;",
"category": "federation",
"enabled_by_default": false,
"notes": "Core contrib foreign data wrapper for PostgreSQL-to-PostgreSQL access."
},
{
"name": "pgcrypto",
"package": "postgresql_18",
"control_file": "pgcrypto.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pgcrypto;",
"category": "security",
"enabled_by_default": false,
"notes": "Core contrib cryptographic helpers and random data functions."
},
{
"name": "pg_prewarm",
"package": "postgresql_18",
"control_file": "pg_prewarm.control",
"shared_preload_libraries": [],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pg_prewarm;",
"category": "operations",
"enabled_by_default": false,
"notes": "Core contrib cache warming for important tables and indexes."
},
{
"name": "pgaudit",
"package": "pgaudit",
"control_file": "pgaudit.control",
"shared_preload_libraries": ["pgaudit"],
"create_extension": "CREATE EXTENSION IF NOT EXISTS pgaudit;",
"category": "security",
"enabled_by_default": false,
"notes": "Detailed database audit logging. Preload and configure only where audit volume is acceptable."
}
]
}