Make sure we have tests which fetch KMIP and Vault keys

Before this we had no coverage of the code path for successfully
fetching a KMIP key from the key provider.
This commit is contained in:
Andreas Karlsson 2025-04-16 10:32:27 +02:00 committed by Andreas Karlsson
parent 44c3619f5e
commit 033f7cae77
4 changed files with 16 additions and 0 deletions

View File

@ -27,5 +27,11 @@ SELECT * from test_enc;
3 | 3
(3 rows)
SELECT pg_tde_verify_key();
pg_tde_verify_key
-------------------
(1 row)
DROP TABLE test_enc;
DROP EXTENSION pg_tde;

View File

@ -44,5 +44,11 @@ SELECT * from test_enc;
3 | 3
(3 rows)
SELECT pg_tde_verify_key();
pg_tde_verify_key
-------------------
(1 row)
DROP TABLE test_enc;
DROP EXTENSION pg_tde;

View File

@ -15,6 +15,8 @@ INSERT INTO test_enc (k) VALUES (3);
SELECT * from test_enc;
SELECT pg_tde_verify_key();
DROP TABLE test_enc;
DROP EXTENSION pg_tde;

View File

@ -27,6 +27,8 @@ INSERT INTO test_enc (k) VALUES (3);
SELECT * from test_enc;
SELECT pg_tde_verify_key();
DROP TABLE test_enc;
DROP EXTENSION pg_tde;