Skip to content

Commit

Permalink
Fix a typo about tablespace
Browse files Browse the repository at this point in the history
This commit also adds a blank line to improve the readability of the
installation steps.
  • Loading branch information
japinli committed Sep 2, 2024
1 parent 0586660 commit eb0ae83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ FUNCTION pg_tde_add_key_provider_file(
SELECT pg_tde_add_key_provider_file('file','/tmp/pgkeyring');
```
**Note: The `File` provided is intended for development and stores the keys unencrypted in the specified data file.**

6. Set the principal key for the database using the `pg_tde_set_principal_key` function.
```sql
FUNCTION pg_tde_set_principal_key (
Expand Down
2 changes: 1 addition & 1 deletion pg_tde--1.0.sql
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ RETURNS SETOF record
AS 'MODULE_PATHNAME'
LANGUAGE C STRICT VOLATILE;

-- Global Tblespace Key Provider Management
-- Global Tablespace Key Provider Management
CREATE OR REPLACE FUNCTION pg_tde_add_key_provider(PG_TDE_GLOBAL, provider_type VARCHAR(10), provider_name VARCHAR(128), options JSON)
RETURNS INT
AS $$
Expand Down

0 comments on commit eb0ae83

Please sign in to comment.