-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstandby_postgres.out
28 lines (26 loc) · 1.14 KB
/
standby_postgres.out
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
-- dblink.query() to test use_xa GUC parameter on Standby Server
BEGIN;
SET dblink_plus.use_xa TO 'on';
SHOW dblink_plus.use_xa;
dblink_plus.use_xa
--------------------
on
(1 row)
SELECT * FROM dblink.query('server_postgres6789012345678901234567890123456789012345678901234567890', 'SELECT * FROM dblink.dblink_tbl ORDER BY id') AS t(id integer, value text) ORDER BY id;
NOTICE: identifier "server_postgres6789012345678901234567890123456789012345678901234567890" will be truncated to "server_postgres678901234567890123456789012345678901234567890123"
ERROR: cannot execute DELETE in a read-only transaction
CONTEXT: SQL statement "DELETE FROM dblink.atcommit"
COMMIT;
BEGIN;
SET dblink_plus.use_xa TO 'off';
SELECT * FROM dblink.query('server_postgres6789012345678901234567890123456789012345678901234567890', 'SELECT * FROM dblink.dblink_tbl ORDER BY id') AS t(id integer, value text) ORDER BY id;
NOTICE: identifier "server_postgres6789012345678901234567890123456789012345678901234567890" will be truncated to "server_postgres678901234567890123456789012345678901234567890123"
id | value
----+-------
1 | A
2 | BB
3 | CCC
4 | DDDD
5 |
(5 rows)
COMMIT;