Rollbacks drop statements

pull/7204/head
gindibay 2023-09-18 14:19:51 +03:00
parent 7e1697e90c
commit 6b9b12e8ae
2 changed files with 0 additions and 5 deletions

View File

@ -166,7 +166,3 @@ SELECT create_reference_table('users_reference_table');
(1 row)
INSERT INTO users_reference_table SELECT * FROM users_table;
DROP SCHEMA IF EXISTS with_basics CASCADE;
NOTICE: drop cascades to 2 other objects
DETAIL: drop cascades to table with_basics.users_table
drop cascades to table with_basics.events_table

View File

@ -117,5 +117,4 @@ CREATE TABLE users_reference_table (like users_table including all);
SELECT create_reference_table('users_reference_table');
INSERT INTO users_reference_table SELECT * FROM users_table;
DROP SCHEMA IF EXISTS with_basics CASCADE;