Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sql/021-config-functions.sql
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,9 @@ CREATE FUNCTION cs_encrypt_v1()
RETURNS boolean
AS $$
BEGIN
IF NOT cs_ready_for_encryption_v1() THEN
RAISE EXCEPTION 'Some pending columns do not have an encrypted target';
END IF;
-- IF NOT cs_ready_for_encryption_v1() THEN
-- RAISE EXCEPTION 'Some pending columns do not have an encrypted target';
-- END IF;

IF NOT EXISTS (SELECT FROM cs_configuration_v1 c WHERE c.state = 'pending') THEN
RAISE EXCEPTION 'No pending configuration exists to encrypt';
Expand Down
Loading