8000 fix for PG-1587 · percona/postgres@f636e82 · GitHub
[go: up one dir, main page]

Skip to content

Commit f636e82

Browse files
committed
fix for PG-1587
updated default value to false, from true
1 parent 1e61a45 commit f636e82

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contrib/pg_tde/documentation/docs/functions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2 9629 04,14 +204,14 @@ SELECT pg_tde_set_key_using_database_key_provider('name-of-the-key','provider-na
204204
Creates or rotates the global principal key using the specified global key provider and the key name. This key is used for global settings like WAL encryption.
205205

206206
```sql
207-
SELECT pg_tde_set_key_using_global_key_provider('name-of-the-key','provider-name','ensure_new_key');
207+
SELECT pg_tde_set_key_using_global_key_provider('name-of-the-key','provider-name','ensure_new_key');
208208
```
209209

210210
The `ensure_new_key` parameter instructs the function how to handle a principal key during key rotation:
211211

212-
* If set to `true` (default), a new key must be unique.
212+
* If set to `true`, a new key must be unique.
213213
If the provider already stores a key by that name, the function returns an error.
214-
* If set to `false`, an existing principal key may be reused.
214+
* If set to `false` (default), an existing principal key may be reused.
215215

216216
### pg_tde_set_server_key_using_global_key_provider
217217

0 commit comments

Comments
 (0)
0