postgresql/src/test/regress/expected/hs_standby_allowed.out
Tom Lane ebfe20dc70 Allow UNLISTEN in hot-standby mode.
Since LISTEN is (still) disallowed, UNLISTEN must be a no-op in a
hot-standby session, and so there's no harm in allowing it.  This
change allows client code to not worry about whether it's connected
to a primary or standby server when performing session-state-reset
type activities.  (Note that DISCARD ALL, which includes UNLISTEN,
was already allowed, making it inconsistent to reject UNLISTEN.)

Per discussion, back-patch to all supported versions.

Shay Rojansky, reviewed by Mi Tar

Discussion: https://postgr.es/m/CADT4RqCf2gA_TJtPAjnGzkC3ZiexfBZiLmA-mV66e4UyuVv8bA@mail.gmail.com
2019-01-25 21:14:49 -05:00

219 lines
3.1 KiB
Plaintext

--
-- Hot Standby tests
--
-- hs_standby_allowed.sql
--
-- SELECT
select count(*) as should_be_1 from hs1;
should_be_1
-------------
1
(1 row)
select count(*) as should_be_2 from hs2;
should_be_2
-------------
2
(1 row)
select count(*) as should_be_3 from hs3;
should_be_3
-------------
3
(1 row)
COPY hs1 TO '/tmp/copy_test';
\! cat /tmp/copy_test
1
-- Access sequence directly
select is_called from hsseq;
is_called
-----------
f
(1 row)
-- Transactions
begin;
select count(*) as should_be_1 from hs1;
should_be_1
-------------
1
(1 row)
end;
begin transaction read only;
select count(*) as should_be_1 from hs1;
should_be_1
-------------
1
(1 row)
end;
begin transaction isolation level repeatable read;
select count(*) as should_be_1 from hs1;
should_be_1
-------------
1
(1 row)
select count(*) as should_be_1 from hs1;
should_be_1
-------------
1
(1 row)
select count(*) as should_be_1 from hs1;
should_be_1
-------------
1
(1 row)
commit;
begin;
select count(*) as should_be_1 from hs1;
should_be_1
-------------
1
(1 row)
commit;
begin;
select count(*) as should_be_1 from hs1;
should_be_1
-------------
1
(1 row)
abort;
start transaction;
select count(*) as should_be_1 from hs1;
should_be_1
-------------
1
(1 row)
commit;
begin;
select count(*) as should_be_1 from hs1;
should_be_1
-------------
1
(1 row)
rollback;
begin;
select count(*) as should_be_1 from hs1;
should_be_1
-------------
1
(1 row)
savepoint s;
select count(*) as should_be_2 from hs2;
should_be_2
-------------
2
(1 row)
commit;
begin;
select count(*) as should_be_1 from hs1;
should_be_1
-------------
1
(1 row)
savepoint s;
select count(*) as should_be_2 from hs2;
should_be_2
-------------
2
(1 row)
release savepoint s;
select count(*) as should_be_2 from hs2;
should_be_2
-------------
2
(1 row)
savepoint s;
select count(*) as should_be_3 from hs3;
should_be_3
-------------
3
(1 row)
rollback to savepoint s;
select count(*) as should_be_2 from hs2;
should_be_2
-------------
2
(1 row)
commit;
-- SET parameters
-- has no effect on read only transactions, but we can still set it
set synchronous_commit = on;
show synchronous_commit;
synchronous_commit
--------------------
on
(1 row)
reset synchronous_commit;
discard temp;
discard all;
-- CURSOR commands
BEGIN;
DECLARE hsc CURSOR FOR select * from hs3;
FETCH next from hsc;
col1
------
113
(1 row)
fetch first from hsc;
col1
------
113
(1 row)
fetch last from hsc;
col1
------
115
(1 row)
fetch 1 from hsc;
col1
------
(0 rows)
CLOSE hsc;
COMMIT;
-- Prepared plans
PREPARE hsp AS select count(*) from hs1;
PREPARE hsp_noexec (integer) AS insert into hs1 values ($1);
EXECUTE hsp;
count
-------
1
(1 row)
DEALLOCATE hsp;
-- LOCK
BEGIN;
LOCK hs1 IN ACCESS SHARE MODE;
LOCK hs1 IN ROW SHARE MODE;
LOCK hs1 IN ROW EXCLUSIVE MODE;
COMMIT;
-- UNLISTEN
UNLISTEN a;
UNLISTEN *;
-- LOAD
-- should work, easier if there is no test for that...
-- ALLOWED COMMANDS
CHECKPOINT;
discard all;