2002-11-03 12:52:09 +08:00
|
|
|
-- Adjust this setting to control where the objects get created.
|
|
|
|
SET search_path = public;
|
2002-09-15 04:28:54 +08:00
|
|
|
--
|
2002-11-03 12:52:09 +08:00
|
|
|
-- Define the functions and test data
|
2002-09-15 06:00:59 +08:00
|
|
|
-- therein.
|
|
|
|
--
|
|
|
|
-- Turn off echoing so that expected file does not depend on
|
|
|
|
-- contents of dblink.sql.
|
2002-09-15 04:28:54 +08:00
|
|
|
\set ECHO none
|
2002-10-19 02:41:22 +08:00
|
|
|
CREATE TABLE foo(f1 int, f2 text, f3 text[], primary key (f1,f2));
|
2003-07-25 01:52:50 +08:00
|
|
|
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "foo_pkey" for table "foo"
|
2002-10-19 02:41:22 +08:00
|
|
|
INSERT INTO foo VALUES (0,'a','{"a0","b0","c0"}');
|
|
|
|
INSERT INTO foo VALUES (1,'b','{"a1","b1","c1"}');
|
|
|
|
INSERT INTO foo VALUES (2,'c','{"a2","b2","c2"}');
|
|
|
|
INSERT INTO foo VALUES (3,'d','{"a3","b3","c3"}');
|
|
|
|
INSERT INTO foo VALUES (4,'e','{"a4","b4","c4"}');
|
|
|
|
INSERT INTO foo VALUES (5,'f','{"a5","b5","c5"}');
|
|
|
|
INSERT INTO foo VALUES (6,'g','{"a6","b6","c6"}');
|
|
|
|
INSERT INTO foo VALUES (7,'h','{"a7","b7","c7"}');
|
|
|
|
INSERT INTO foo VALUES (8,'i','{"a8","b8","c8"}');
|
|
|
|
INSERT INTO foo VALUES (9,'j','{"a9","b9","c9"}');
|
2002-09-15 04:28:54 +08:00
|
|
|
-- misc utilities
|
|
|
|
-- show the currently executing query
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT 'hello' AS hello, dblink_current_query() AS query;
|
2002-09-15 04:28:54 +08:00
|
|
|
hello | query
|
|
|
|
-------+-----------------------------------------------------------
|
2002-10-19 02:41:22 +08:00
|
|
|
hello | SELECT 'hello' AS hello, dblink_current_query() AS query;
|
2002-09-15 04:28:54 +08:00
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- list the primary key fields
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT *
|
|
|
|
FROM dblink_get_pkey('foo');
|
2002-09-15 04:28:54 +08:00
|
|
|
position | colname
|
|
|
|
----------+---------
|
|
|
|
1 | f1
|
|
|
|
2 | f2
|
|
|
|
(2 rows)
|
|
|
|
|
|
|
|
-- build an insert statement based on a local tuple,
|
|
|
|
-- replacing the primary key values with new ones
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT dblink_build_sql_insert('foo','1 2',2,'{"0", "a"}','{"99", "xyz"}');
|
2002-09-15 04:28:54 +08:00
|
|
|
dblink_build_sql_insert
|
|
|
|
-----------------------------------------------------------
|
|
|
|
INSERT INTO foo(f1,f2,f3) VALUES('99','xyz','{a0,b0,c0}')
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- build an update statement based on a local tuple,
|
|
|
|
-- replacing the primary key values with new ones
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT dblink_build_sql_update('foo','1 2',2,'{"0", "a"}','{"99", "xyz"}');
|
2002-09-15 04:28:54 +08:00
|
|
|
dblink_build_sql_update
|
|
|
|
----------------------------------------------------------------------------------------
|
|
|
|
UPDATE foo SET f1 = '99', f2 = 'xyz', f3 = '{a0,b0,c0}' WHERE f1 = '99' AND f2 = 'xyz'
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- build a delete statement based on a local tuple,
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT dblink_build_sql_delete('foo','1 2',2,'{"0", "a"}');
|
2002-09-15 04:28:54 +08:00
|
|
|
dblink_build_sql_delete
|
|
|
|
---------------------------------------------
|
|
|
|
DELETE FROM foo WHERE f1 = '0' AND f2 = 'a'
|
|
|
|
(1 row)
|
|
|
|
|
2002-11-24 02:59:25 +08:00
|
|
|
-- retest using a quoted and schema qualified table
|
|
|
|
CREATE SCHEMA "MySchema";
|
|
|
|
CREATE TABLE "MySchema"."Foo"(f1 int, f2 text, f3 text[], primary key (f1,f2));
|
2003-07-25 01:52:50 +08:00
|
|
|
NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "Foo_pkey" for table "Foo"
|
2002-11-24 02:59:25 +08:00
|
|
|
INSERT INTO "MySchema"."Foo" VALUES (0,'a','{"a0","b0","c0"}');
|
|
|
|
-- list the primary key fields
|
|
|
|
SELECT *
|
|
|
|
FROM dblink_get_pkey('"MySchema"."Foo"');
|
|
|
|
position | colname
|
|
|
|
----------+---------
|
|
|
|
1 | f1
|
|
|
|
2 | f2
|
|
|
|
(2 rows)
|
|
|
|
|
|
|
|
-- build an insert statement based on a local tuple,
|
|
|
|
-- replacing the primary key values with new ones
|
|
|
|
SELECT dblink_build_sql_insert('"MySchema"."Foo"','1 2',2,'{"0", "a"}','{"99", "xyz"}');
|
|
|
|
dblink_build_sql_insert
|
|
|
|
------------------------------------------------------------------------
|
|
|
|
INSERT INTO "MySchema"."Foo"(f1,f2,f3) VALUES('99','xyz','{a0,b0,c0}')
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- build an update statement based on a local tuple,
|
|
|
|
-- replacing the primary key values with new ones
|
|
|
|
SELECT dblink_build_sql_update('"MySchema"."Foo"','1 2',2,'{"0", "a"}','{"99", "xyz"}');
|
|
|
|
dblink_build_sql_update
|
|
|
|
-----------------------------------------------------------------------------------------------------
|
|
|
|
UPDATE "MySchema"."Foo" SET f1 = '99', f2 = 'xyz', f3 = '{a0,b0,c0}' WHERE f1 = '99' AND f2 = 'xyz'
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- build a delete statement based on a local tuple,
|
|
|
|
SELECT dblink_build_sql_delete('"MySchema"."Foo"','1 2',2,'{"0", "a"}');
|
|
|
|
dblink_build_sql_delete
|
|
|
|
----------------------------------------------------------
|
|
|
|
DELETE FROM "MySchema"."Foo" WHERE f1 = '0' AND f2 = 'a'
|
|
|
|
(1 row)
|
|
|
|
|
2002-09-02 14:32:41 +08:00
|
|
|
-- regular old dblink
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT *
|
2002-11-03 12:52:09 +08:00
|
|
|
FROM dblink('dbname=regression','SELECT * FROM foo') AS t(a int, b text, c text[])
|
2002-10-19 02:41:22 +08:00
|
|
|
WHERE t.a > 7;
|
2002-09-02 14:32:41 +08:00
|
|
|
a | b | c
|
|
|
|
---+---+------------
|
|
|
|
8 | i | {a8,b8,c8}
|
|
|
|
9 | j | {a9,b9,c9}
|
|
|
|
(2 rows)
|
|
|
|
|
2003-06-25 09:10:15 +08:00
|
|
|
-- should generate "connection not available" error
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT *
|
|
|
|
FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[])
|
|
|
|
WHERE t.a > 7;
|
2003-07-25 01:52:50 +08:00
|
|
|
ERROR: connection not available
|
2002-09-02 14:32:41 +08:00
|
|
|
-- create a persistent connection
|
2002-11-03 12:52:09 +08:00
|
|
|
SELECT dblink_connect('dbname=regression');
|
2002-09-02 14:32:41 +08:00
|
|
|
dblink_connect
|
|
|
|
----------------
|
|
|
|
OK
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- use the persistent connection
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT *
|
|
|
|
FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[])
|
|
|
|
WHERE t.a > 7;
|
2002-09-02 14:32:41 +08:00
|
|
|
a | b | c
|
|
|
|
---+---+------------
|
|
|
|
8 | i | {a8,b8,c8}
|
|
|
|
9 | j | {a9,b9,c9}
|
|
|
|
(2 rows)
|
|
|
|
|
|
|
|
-- open a cursor
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT dblink_open('rmt_foo_cursor','SELECT * FROM foo');
|
2002-09-02 14:32:41 +08:00
|
|
|
dblink_open
|
|
|
|
-------------
|
|
|
|
OK
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- fetch some data
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT *
|
|
|
|
FROM dblink_fetch('rmt_foo_cursor',4) AS t(a int, b text, c text[]);
|
2002-09-02 14:32:41 +08:00
|
|
|
a | b | c
|
|
|
|
---+---+------------
|
|
|
|
0 | a | {a0,b0,c0}
|
|
|
|
1 | b | {a1,b1,c1}
|
|
|
|
2 | c | {a2,b2,c2}
|
|
|
|
3 | d | {a3,b3,c3}
|
|
|
|
(4 rows)
|
|
|
|
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT *
|
|
|
|
FROM dblink_fetch('rmt_foo_cursor',4) AS t(a int, b text, c text[]);
|
2002-09-02 14:32:41 +08:00
|
|
|
a | b | c
|
|
|
|
---+---+------------
|
|
|
|
4 | e | {a4,b4,c4}
|
|
|
|
5 | f | {a5,b5,c5}
|
|
|
|
6 | g | {a6,b6,c6}
|
|
|
|
7 | h | {a7,b7,c7}
|
|
|
|
(4 rows)
|
|
|
|
|
|
|
|
-- this one only finds two rows left
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT *
|
|
|
|
FROM dblink_fetch('rmt_foo_cursor',4) AS t(a int, b text, c text[]);
|
2002-09-02 14:32:41 +08:00
|
|
|
a | b | c
|
|
|
|
---+---+------------
|
|
|
|
8 | i | {a8,b8,c8}
|
|
|
|
9 | j | {a9,b9,c9}
|
|
|
|
(2 rows)
|
|
|
|
|
|
|
|
-- close the cursor
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT dblink_close('rmt_foo_cursor');
|
2002-09-02 14:32:41 +08:00
|
|
|
dblink_close
|
|
|
|
--------------
|
|
|
|
OK
|
|
|
|
(1 row)
|
|
|
|
|
2003-07-25 01:52:50 +08:00
|
|
|
-- should generate 'cursor "rmt_foo_cursor" not found' error
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT *
|
|
|
|
FROM dblink_fetch('rmt_foo_cursor',4) AS t(a int, b text, c text[]);
|
2003-09-14 10:30:07 +08:00
|
|
|
ERROR: sql error
|
|
|
|
DETAIL: ERROR: cursor "rmt_foo_cursor" does not exist
|
|
|
|
|
2002-09-02 14:32:41 +08:00
|
|
|
-- close the persistent connection
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT dblink_disconnect();
|
2002-09-02 14:32:41 +08:00
|
|
|
dblink_disconnect
|
|
|
|
-------------------
|
|
|
|
OK
|
|
|
|
(1 row)
|
|
|
|
|
2003-06-25 09:10:15 +08:00
|
|
|
-- should generate "no connection to the server" error
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT *
|
|
|
|
FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[])
|
|
|
|
WHERE t.a > 7;
|
2003-07-25 01:52:50 +08:00
|
|
|
ERROR: sql error
|
|
|
|
DETAIL: no connection to the server
|
2003-06-25 09:10:15 +08:00
|
|
|
|
2002-09-02 14:32:41 +08:00
|
|
|
-- put more data into our slave table, first using arbitrary connection syntax
|
|
|
|
-- but truncate the actual return value so we can use diff to check for success
|
2003-05-14 11:26:03 +08:00
|
|
|
SELECT substr(dblink_exec('dbname=regression','INSERT INTO foo VALUES(10,''k'',''{"a10","b10","c10"}'')'),1,6);
|
2002-09-02 14:32:41 +08:00
|
|
|
substr
|
|
|
|
--------
|
|
|
|
INSERT
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- create a persistent connection
|
2002-11-03 12:52:09 +08:00
|
|
|
SELECT dblink_connect('dbname=regression');
|
2002-09-02 14:32:41 +08:00
|
|
|
dblink_connect
|
|
|
|
----------------
|
|
|
|
OK
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- put more data into our slave table, using persistent connection syntax
|
|
|
|
-- but truncate the actual return value so we can use diff to check for success
|
2003-05-14 11:26:03 +08:00
|
|
|
SELECT substr(dblink_exec('INSERT INTO foo VALUES(11,''l'',''{"a11","b11","c11"}'')'),1,6);
|
2002-09-02 14:32:41 +08:00
|
|
|
substr
|
|
|
|
--------
|
|
|
|
INSERT
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- let's see it
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT *
|
|
|
|
FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[]);
|
2002-09-02 14:32:41 +08:00
|
|
|
a | b | c
|
|
|
|
----+---+---------------
|
|
|
|
0 | a | {a0,b0,c0}
|
|
|
|
1 | b | {a1,b1,c1}
|
|
|
|
2 | c | {a2,b2,c2}
|
|
|
|
3 | d | {a3,b3,c3}
|
|
|
|
4 | e | {a4,b4,c4}
|
|
|
|
5 | f | {a5,b5,c5}
|
|
|
|
6 | g | {a6,b6,c6}
|
|
|
|
7 | h | {a7,b7,c7}
|
|
|
|
8 | i | {a8,b8,c8}
|
|
|
|
9 | j | {a9,b9,c9}
|
|
|
|
10 | k | {a10,b10,c10}
|
|
|
|
11 | l | {a11,b11,c11}
|
|
|
|
(12 rows)
|
|
|
|
|
|
|
|
-- change some data
|
2003-05-14 11:26:03 +08:00
|
|
|
SELECT dblink_exec('UPDATE foo SET f3[2] = ''b99'' WHERE f1 = 11');
|
2002-09-02 14:32:41 +08:00
|
|
|
dblink_exec
|
|
|
|
-------------
|
|
|
|
UPDATE 1
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- let's see it
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT *
|
|
|
|
FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[])
|
|
|
|
WHERE a = 11;
|
2002-09-02 14:32:41 +08:00
|
|
|
a | b | c
|
|
|
|
----+---+---------------
|
|
|
|
11 | l | {a11,b99,c11}
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- delete some data
|
2003-05-14 11:26:03 +08:00
|
|
|
SELECT dblink_exec('DELETE FROM foo WHERE f1 = 11');
|
2002-09-02 14:32:41 +08:00
|
|
|
dblink_exec
|
|
|
|
-------------
|
|
|
|
DELETE 1
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- let's see it
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT *
|
|
|
|
FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[])
|
|
|
|
WHERE a = 11;
|
2002-09-02 14:32:41 +08:00
|
|
|
a | b | c
|
|
|
|
---+---+---
|
|
|
|
(0 rows)
|
|
|
|
|
2002-09-15 04:28:54 +08:00
|
|
|
-- close the persistent connection
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT dblink_disconnect();
|
2002-09-15 04:28:54 +08:00
|
|
|
dblink_disconnect
|
|
|
|
-------------------
|
|
|
|
OK
|
2002-09-02 14:32:41 +08:00
|
|
|
(1 row)
|
|
|
|
|
2003-06-25 09:10:15 +08:00
|
|
|
--
|
|
|
|
-- tests for the new named persistent connection syntax
|
|
|
|
--
|
|
|
|
-- should generate "missing "=" after "myconn" in connection info string" error
|
|
|
|
SELECT *
|
|
|
|
FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[])
|
|
|
|
WHERE t.a > 7;
|
2003-07-25 01:52:50 +08:00
|
|
|
ERROR: could not establish connection
|
|
|
|
DETAIL: missing "=" after "myconn" in connection info string
|
2003-06-25 09:10:15 +08:00
|
|
|
|
|
|
|
-- create a named persistent connection
|
|
|
|
SELECT dblink_connect('myconn','dbname=regression');
|
|
|
|
dblink_connect
|
|
|
|
----------------
|
|
|
|
OK
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- use the named persistent connection
|
|
|
|
SELECT *
|
|
|
|
FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[])
|
|
|
|
WHERE t.a > 7;
|
|
|
|
a | b | c
|
|
|
|
----+---+---------------
|
|
|
|
8 | i | {a8,b8,c8}
|
|
|
|
9 | j | {a9,b9,c9}
|
|
|
|
10 | k | {a10,b10,c10}
|
|
|
|
(3 rows)
|
|
|
|
|
|
|
|
-- create a second named persistent connection
|
2003-07-25 01:52:50 +08:00
|
|
|
-- should error with "duplicate connection name"
|
2003-06-25 09:10:15 +08:00
|
|
|
SELECT dblink_connect('myconn','dbname=regression');
|
2003-07-25 01:52:50 +08:00
|
|
|
ERROR: duplicate connection name
|
2003-06-25 09:10:15 +08:00
|
|
|
-- create a second named persistent connection with a new name
|
|
|
|
SELECT dblink_connect('myconn2','dbname=regression');
|
|
|
|
dblink_connect
|
|
|
|
----------------
|
|
|
|
OK
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- use the second named persistent connection
|
|
|
|
SELECT *
|
|
|
|
FROM dblink('myconn2','SELECT * FROM foo') AS t(a int, b text, c text[])
|
|
|
|
WHERE t.a > 7;
|
|
|
|
a | b | c
|
|
|
|
----+---+---------------
|
|
|
|
8 | i | {a8,b8,c8}
|
|
|
|
9 | j | {a9,b9,c9}
|
|
|
|
10 | k | {a10,b10,c10}
|
|
|
|
(3 rows)
|
|
|
|
|
|
|
|
-- close the second named persistent connection
|
|
|
|
SELECT dblink_disconnect('myconn2');
|
|
|
|
dblink_disconnect
|
|
|
|
-------------------
|
|
|
|
OK
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- open a cursor
|
|
|
|
SELECT dblink_open('myconn','rmt_foo_cursor','SELECT * FROM foo');
|
|
|
|
dblink_open
|
|
|
|
-------------
|
|
|
|
OK
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- fetch some data
|
|
|
|
SELECT *
|
|
|
|
FROM dblink_fetch('myconn','rmt_foo_cursor',4) AS t(a int, b text, c text[]);
|
|
|
|
a | b | c
|
|
|
|
---+---+------------
|
|
|
|
0 | a | {a0,b0,c0}
|
|
|
|
1 | b | {a1,b1,c1}
|
|
|
|
2 | c | {a2,b2,c2}
|
|
|
|
3 | d | {a3,b3,c3}
|
|
|
|
(4 rows)
|
|
|
|
|
|
|
|
SELECT *
|
|
|
|
FROM dblink_fetch('myconn','rmt_foo_cursor',4) AS t(a int, b text, c text[]);
|
|
|
|
a | b | c
|
|
|
|
---+---+------------
|
|
|
|
4 | e | {a4,b4,c4}
|
|
|
|
5 | f | {a5,b5,c5}
|
|
|
|
6 | g | {a6,b6,c6}
|
|
|
|
7 | h | {a7,b7,c7}
|
|
|
|
(4 rows)
|
|
|
|
|
|
|
|
-- this one only finds three rows left
|
|
|
|
SELECT *
|
|
|
|
FROM dblink_fetch('myconn','rmt_foo_cursor',4) AS t(a int, b text, c text[]);
|
|
|
|
a | b | c
|
|
|
|
----+---+---------------
|
|
|
|
8 | i | {a8,b8,c8}
|
|
|
|
9 | j | {a9,b9,c9}
|
|
|
|
10 | k | {a10,b10,c10}
|
|
|
|
(3 rows)
|
|
|
|
|
|
|
|
-- close the cursor
|
|
|
|
SELECT dblink_close('myconn','rmt_foo_cursor');
|
|
|
|
dblink_close
|
|
|
|
--------------
|
|
|
|
OK
|
|
|
|
(1 row)
|
|
|
|
|
2003-07-25 01:52:50 +08:00
|
|
|
-- should generate 'cursor "rmt_foo_cursor" not found' error
|
2003-06-25 09:10:15 +08:00
|
|
|
SELECT *
|
|
|
|
FROM dblink_fetch('myconn','rmt_foo_cursor',4) AS t(a int, b text, c text[]);
|
2003-09-14 10:30:07 +08:00
|
|
|
ERROR: sql error
|
|
|
|
DETAIL: ERROR: cursor "rmt_foo_cursor" does not exist
|
|
|
|
|
2003-06-25 09:10:15 +08:00
|
|
|
-- close the named persistent connection
|
|
|
|
SELECT dblink_disconnect('myconn');
|
|
|
|
dblink_disconnect
|
|
|
|
-------------------
|
|
|
|
OK
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- should generate "missing "=" after "myconn" in connection info string" error
|
|
|
|
SELECT *
|
|
|
|
FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[])
|
|
|
|
WHERE t.a > 7;
|
2003-07-25 01:52:50 +08:00
|
|
|
ERROR: could not establish connection
|
|
|
|
DETAIL: missing "=" after "myconn" in connection info string
|
2003-06-25 09:10:15 +08:00
|
|
|
|
|
|
|
-- create a named persistent connection
|
|
|
|
SELECT dblink_connect('myconn','dbname=regression');
|
|
|
|
dblink_connect
|
|
|
|
----------------
|
|
|
|
OK
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- put more data into our slave table, using named persistent connection syntax
|
|
|
|
-- but truncate the actual return value so we can use diff to check for success
|
|
|
|
SELECT substr(dblink_exec('myconn','INSERT INTO foo VALUES(11,''l'',''{"a11","b11","c11"}'')'),1,6);
|
|
|
|
substr
|
|
|
|
--------
|
|
|
|
INSERT
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- let's see it
|
|
|
|
SELECT *
|
|
|
|
FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[]);
|
|
|
|
a | b | c
|
|
|
|
----+---+---------------
|
|
|
|
0 | a | {a0,b0,c0}
|
|
|
|
1 | b | {a1,b1,c1}
|
|
|
|
2 | c | {a2,b2,c2}
|
|
|
|
3 | d | {a3,b3,c3}
|
|
|
|
4 | e | {a4,b4,c4}
|
|
|
|
5 | f | {a5,b5,c5}
|
|
|
|
6 | g | {a6,b6,c6}
|
|
|
|
7 | h | {a7,b7,c7}
|
|
|
|
8 | i | {a8,b8,c8}
|
|
|
|
9 | j | {a9,b9,c9}
|
|
|
|
10 | k | {a10,b10,c10}
|
|
|
|
11 | l | {a11,b11,c11}
|
|
|
|
(12 rows)
|
|
|
|
|
|
|
|
-- change some data
|
|
|
|
SELECT dblink_exec('myconn','UPDATE foo SET f3[2] = ''b99'' WHERE f1 = 11');
|
|
|
|
dblink_exec
|
|
|
|
-------------
|
|
|
|
UPDATE 1
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- let's see it
|
|
|
|
SELECT *
|
|
|
|
FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[])
|
|
|
|
WHERE a = 11;
|
|
|
|
a | b | c
|
|
|
|
----+---+---------------
|
|
|
|
11 | l | {a11,b99,c11}
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- delete some data
|
|
|
|
SELECT dblink_exec('myconn','DELETE FROM foo WHERE f1 = 11');
|
|
|
|
dblink_exec
|
|
|
|
-------------
|
|
|
|
DELETE 1
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- let's see it
|
|
|
|
SELECT *
|
|
|
|
FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[])
|
|
|
|
WHERE a = 11;
|
|
|
|
a | b | c
|
|
|
|
---+---+---
|
|
|
|
(0 rows)
|
|
|
|
|
|
|
|
-- close the named persistent connection
|
|
|
|
SELECT dblink_disconnect('myconn');
|
|
|
|
dblink_disconnect
|
|
|
|
-------------------
|
|
|
|
OK
|
|
|
|
(1 row)
|
|
|
|
|
|
|
|
-- close the named persistent connection again
|
2003-07-25 01:52:50 +08:00
|
|
|
-- should get 'connection "myconn" not available' error
|
2003-06-25 09:10:15 +08:00
|
|
|
SELECT dblink_disconnect('myconn');
|
2003-07-25 01:52:50 +08:00
|
|
|
ERROR: connection "myconn" not available
|