@@ -9,7 +9,7 @@ const baseExtensions: Extension[] = [
9
9
- single-precision, half-precision, binary, and sparse vectors
10
10
- L2 distance, inner product, cosine distance, L1 distance, Hamming distance, and Jaccard distance
11
11
` ,
12
- shortDescription : " Open-source vector similarity search for Postgres." ,
12
+ shortDescription : ' Open-source vector similarity search for Postgres.' ,
13
13
featured : true ,
14
14
repo : 'https://github.com/pgvector/pgvector' ,
15
15
tags : [ 'postgres extension' ] ,
@@ -40,7 +40,8 @@ const baseExtensions: Extension[] = [
40
40
adminpack provides a number of support functions which pgAdmin and other
41
41
administration and management tools can use to provide additional functionality
42
42
` ,
43
- shortDescription : "Support functions for pgAdmin and other administration tools." ,
43
+ shortDescription :
44
+ 'Support functions for pgAdmin and other administration tools.' ,
44
45
docs : 'https://www.postgresql.org/docs/current/adminpack.html' ,
45
46
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
46
47
importPath : '@electric-sql/pglite/contrib/adminpack' ,
@@ -54,7 +55,7 @@ const baseExtensions: Extension[] = [
54
55
The amcheck module provides functions that allow you to verify the logical
55
56
consistency of the structure of relations.
56
57
` ,
57
- shortDescription : " Verify the logical consistency of relations." ,
58
+ shortDescription : ' Verify the logical consistency of relations.' ,
58
59
docs : 'https://www.postgresql.org/docs/current/amcheck.html' ,
59
60
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
60
61
importPath : '@electric-sql/pglite/contrib/amcheck' ,
@@ -68,7 +69,7 @@ const baseExtensions: Extension[] = [
68
69
The auto_explain module provides a means for logging execution plans of slow
69
70
statements automatically, without having to run EXPLAIN by hand.
70
71
` ,
71
- shortDescription : " Log execution plans of slow statements automatically." ,
72
+ shortDescription : ' Log execution plans of slow statements automatically.' ,
72
73
docs : 'https://www.postgresql.org/docs/current/auto-explain.html' ,
73
74
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
74
75
importPath : '@electric-sql/pglite/contrib/auto_explain' ,
@@ -85,7 +86,7 @@ const baseExtensions: Extension[] = [
85
86
allows fast exclusion of non-matching tuples via signatures whose size is
86
87
determined at index creation.
87
88
` ,
88
- shortDescription : " Index access method based on Bloom filters." ,
89
+ shortDescription : ' Index access method based on Bloom filters.' ,
89
90
repo : 'https://www.postgresql.org/docs/current/bloom.html' ,
90
91
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
91
92
importPath : '@electric-sql/pglite/contrib/bloom' ,
@@ -99,7 +100,7 @@ const baseExtensions: Extension[] = [
99
100
btree_gin provides GIN operator classes that implement B-tree equivalent
100
101
behavior for many built in data types.
101
102
` ,
102
- shortDescription : " GIN operator classes that implement B-tree behavior." ,
103
+ shortDescription : ' GIN operator classes that implement B-tree behavior.' ,
103
104
docs : 'https://www.postgresql.org/docs/current/btree-gin.html' ,
104
105
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
105
106
importPath : '@electric-sql/pglite/contrib/btree_gin' ,
@@ -113,7 +114,7 @@ const baseExtensions: Extension[] = [
113
114
btree_gist provides GiST operator classes that implement B-tree equivalent
114
115
behavior for many built in data types.
115
116
` ,
116
- shortDescription : " GiST operator classes that implement B-tree behavior." ,
117
+ shortDescription : ' GiST operator classes that implement B-tree behavior.' ,
117
118
docs : 'https://www.postgresql.org/docs/current/btree-gist.html' ,
118
119
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
119
120
importPath : '@electric-sql/pglite/contrib/btree_gist' ,
@@ -128,7 +129,7 @@ const baseExtensions: Extension[] = [
128
129
it internally calls lower when comparing values. Otherwise, it behaves almost
129
130
the same as text.
130
131
` ,
131
- shortDescription : " Case-insensitive character string type." ,
132
+ shortDescription : ' Case-insensitive character string type.' ,
132
133
docs : 'https://www.postgresql.org/docs/current/citext.html' ,
133
134
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
134
135
importPath : '@electric-sql/pglite/contrib/citext' ,
@@ -141,7 +142,7 @@ const baseExtensions: Extension[] = [
141
142
description : `
142
143
cube provides a data type cube for representing multidimensional cubes.
143
144
` ,
144
- shortDescription : " Multidimensional cubes data type." ,
145
+ shortDescription : ' Multidimensional cubes data type.' ,
145
146
docs : 'https://www.postgresql.org/docs/current/cube.html' ,
146
147
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
147
148
importPath : '@electric-sql/pglite/contrib/cube' ,
@@ -155,7 +156,7 @@ const baseExtensions: Extension[] = [
155
156
The earthdistance module provides tools for calculating great circle distances
156
157
on the surface of the Earth.
157
158
` ,
158
- shortDescription : " Calculate great circle distances on the Earth." ,
159
+ shortDescription : ' Calculate great circle distances on the Earth.' ,
159
160
docs : 'https://www.postgresql.org/docs/current/earthdistance.html' ,
160
161
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
161
162
importPath : '@electric-sql/pglite/contrib/earthdistance' ,
@@ -169,7 +170,7 @@ const baseExtensions: Extension[] = [
169
170
fuzzystrmatch provides functions to determine similarities and distance
170
171
between strings.
171
172
` ,
172
- shortDescription : " Determine similarities and distance between strings." ,
173
+ shortDescription : ' Determine similarities and distance between strings.' ,
173
174
docs : 'https://www.postgresql.org/docs/current/fuzzystrmatch.html' ,
174
175
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
175
176
importPath : '@electric-sql/pglite/contrib/fuzzystrmatch' ,
@@ -185,7 +186,7 @@ const baseExtensions: Extension[] = [
185
186
such as rows with many attributes that are rarely examined, or semi-structured
186
187
data. Keys and values are simply text strings.
187
188
` ,
188
- shortDescription : " Key/value pairs data type." ,
189
+ shortDescription : ' Key/value pairs data type.' ,
189
190
docs : 'https://www.postgresql.org/docs/current/hstore.html' ,
190
191
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
191
192
importPath : '@electric-sql/pglite/contrib/hstore' ,
@@ -199,7 +200,7 @@ const baseExtensions: Extension[] = [
199
200
The isn module provides data types for the following international product
200
201
numbering standards: EAN13, UPC, ISBN (books), ISMN (music), and ISSN (serials).
201
202
` ,
202
- shortDescription : " International product numbering standards data types." ,
203
+ shortDescription : ' International product numbering standards data types.' ,
203
204
docs : 'https://www.postgresql.org/docs/current/isn.html' ,
204
205
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
205
206
importPath : '@electric-sql/pglite/contrib/isn' ,
@@ -213,7 +214,7 @@ const baseExtensions: Extension[] = [
213
214
The lo module provides support for managing Large Objects (also called LOs
214
215
or BLOBs). This includes a data type lo and a trigger lo_manage.
215
216
` ,
216
- shortDescription : " Support for managing Large Objects." ,
217
+ shortDescription : ' Support for managing Large Objects.' ,
217
218
docs : 'https://www.postgresql.org/docs/current/lo.html' ,
218
219
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
219
220
importPath : '@electric-sql/pglite/contrib/lo' ,
@@ -228,7 +229,7 @@ const baseExtensions: Extension[] = [
228
229
in a hierarchical tree-like structure. Extensive facilities for searching through
229
230
label trees are provided.
230
231
` ,
231
- shortDescription : " Hierarchical tree-like structure data type." ,
232
+ shortDescription : ' Hierarchical tree-like structure data type.' ,
232
233
docs : 'https://www.postgresql.org/docs/current/ltree.html' ,
233
234
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
234
235
importPath : '@electric-sql/pglite/contrib/ltree' ,
@@ -243,7 +244,7 @@ const baseExtensions: Extension[] = [
243
244
of alphanumeric text based on trigram matching, as well as index operator classes
244
245
that support fast searching for similar strings.
245
246
` ,
246
- shortDescription : " Text similarity functions and operators." ,
247
+ shortDescription : ' Text similarity functions and operators.' ,
247
248
docs : 'https://www.postgresql.org/docs/current/pgtrgm.html' ,
248
249
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
249
250
importPath : '@electric-sql/pglite/contrib/pg_trgm' ,
@@ -258,7 +259,7 @@ const baseExtensions: Extension[] = [
258
259
floating point intervals. seg can represent uncertainty in the interval endpoints,
259
260
making it especially useful for representing laboratory measurements.
260
261
` ,
261
- shortDescription : " Line segments data types." ,
262
+ shortDescription : ' Line segments data types.' ,
262
263
docs : 'https://www.postgresql.org/docs/current/seg.html' ,
263
264
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
264
265
importPath : '@electric-sql/pglite/contrib/seg' ,
@@ -273,7 +274,7 @@ const baseExtensions: Extension[] = [
273
274
multiple rows). These functions are useful both in their own right and as
274
275
examples of how to write C functions that return multiple rows.
275
276
` ,
276
- shortDescription : " Functions that return tables." ,
277
+ shortDescription : ' Functions that return tables.' ,
277
278
docs : 'https://www.postgresql.org/docs/current/tablefunc.html' ,
278
279
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
279
280
importPath : '@electric-sql/pglite/contrib/tablefunc' ,
@@ -288,7 +289,7 @@ const baseExtensions: Extension[] = [
288
289
any table on which it is attached. It must be used as an AFTER trigger
289
290
FOR EACH ROW.
290
291
` ,
291
- shortDescription : " Trigger function that notifies listeners of changes." ,
292
+ shortDescription : ' Trigger function that notifies listeners of changes.' ,
292
293
docs : 'https://www.postgresql.org/docs/current/tcn.html' ,
293
294
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
294
295
importPath : '@electric-sql/pglite/contrib/tcn' ,
@@ -302,7 +303,7 @@ const baseExtensions: Extension[] = [
302
303
The tsm_system_rows module provides the table sampling method SYSTEM_ROWS, which
303
304
can be used in the TABLESAMPLE clause of a SELECT command.
304
305
` ,
305
- shortDescription : " Table sampling method SYSTEM_ROWS." ,
306
+ shortDescription : ' Table sampling method SYSTEM_ROWS.' ,
306
307
docs : 'https://www.postgresql.org/docs/current/tsm-system-rows.html' ,
307
308
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
308
309
importPath : '@electric-sql/pglite/contrib/tsm_system_rows' ,
@@ -316,7 +317,7 @@ const baseExtensions: Extension[] = [
316
317
The tsm_system_time module provides the table sampling method SYSTEM_TIME, which
317
318
can be used in the TABLESAMPLE clause of a SELECT command.
318
319
` ,
319
- shortDescription : " Table sampling method SYSTEM_TIME." ,
320
+ shortDescription : ' Table sampling method SYSTEM_TIME.' ,
320
321
docs : 'https://www.postgresql.org/docs/current/tsm-system-time.html' ,
321
322
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
322
323
importPath : '@electric-sql/pglite/contrib/tsm_system_time' ,
@@ -331,7 +332,7 @@ const baseExtensions: Extension[] = [
331
332
functions to produce certain special UUID constants. This module is only
332
333
necessary for special requirements beyond what is available in core PostgreSQL.
333
334
` ,
334
- shortDescription : " Aditional functions for generating UUIDs." ,
335
+ shortDescription : ' Aditional functions for generating UUIDs.' ,
335
336
docs : 'https://www.postgresql.org/docs/current/uuid-ossp.html' ,
336
337
tags : [ 'postgres extension' , 'postgres/contrib' ] ,
337
338
importPath : '@electric-sql/pglite/contrib/uuid_ossp' ,
0 commit comments