Fix wrong usage of PERFORM in update test script

PERFORM can only be used in PLpgSQL context and not SQL context.
This commit is contained in:
Sven Klemm 2024-02-02 13:09:51 +01:00 committed by Sven Klemm
parent 3296084aa5
commit 9e737bc528

View File

@ -2,7 +2,7 @@
-- Please see the included NOTICE for copyright information and
-- LICENSE-APACHE for a copy of the license.
PERFORM remove_reorder_policy('policy_test_timestamptz');
PERFORM remove_retention_policy('policy_test_timestamptz');
PERFORM remove_compression_policy('policy_test_timestamptz');
SELECT remove_reorder_policy('policy_test_timestamptz');
SELECT remove_retention_policy('policy_test_timestamptz');
SELECT remove_compression_policy('policy_test_timestamptz');