Skip to content

Commit 39815ca

Browse files
Merge pull request #4495 from ovh/develop
Develop -> Master
2 parents bf7daa8 + 3101a72 commit 39815ca

File tree

23 files changed

+1307
-399
lines changed

23 files changed

+1307
-399
lines changed

pages/platform/databases/postgresql_02_extensions/guide.de-de.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,43 @@ Also some extensions may require disconnecting the client connection and reconne
7575
| `uuid-ossp` | <https://www.postgresql.org/docs/current/uuid-ossp.html> | |
7676
| `wal2json` | <https://github.com/eulerto/wal2json> | PostgreSQL 10 and newer |
7777

78+
## Install an extension
79+
80+
You can list available extensions
81+
82+
```sql
83+
defaultdb=> SELECT * FROM pg_available_extensions;
84+
name | default_version | installed_version | comment
85+
------------------------------+-----------------+-------------------+--------------------------------------------------------------------------------------------------------------------
86+
address_standardizer | 3.2.4 | | Used to parse an address into constituent elements. Generally used to support geocoding address normalization step.
87+
address_standardizer_data_us | 3.2.4 | | Address Standardizer US dataset example
88+
aiven_extras | 1.1.8 | | aiven_extras
89+
aiven_gatekeeper | 1.0.0 | | Aiven standard security library
90+
[...]
91+
(71 rows)
92+
```
93+
94+
Install an available extension
95+
96+
```sql
97+
defaultdb=> CREATE EXTENSION IF NOT EXISTS extension_name
98+
CREATE EXTENSION
99+
```
100+
101+
Check installed extensions:
102+
103+
```sql
104+
defaultdb=> \dx
105+
List of installed extensions
106+
Name | Version | Schema | Description
107+
--------------+---------+--------------+------------------------------
108+
aiven_extras | 1.1.8 | aiven_extras | aiven_extras
109+
pg_cron | 1.4-1 | public | Job scheduler for PostgreSQL
110+
plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
111+
112+
-- In this example, aiven_extras and pg_cron are installed. plpgsql is installed by default.
113+
```
114+
78115
## We want your feedback!
79116

80117
We would love to help answer questions and appreciate any feedback you may have.

pages/platform/databases/postgresql_02_extensions/guide.en-asia.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,43 @@ Also some extensions may require disconnecting the client connection and reconne
7373
| `uuid-ossp` | <https://www.postgresql.org/docs/current/uuid-ossp.html> | |
7474
| `wal2json` | <https://github.com/eulerto/wal2json> | PostgreSQL 10 and newer |
7575

76+
## Install an extension
77+
78+
You can list available extensions
79+
80+
```sql
81+
defaultdb=> SELECT * FROM pg_available_extensions;
82+
name | default_version | installed_version | comment
83+
------------------------------+-----------------+-------------------+--------------------------------------------------------------------------------------------------------------------
84+
address_standardizer | 3.2.4 | | Used to parse an address into constituent elements. Generally used to support geocoding address normalization step.
85+
address_standardizer_data_us | 3.2.4 | | Address Standardizer US dataset example
86+
aiven_extras | 1.1.8 | | aiven_extras
87+
aiven_gatekeeper | 1.0.0 | | Aiven standard security library
88+
[...]
89+
(71 rows)
90+
```
91+
92+
Install an available extension
93+
94+
```sql
95+
defaultdb=> CREATE EXTENSION IF NOT EXISTS extension_name
96+
CREATE EXTENSION
97+
```
98+
99+
Check installed extensions:
100+
101+
```sql
102+
defaultdb=> \dx
103+
List of installed extensions
104+
Name | Version | Schema | Description
105+
--------------+---------+--------------+------------------------------
106+
aiven_extras | 1.1.8 | aiven_extras | aiven_extras
107+
pg_cron | 1.4-1 | public | Job scheduler for PostgreSQL
108+
plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
109+
110+
-- In this example, aiven_extras and pg_cron are installed. plpgsql is installed by default.
111+
```
112+
76113
## We want your feedback!
77114

78115
We would love to help answer questions and appreciate any feedback you may have.

pages/platform/databases/postgresql_02_extensions/guide.en-au.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,43 @@ Also some extensions may require disconnecting the client connection and reconne
7373
| `uuid-ossp` | <https://www.postgresql.org/docs/current/uuid-ossp.html> | |
7474
| `wal2json` | <https://github.com/eulerto/wal2json> | PostgreSQL 10 and newer |
7575

76+
## Install an extension
77+
78+
You can list available extensions
79+
80+
```sql
81+
defaultdb=> SELECT * FROM pg_available_extensions;
82+
name | default_version | installed_version | comment
83+
------------------------------+-----------------+-------------------+--------------------------------------------------------------------------------------------------------------------
84+
address_standardizer | 3.2.4 | | Used to parse an address into constituent elements. Generally used to support geocoding address normalization step.
85+
address_standardizer_data_us | 3.2.4 | | Address Standardizer US dataset example
86+
aiven_extras | 1.1.8 | | aiven_extras
87+
aiven_gatekeeper | 1.0.0 | | Aiven standard security library
88+
[...]
89+
(71 rows)
90+
```
91+
92+
Install an available extension
93+
94+
```sql
95+
defaultdb=> CREATE EXTENSION IF NOT EXISTS extension_name
96+
CREATE EXTENSION
97+
```
98+
99+
Check installed extensions:
100+
101+
```sql
102+
defaultdb=> \dx
103+
List of installed extensions
104+
Name | Version | Schema | Description
105+
--------------+---------+--------------+------------------------------
106+
aiven_extras | 1.1.8 | aiven_extras | aiven_extras
107+
pg_cron | 1.4-1 | public | Job scheduler for PostgreSQL
108+
plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
109+
110+
-- In this example, aiven_extras and pg_cron are installed. plpgsql is installed by default.
111+
```
112+
76113
## We want your feedback!
77114

78115
We would love to help answer questions and appreciate any feedback you may have.

pages/platform/databases/postgresql_02_extensions/guide.en-ca.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,43 @@ Also some extensions may require disconnecting the client connection and reconne
7373
| `uuid-ossp` | <https://www.postgresql.org/docs/current/uuid-ossp.html> | |
7474
| `wal2json` | <https://github.com/eulerto/wal2json> | PostgreSQL 10 and newer |
7575

76+
## Install an extension
77+
78+
You can list available extensions
79+
80+
```sql
81+
defaultdb=> SELECT * FROM pg_available_extensions;
82+
name | default_version | installed_version | comment
83+
------------------------------+-----------------+-------------------+--------------------------------------------------------------------------------------------------------------------
84+
address_standardizer | 3.2.4 | | Used to parse an address into constituent elements. Generally used to support geocoding address normalization step.
85+
address_standardizer_data_us | 3.2.4 | | Address Standardizer US dataset example
86+
aiven_extras | 1.1.8 | | aiven_extras
87+
aiven_gatekeeper | 1.0.0 | | Aiven standard security library
88+
[...]
89+
(71 rows)
90+
```
91+
92+
Install an available extension
93+
94+
```sql
95+
defaultdb=> CREATE EXTENSION IF NOT EXISTS extension_name
96+
CREATE EXTENSION
97+
```
98+
99+
Check installed extensions:
100+
101+
```sql
102+
defaultdb=> \dx
103+
List of installed extensions
104+
Name | Version | Schema | Description
105+
--------------+---------+--------------+------------------------------
106+
aiven_extras | 1.1.8 | aiven_extras | aiven_extras
107+
pg_cron | 1.4-1 | public | Job scheduler for PostgreSQL
108+
plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
109+
110+
-- In this example, aiven_extras and pg_cron are installed. plpgsql is installed by default.
111+
```
112+
76113
## We want your feedback!
77114

78115
We would love to help answer questions and appreciate any feedback you may have.

pages/platform/databases/postgresql_02_extensions/guide.en-gb.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,43 @@ Also some extensions may require disconnecting the client connection and reconne
7373
| `uuid-ossp` | <https://www.postgresql.org/docs/current/uuid-ossp.html> | |
7474
| `wal2json` | <https://github.com/eulerto/wal2json> | PostgreSQL 10 and newer |
7575

76+
## Install an extension
77+
78+
You can list available extensions
79+
80+
```sql
81+
defaultdb=> SELECT * FROM pg_available_extensions;
82+
name | default_version | installed_version | comment
83+
------------------------------+-----------------+-------------------+--------------------------------------------------------------------------------------------------------------------
84+
address_standardizer | 3.2.4 | | Used to parse an address into constituent elements. Generally used to support geocoding address normalization step.
85+
address_standardizer_data_us | 3.2.4 | | Address Standardizer US dataset example
86+
aiven_extras | 1.1.8 | | aiven_extras
87+
aiven_gatekeeper | 1.0.0 | | Aiven standard security library
88+
[...]
89+
(71 rows)
90+
```
91+
92+
Install an available extension
93+
94+
```sql
95+
defaultdb=> CREATE EXTENSION IF NOT EXISTS extension_name
96+
CREATE EXTENSION
97+
```
98+
99+
Check installed extensions:
100+
101+
```sql
102+
defaultdb=> \dx
103+
List of installed extensions
104+
Name | Version | Schema | Description
105+
--------------+---------+--------------+------------------------------
106+
aiven_extras | 1.1.8 | aiven_extras | aiven_extras
107+
pg_cron | 1.4-1 | public | Job scheduler for PostgreSQL
108+
plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
109+
110+
-- In this example, aiven_extras and pg_cron are installed. plpgsql is installed by default.
111+
```
112+
76113
## We want your feedback!
77114

78115
We would love to help answer questions and appreciate any feedback you may have.

pages/platform/databases/postgresql_02_extensions/guide.en-ie.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,43 @@ Also some extensions may require disconnecting the client connection and reconne
7373
| `uuid-ossp` | <https://www.postgresql.org/docs/current/uuid-ossp.html> | |
7474
| `wal2json` | <https://github.com/eulerto/wal2json> | PostgreSQL 10 and newer |
7575

76+
## Install an extension
77+
78+
You can list available extensions
79+
80+
```sql
81+
defaultdb=> SELECT * FROM pg_available_extensions;
82+
name | default_version | installed_version | comment
83+
------------------------------+-----------------+-------------------+--------------------------------------------------------------------------------------------------------------------
84+
address_standardizer | 3.2.4 | | Used to parse an address into constituent elements. Generally used to support geocoding address normalization step.
85+
address_standardizer_data_us | 3.2.4 | | Address Standardizer US dataset example
86+
aiven_extras | 1.1.8 | | aiven_extras
87+
aiven_gatekeeper | 1.0.0 | | Aiven standard security library
88+
[...]
89+
(71 rows)
90+
```
91+
92+
Install an available extension
93+
94+
```sql
95+
defaultdb=> CREATE EXTENSION IF NOT EXISTS extension_name
96+
CREATE EXTENSION
97+
```
98+
99+
Check installed extensions:
100+
101+
```sql
102+
defaultdb=> \dx
103+
List of installed extensions
104+
Name | Version | Schema | Description
105+
--------------+---------+--------------+------------------------------
106+
aiven_extras | 1.1.8 | aiven_extras | aiven_extras
107+
pg_cron | 1.4-1 | public | Job scheduler for PostgreSQL
108+
plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
109+
110+
-- In this example, aiven_extras and pg_cron are installed. plpgsql is installed by default.
111+
```
112+
76113
## We want your feedback!
77114

78115
We would love to help answer questions and appreciate any feedback you may have.

pages/platform/databases/postgresql_02_extensions/guide.en-sg.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,43 @@ Also some extensions may require disconnecting the client connection and reconne
7373
| `uuid-ossp` | <https://www.postgresql.org/docs/current/uuid-ossp.html> | |
7474
| `wal2json` | <https://github.com/eulerto/wal2json> | PostgreSQL 10 and newer |
7575

76+
## Install an extension
77+
78+
You can list available extensions
79+
80+
```sql
81+
defaultdb=> SELECT * FROM pg_available_extensions;
82+
name | default_version | installed_version | comment
83+
------------------------------+-----------------+-------------------+--------------------------------------------------------------------------------------------------------------------
84+
address_standardizer | 3.2.4 | | Used to parse an address into constituent elements. Generally used to support geocoding address normalization step.
85+
address_standardizer_data_us | 3.2.4 | | Address Standardizer US dataset example
86+
aiven_extras | 1.1.8 | | aiven_extras
87+
aiven_gatekeeper | 1.0.0 | | Aiven standard security library
88+
[...]
89+
(71 rows)
90+
```
91+
92+
Install an available extension
93+
94+
```sql
95+
defaultdb=> CREATE EXTENSION IF NOT EXISTS extension_name
96+
CREATE EXTENSION
97+
```
98+
99+
Check installed extensions:
100+
101+
```sql
102+
defaultdb=> \dx
103+
List of installed extensions
104+
Name | Version | Schema | Description
105+
--------------+---------+--------------+------------------------------
106+
aiven_extras | 1.1.8 | aiven_extras | aiven_extras
107+
pg_cron | 1.4-1 | public | Job scheduler for PostgreSQL
108+
plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
109+
110+
-- In this example, aiven_extras and pg_cron are installed. plpgsql is installed by default.
111+
```
112+
76113
## We want your feedback!
77114

78115
We would love to help answer questions and appreciate any feedback you may have.

pages/platform/databases/postgresql_02_extensions/guide.en-us.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,43 @@ Also some extensions may require disconnecting the client connection and reconne
7373
| `uuid-ossp` | <https://www.postgresql.org/docs/current/uuid-ossp.html> | |
7474
| `wal2json` | <https://github.com/eulerto/wal2json> | PostgreSQL 10 and newer |
7575

76+
## Install an extension
77+
78+
You can list available extensions
79+
80+
```sql
81+
defaultdb=> SELECT * FROM pg_available_extensions;
82+
name | default_version | installed_version | comment
83+
------------------------------+-----------------+-------------------+--------------------------------------------------------------------------------------------------------------------
84+
address_standardizer | 3.2.4 | | Used to parse an address into constituent elements. Generally used to support geocoding address normalization step.
85+
address_standardizer_data_us | 3.2.4 | | Address Standardizer US dataset example
86+
aiven_extras | 1.1.8 | | aiven_extras
87+
aiven_gatekeeper | 1.0.0 | | Aiven standard security library
88+
[...]
89+
(71 rows)
90+
```
91+
92+
Install an available extension
93+
94+
```sql
95+
defaultdb=> CREATE EXTENSION IF NOT EXISTS extension_name
96+
CREATE EXTENSION
97+
```
98+
99+
Check installed extensions:
100+
101+
```sql
102+
defaultdb=> \dx
103+
List of installed extensions
104+
Name | Version | Schema | Description
105+
--------------+---------+--------------+------------------------------
106+
aiven_extras | 1.1.8 | aiven_extras | aiven_extras
107+
pg_cron | 1.4-1 | public | Job scheduler for PostgreSQL
108+
plpgsql | 1.0 | pg_catalog | PL/pgSQL procedural language
109+
110+
-- In this example, aiven_extras and pg_cron are installed. plpgsql is installed by default.
111+
```
112+
76113
## We want your feedback!
77114

78115
We would love to help answer questions and appreciate any feedback you may have.

0 commit comments

Comments
 (0)