You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/postgresql/flexible-server/concepts-extensions.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,7 @@ The following extensions are available in Azure Database for PostgreSQL - Flexib
93
93
> |[earthdistance](https://www.postgresql.org/docs/12/earthdistance.html)| 1.1 | calculate great-circle distances on the surface of the Earth|
94
94
> |[fuzzystrmatch](https://www.postgresql.org/docs/12/fuzzystrmatch.html)| 1.1 | determine similarities and distance between strings|
95
95
> |[hstore](https://www.postgresql.org/docs/12/hstore.html)| 1.6 | data type for storing sets of (key, value) pairs|
96
+
> |[hypopg](https://github.com/HypoPG/hypopg)| 1.2 | extension adding support for hypothetical indexes |
96
97
> |[intagg](https://www.postgresql.org/docs/12/intagg.html)| 1.1 | integer aggregator and enumerator. (Obsolete)|
97
98
> |[intarray](https://www.postgresql.org/docs/12/intarray.html)| 1.2 | functions, operators, and index support for 1-D arrays of integers|
98
99
> |[isn](https://www.postgresql.org/docs/12/isn.html)| 1.2 | data types for international product numbering standards|
@@ -146,6 +147,7 @@ The following extensions are available in Azure Database for PostgreSQL - Flexib
146
147
> |[earthdistance](https://www.postgresql.org/docs/11/earthdistance.html)| 1.1 | calculate great-circle distances on the surface of the Earth|
147
148
> |[fuzzystrmatch](https://www.postgresql.org/docs/11/fuzzystrmatch.html)| 1.1 | determine similarities and distance between strings|
148
149
> |[hstore](https://www.postgresql.org/docs/11/hstore.html)| 1.5 | data type for storing sets of (key, value) pairs|
150
+
> |[hypopg](https://github.com/HypoPG/hypopg)| 1.1.2 | extension adding support for hypothetical indexes |
149
151
> |[intagg](https://www.postgresql.org/docs/11/intagg.html)| 1.1 | integer aggregator and enumerator. (Obsolete)|
150
152
> |[intarray](https://www.postgresql.org/docs/11/intarray.html)| 1.2 | functions, operators, and index support for 1-D arrays of integers|
151
153
> |[isn](https://www.postgresql.org/docs/11/isn.html)| 1.2 | data types for international product numbering standards|
@@ -209,7 +211,8 @@ To unschedule all tasks from pg_cron
209
211
```
210
212
SELECT cron.unschedule(jobid) FROM cron.job;
211
213
```
212
-
214
+
> [!NOTE]
215
+
> pg_cron is preloaded n every Azure Database for PostgreSQL flexible server in postgres database to provide you with ability to schedule jobs to run in other databases within your PostgreSQL DB instance without compromising security.
213
216
## pg_stat_statements
214
217
215
218
The [pg_stat_statements extension](https://www.postgresql.org/docs/current/pgstatstatements.html) is preloaded on every Azure Database for PostgreSQL flexible server to provide you a means of tracking execution statistics of SQL statements.
0 commit comments