From eb0ae83449f96e8fb18f73b198f671d3ffdb754d Mon Sep 17 00:00:00 2001 From: Japin Date: Mon, 2 Sep 2024 14:46:32 +0800 Subject: [PATCH] Fix a typo about tablespace This commit also adds a blank line to improve the readability of the installation steps. --- README.md | 1 + pg_tde--1.0.sql | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7e06de06..894984fb 100644 --- a/README.md +++ b/README.md @@ -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 ( diff --git a/pg_tde--1.0.sql b/pg_tde--1.0.sql index 829ec668..8046c3e9 100644 --- a/pg_tde--1.0.sql +++ b/pg_tde--1.0.sql @@ -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 $$