You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BEGIN TRANSACTION;
SELECT
pgv_insert('test', 'x', ROW (1::int), TRUE);
--... do some actions ...
-- remove package (!!!)
SELECT
pgv_remove('test');
--... do some other actions ...
-- Error: there is a record in the variable "x" with same key
-- But we deleted the package!!!
SELECT
pgv_insert('test', 'x', ROW (1::int), TRUE);
COMMIT;