*** /usr/local/postgresql-9.3.3/src/test/regress/expected/hs_standby_allowed.out 2014-02-17 16:29:55.000000000 -0300 --- /usr/local/postgresql-9.3.3/src/test/regress/results/hs_standby_allowed.out 2014-03-07 21:37:55.243000134 -0300 *************** *** 50,55 **** --- 50,57 ---- end; begin transaction isolation level serializable; + ERROR: cannot use serializable mode in a hot standby + HINT: You can use REPEATABLE READ instead. select count(*) as should_be_1 from hs1; should_be_1 ------------- *************** *** 69,74 **** --- 71,77 ---- (1 row) commit; + WARNING: there is no transaction in progress begin; select count(*) as should_be_1 from hs1; should_be_1 ====================================================================== *** /usr/local/postgresql-9.3.3/src/test/regress/expected/hs_standby_disallowed.out 2014-02-17 16:29:55.000000000 -0300 --- /usr/local/postgresql-9.3.3/src/test/regress/results/hs_standby_disallowed.out 2014-03-07 21:37:55.276000154 -0300 *************** *** 124,130 **** ERROR: cannot execute UNLISTEN during recovery -- disallowed commands ANALYZE hs1; ! ERROR: cannot execute VACUUM during recovery VACUUM hs2; ERROR: cannot execute VACUUM during recovery CLUSTER hs2 using hs1_pkey; --- 124,130 ---- ERROR: cannot execute UNLISTEN during recovery -- disallowed commands ANALYZE hs1; ! ERROR: cannot execute ANALYZE during recovery VACUUM hs2; ERROR: cannot execute VACUUM during recovery CLUSTER hs2 using hs1_pkey; ======================================================================