mirror of
https://github.com/postgres/postgres.git
synced 2025-06-23 14:01:44 +03:00
Make command order in test more sensible
Through several updates, the CREATE USER command has been separated from where the user is actually used in the test.
This commit is contained in:
@ -599,7 +599,6 @@ DROP SEQUENCE seq2;
|
||||
-- should fail
|
||||
SELECT lastval();
|
||||
ERROR: lastval is not yet defined in this session
|
||||
CREATE USER regress_seq_user;
|
||||
-- Test sequences in read-only transactions
|
||||
CREATE TEMPORARY SEQUENCE sequence_test_temp1;
|
||||
START TRANSACTION READ ONLY;
|
||||
@ -623,6 +622,7 @@ SELECT setval('sequence_test2', 1); -- error
|
||||
ERROR: cannot execute setval() in a read-only transaction
|
||||
ROLLBACK;
|
||||
-- privileges tests
|
||||
CREATE USER regress_seq_user;
|
||||
-- nextval
|
||||
BEGIN;
|
||||
SET LOCAL SESSION AUTHORIZATION regress_seq_user;
|
||||
|
@ -272,8 +272,6 @@ DROP SEQUENCE seq2;
|
||||
-- should fail
|
||||
SELECT lastval();
|
||||
|
||||
CREATE USER regress_seq_user;
|
||||
|
||||
-- Test sequences in read-only transactions
|
||||
CREATE TEMPORARY SEQUENCE sequence_test_temp1;
|
||||
START TRANSACTION READ ONLY;
|
||||
@ -287,6 +285,8 @@ ROLLBACK;
|
||||
|
||||
-- privileges tests
|
||||
|
||||
CREATE USER regress_seq_user;
|
||||
|
||||
-- nextval
|
||||
BEGIN;
|
||||
SET LOCAL SESSION AUTHORIZATION regress_seq_user;
|
||||
|
Reference in New Issue
Block a user