Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / contrib / dblink / expected / dblink.out
blob102444d88cf322f374181523639981d5e550a69f
1 -- Adjust this setting to control where the objects get created.
2 SET search_path = public;
3 --
4 -- Define the functions and test data
5 -- therein.
6 --
7 -- Turn off echoing so that expected file does not depend on
8 -- contents of dblink.sql.
9 SET client_min_messages = warning;
10 \set ECHO none
11 RESET client_min_messages;
12 CREATE TABLE foo(f1 int, f2 text, f3 text[], primary key (f1,f2));
13 NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index "foo_pkey" for table "foo"
14 INSERT INTO foo VALUES (0,'a','{"a0","b0","c0"}');
15 INSERT INTO foo VALUES (1,'b','{"a1","b1","c1"}');
16 INSERT INTO foo VALUES (2,'c','{"a2","b2","c2"}');
17 INSERT INTO foo VALUES (3,'d','{"a3","b3","c3"}');
18 INSERT INTO foo VALUES (4,'e','{"a4","b4","c4"}');
19 INSERT INTO foo VALUES (5,'f','{"a5","b5","c5"}');
20 INSERT INTO foo VALUES (6,'g','{"a6","b6","c6"}');
21 INSERT INTO foo VALUES (7,'h','{"a7","b7","c7"}');
22 INSERT INTO foo VALUES (8,'i','{"a8","b8","c8"}');
23 INSERT INTO foo VALUES (9,'j','{"a9","b9","c9"}');
24 -- misc utilities
25 -- list the primary key fields
26 SELECT *
27 FROM dblink_get_pkey('foo');
28  position | colname 
29 ----------+---------
30         1 | f1
31         2 | f2
32 (2 rows)
34 -- build an insert statement based on a local tuple,
35 -- replacing the primary key values with new ones
36 SELECT dblink_build_sql_insert('foo','1 2',2,'{"0", "a"}','{"99", "xyz"}');
37                   dblink_build_sql_insert                  
38 -----------------------------------------------------------
39  INSERT INTO foo(f1,f2,f3) VALUES('99','xyz','{a0,b0,c0}')
40 (1 row)
42 -- build an update statement based on a local tuple,
43 -- replacing the primary key values with new ones
44 SELECT dblink_build_sql_update('foo','1 2',2,'{"0", "a"}','{"99", "xyz"}');
45                                 dblink_build_sql_update                                 
46 ----------------------------------------------------------------------------------------
47  UPDATE foo SET f1 = '99', f2 = 'xyz', f3 = '{a0,b0,c0}' WHERE f1 = '99' AND f2 = 'xyz'
48 (1 row)
50 -- build a delete statement based on a local tuple,
51 SELECT dblink_build_sql_delete('foo','1 2',2,'{"0", "a"}');
52            dblink_build_sql_delete           
53 ---------------------------------------------
54  DELETE FROM foo WHERE f1 = '0' AND f2 = 'a'
55 (1 row)
57 -- retest using a quoted and schema qualified table
58 CREATE SCHEMA "MySchema";
59 CREATE TABLE "MySchema"."Foo"(f1 int, f2 text, f3 text[], primary key (f1,f2));
60 NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index "Foo_pkey" for table "Foo"
61 INSERT INTO "MySchema"."Foo" VALUES (0,'a','{"a0","b0","c0"}');
62 -- list the primary key fields
63 SELECT *
64 FROM dblink_get_pkey('"MySchema"."Foo"');
65  position | colname 
66 ----------+---------
67         1 | f1
68         2 | f2
69 (2 rows)
71 -- build an insert statement based on a local tuple,
72 -- replacing the primary key values with new ones
73 SELECT dblink_build_sql_insert('"MySchema"."Foo"','1 2',2,'{"0", "a"}','{"99", "xyz"}');
74                         dblink_build_sql_insert                         
75 ------------------------------------------------------------------------
76  INSERT INTO "MySchema"."Foo"(f1,f2,f3) VALUES('99','xyz','{a0,b0,c0}')
77 (1 row)
79 -- build an update statement based on a local tuple,
80 -- replacing the primary key values with new ones
81 SELECT dblink_build_sql_update('"MySchema"."Foo"','1 2',2,'{"0", "a"}','{"99", "xyz"}');
82                                        dblink_build_sql_update                                       
83 -----------------------------------------------------------------------------------------------------
84  UPDATE "MySchema"."Foo" SET f1 = '99', f2 = 'xyz', f3 = '{a0,b0,c0}' WHERE f1 = '99' AND f2 = 'xyz'
85 (1 row)
87 -- build a delete statement based on a local tuple,
88 SELECT dblink_build_sql_delete('"MySchema"."Foo"','1 2',2,'{"0", "a"}');
89                  dblink_build_sql_delete                  
90 ----------------------------------------------------------
91  DELETE FROM "MySchema"."Foo" WHERE f1 = '0' AND f2 = 'a'
92 (1 row)
94 -- regular old dblink
95 SELECT *
96 FROM dblink('dbname=contrib_regression','SELECT * FROM foo') AS t(a int, b text, c text[])
97 WHERE t.a > 7;
98  a | b |     c      
99 ---+---+------------
100  8 | i | {a8,b8,c8}
101  9 | j | {a9,b9,c9}
102 (2 rows)
104 -- should generate "connection not available" error
105 SELECT *
106 FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[])
107 WHERE t.a > 7;
108 ERROR:  connection not available
109 -- create a persistent connection
110 SELECT dblink_connect('dbname=contrib_regression');
111  dblink_connect 
112 ----------------
113  OK
114 (1 row)
116 -- use the persistent connection
117 SELECT *
118 FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[])
119 WHERE t.a > 7;
120  a | b |     c      
121 ---+---+------------
122  8 | i | {a8,b8,c8}
123  9 | j | {a9,b9,c9}
124 (2 rows)
126 -- open a cursor with bad SQL and fail_on_error set to false
127 SELECT dblink_open('rmt_foo_cursor','SELECT * FROM foobar',false);
128 NOTICE:  relation "foobar" does not exist
129 CONTEXT:  Error occurred on dblink connection named "unnamed": could not open cursor.
130  dblink_open 
131 -------------
132  ERROR
133 (1 row)
135 -- reset remote transaction state
136 SELECT dblink_exec('ABORT');
137  dblink_exec 
138 -------------
139  ROLLBACK
140 (1 row)
142 -- open a cursor
143 SELECT dblink_open('rmt_foo_cursor','SELECT * FROM foo');
144  dblink_open 
145 -------------
146  OK
147 (1 row)
149 -- close the cursor
150 SELECT dblink_close('rmt_foo_cursor',false);
151  dblink_close 
152 --------------
153  OK
154 (1 row)
156 -- open the cursor again
157 SELECT dblink_open('rmt_foo_cursor','SELECT * FROM foo');
158  dblink_open 
159 -------------
160  OK
161 (1 row)
163 -- fetch some data
164 SELECT *
165 FROM dblink_fetch('rmt_foo_cursor',4) AS t(a int, b text, c text[]);
166  a | b |     c      
167 ---+---+------------
168  0 | a | {a0,b0,c0}
169  1 | b | {a1,b1,c1}
170  2 | c | {a2,b2,c2}
171  3 | d | {a3,b3,c3}
172 (4 rows)
174 SELECT *
175 FROM dblink_fetch('rmt_foo_cursor',4) AS t(a int, b text, c text[]);
176  a | b |     c      
177 ---+---+------------
178  4 | e | {a4,b4,c4}
179  5 | f | {a5,b5,c5}
180  6 | g | {a6,b6,c6}
181  7 | h | {a7,b7,c7}
182 (4 rows)
184 -- this one only finds two rows left
185 SELECT *
186 FROM dblink_fetch('rmt_foo_cursor',4) AS t(a int, b text, c text[]);
187  a | b |     c      
188 ---+---+------------
189  8 | i | {a8,b8,c8}
190  9 | j | {a9,b9,c9}
191 (2 rows)
193 -- intentionally botch a fetch
194 SELECT *
195 FROM dblink_fetch('rmt_foobar_cursor',4,false) AS t(a int, b text, c text[]);
196 NOTICE:  cursor "rmt_foobar_cursor" does not exist
197 CONTEXT:  Error occurred on dblink connection named "unnamed": could not fetch from cursor.
198  a | b | c 
199 ---+---+---
200 (0 rows)
202 -- reset remote transaction state
203 SELECT dblink_exec('ABORT');
204  dblink_exec 
205 -------------
206  ROLLBACK
207 (1 row)
209 -- close the wrong cursor
210 SELECT dblink_close('rmt_foobar_cursor',false);
211 NOTICE:  cursor "rmt_foobar_cursor" does not exist
212 CONTEXT:  Error occurred on dblink connection named "unnamed": could not close cursor.
213  dblink_close 
214 --------------
215  ERROR
216 (1 row)
218 -- should generate 'cursor "rmt_foo_cursor" not found' error
219 SELECT *
220 FROM dblink_fetch('rmt_foo_cursor',4) AS t(a int, b text, c text[]);
221 ERROR:  cursor "rmt_foo_cursor" does not exist
222 CONTEXT:  Error occurred on dblink connection named "unnamed": could not fetch from cursor.
223 -- this time, 'cursor "rmt_foo_cursor" not found' as a notice
224 SELECT *
225 FROM dblink_fetch('rmt_foo_cursor',4,false) AS t(a int, b text, c text[]);
226 NOTICE:  cursor "rmt_foo_cursor" does not exist
227 CONTEXT:  Error occurred on dblink connection named "unnamed": could not fetch from cursor.
228  a | b | c 
229 ---+---+---
230 (0 rows)
232 -- close the persistent connection
233 SELECT dblink_disconnect();
234  dblink_disconnect 
235 -------------------
236  OK
237 (1 row)
239 -- should generate "connection not available" error
240 SELECT *
241 FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[])
242 WHERE t.a > 7;
243 ERROR:  connection not available
244 -- put more data into our slave table, first using arbitrary connection syntax
245 -- but truncate the actual return value so we can use diff to check for success
246 SELECT substr(dblink_exec('dbname=contrib_regression','INSERT INTO foo VALUES(10,''k'',''{"a10","b10","c10"}'')'),1,6);
247  substr 
248 --------
249  INSERT
250 (1 row)
252 -- create a persistent connection
253 SELECT dblink_connect('dbname=contrib_regression');
254  dblink_connect 
255 ----------------
256  OK
257 (1 row)
259 -- put more data into our slave table, using persistent connection syntax
260 -- but truncate the actual return value so we can use diff to check for success
261 SELECT substr(dblink_exec('INSERT INTO foo VALUES(11,''l'',''{"a11","b11","c11"}'')'),1,6);
262  substr 
263 --------
264  INSERT
265 (1 row)
267 -- let's see it
268 SELECT *
269 FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[]);
270  a  | b |       c       
271 ----+---+---------------
272   0 | a | {a0,b0,c0}
273   1 | b | {a1,b1,c1}
274   2 | c | {a2,b2,c2}
275   3 | d | {a3,b3,c3}
276   4 | e | {a4,b4,c4}
277   5 | f | {a5,b5,c5}
278   6 | g | {a6,b6,c6}
279   7 | h | {a7,b7,c7}
280   8 | i | {a8,b8,c8}
281   9 | j | {a9,b9,c9}
282  10 | k | {a10,b10,c10}
283  11 | l | {a11,b11,c11}
284 (12 rows)
286 -- bad remote select
287 SELECT *
288 FROM dblink('SELECT * FROM foobar',false) AS t(a int, b text, c text[]);
289 NOTICE:  relation "foobar" does not exist
290 CONTEXT:  Error occurred on dblink connection named "unnamed": could not execute query.
291  a | b | c 
292 ---+---+---
293 (0 rows)
295 -- change some data
296 SELECT dblink_exec('UPDATE foo SET f3[2] = ''b99'' WHERE f1 = 11');
297  dblink_exec 
298 -------------
299  UPDATE 1
300 (1 row)
302 -- let's see it
303 SELECT *
304 FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[])
305 WHERE a = 11;
306  a  | b |       c       
307 ----+---+---------------
308  11 | l | {a11,b99,c11}
309 (1 row)
311 -- botch a change to some other data
312 SELECT dblink_exec('UPDATE foobar SET f3[2] = ''b99'' WHERE f1 = 11',false);
313 NOTICE:  relation "foobar" does not exist
314 CONTEXT:  Error occurred on dblink connection named "unnamed": could not execute command.
315  dblink_exec 
316 -------------
317  ERROR
318 (1 row)
320 -- delete some data
321 SELECT dblink_exec('DELETE FROM foo WHERE f1 = 11');
322  dblink_exec 
323 -------------
324  DELETE 1
325 (1 row)
327 -- let's see it
328 SELECT *
329 FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[])
330 WHERE a = 11;
331  a | b | c 
332 ---+---+---
333 (0 rows)
335 -- close the persistent connection
336 SELECT dblink_disconnect();
337  dblink_disconnect 
338 -------------------
339  OK
340 (1 row)
343 -- tests for the new named persistent connection syntax
345 -- should generate "missing "=" after "myconn" in connection info string" error
346 SELECT *
347 FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[])
348 WHERE t.a > 7;
349 ERROR:  could not establish connection
350 DETAIL:  missing "=" after "myconn" in connection info string
352 -- create a named persistent connection
353 SELECT dblink_connect('myconn','dbname=contrib_regression');
354  dblink_connect 
355 ----------------
356  OK
357 (1 row)
359 -- use the named persistent connection
360 SELECT *
361 FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[])
362 WHERE t.a > 7;
363  a  | b |       c       
364 ----+---+---------------
365   8 | i | {a8,b8,c8}
366   9 | j | {a9,b9,c9}
367  10 | k | {a10,b10,c10}
368 (3 rows)
370 -- use the named persistent connection, but get it wrong
371 SELECT *
372 FROM dblink('myconn','SELECT * FROM foobar',false) AS t(a int, b text, c text[])
373 WHERE t.a > 7;
374 NOTICE:  relation "foobar" does not exist
375 CONTEXT:  Error occurred on dblink connection named "unnamed": could not execute query.
376  a | b | c 
377 ---+---+---
378 (0 rows)
380 -- create a second named persistent connection
381 -- should error with "duplicate connection name"
382 SELECT dblink_connect('myconn','dbname=contrib_regression');
383 ERROR:  duplicate connection name
384 -- create a second named persistent connection with a new name
385 SELECT dblink_connect('myconn2','dbname=contrib_regression');
386  dblink_connect 
387 ----------------
388  OK
389 (1 row)
391 -- use the second named persistent connection
392 SELECT *
393 FROM dblink('myconn2','SELECT * FROM foo') AS t(a int, b text, c text[])
394 WHERE t.a > 7;
395  a  | b |       c       
396 ----+---+---------------
397   8 | i | {a8,b8,c8}
398   9 | j | {a9,b9,c9}
399  10 | k | {a10,b10,c10}
400 (3 rows)
402 -- close the second named persistent connection
403 SELECT dblink_disconnect('myconn2');
404  dblink_disconnect 
405 -------------------
406  OK
407 (1 row)
409 -- open a cursor incorrectly
410 SELECT dblink_open('myconn','rmt_foo_cursor','SELECT * FROM foobar',false);
411 NOTICE:  relation "foobar" does not exist
412 CONTEXT:  Error occurred on dblink connection named "myconn": could not open cursor.
413  dblink_open 
414 -------------
415  ERROR
416 (1 row)
418 -- reset remote transaction state
419 SELECT dblink_exec('myconn','ABORT');
420  dblink_exec 
421 -------------
422  ROLLBACK
423 (1 row)
425 -- test opening cursor in a transaction
426 SELECT dblink_exec('myconn','BEGIN');
427  dblink_exec 
428 -------------
429  BEGIN
430 (1 row)
432 -- an open transaction will prevent dblink_open() from opening its own
433 SELECT dblink_open('myconn','rmt_foo_cursor','SELECT * FROM foo');
434  dblink_open 
435 -------------
436  OK
437 (1 row)
439 -- this should not commit the transaction because the client opened it
440 SELECT dblink_close('myconn','rmt_foo_cursor');
441  dblink_close 
442 --------------
443  OK
444 (1 row)
446 -- this should succeed because we have an open transaction
447 SELECT dblink_exec('myconn','DECLARE xact_test CURSOR FOR SELECT * FROM foo');
448   dblink_exec   
449 ----------------
450  DECLARE CURSOR
451 (1 row)
453 -- commit remote transaction
454 SELECT dblink_exec('myconn','COMMIT');
455  dblink_exec 
456 -------------
457  COMMIT
458 (1 row)
460 -- test automatic transactions for multiple cursor opens
461 SELECT dblink_open('myconn','rmt_foo_cursor','SELECT * FROM foo');
462  dblink_open 
463 -------------
464  OK
465 (1 row)
467 -- the second cursor
468 SELECT dblink_open('myconn','rmt_foo_cursor2','SELECT * FROM foo');
469  dblink_open 
470 -------------
471  OK
472 (1 row)
474 -- this should not commit the transaction
475 SELECT dblink_close('myconn','rmt_foo_cursor2');
476  dblink_close 
477 --------------
478  OK
479 (1 row)
481 -- this should succeed because we have an open transaction
482 SELECT dblink_exec('myconn','DECLARE xact_test CURSOR FOR SELECT * FROM foo');
483   dblink_exec   
484 ----------------
485  DECLARE CURSOR
486 (1 row)
488 -- this should commit the transaction
489 SELECT dblink_close('myconn','rmt_foo_cursor');
490  dblink_close 
491 --------------
492  OK
493 (1 row)
495 -- this should fail because there is no open transaction
496 SELECT dblink_exec('myconn','DECLARE xact_test CURSOR FOR SELECT * FROM foo');
497 ERROR:  DECLARE CURSOR can only be used in transaction blocks
498 CONTEXT:  Error occurred on dblink connection named "unnamed": could not execute command.
499 -- reset remote transaction state
500 SELECT dblink_exec('myconn','ABORT');
501  dblink_exec 
502 -------------
503  ROLLBACK
504 (1 row)
506 -- open a cursor
507 SELECT dblink_open('myconn','rmt_foo_cursor','SELECT * FROM foo');
508  dblink_open 
509 -------------
510  OK
511 (1 row)
513 -- fetch some data
514 SELECT *
515 FROM dblink_fetch('myconn','rmt_foo_cursor',4) AS t(a int, b text, c text[]);
516  a | b |     c      
517 ---+---+------------
518  0 | a | {a0,b0,c0}
519  1 | b | {a1,b1,c1}
520  2 | c | {a2,b2,c2}
521  3 | d | {a3,b3,c3}
522 (4 rows)
524 SELECT *
525 FROM dblink_fetch('myconn','rmt_foo_cursor',4) AS t(a int, b text, c text[]);
526  a | b |     c      
527 ---+---+------------
528  4 | e | {a4,b4,c4}
529  5 | f | {a5,b5,c5}
530  6 | g | {a6,b6,c6}
531  7 | h | {a7,b7,c7}
532 (4 rows)
534 -- this one only finds three rows left
535 SELECT *
536 FROM dblink_fetch('myconn','rmt_foo_cursor',4) AS t(a int, b text, c text[]);
537  a  | b |       c       
538 ----+---+---------------
539   8 | i | {a8,b8,c8}
540   9 | j | {a9,b9,c9}
541  10 | k | {a10,b10,c10}
542 (3 rows)
544 -- fetch some data incorrectly
545 SELECT *
546 FROM dblink_fetch('myconn','rmt_foobar_cursor',4,false) AS t(a int, b text, c text[]);
547 NOTICE:  cursor "rmt_foobar_cursor" does not exist
548 CONTEXT:  Error occurred on dblink connection named "myconn": could not fetch from cursor.
549  a | b | c 
550 ---+---+---
551 (0 rows)
553 -- reset remote transaction state
554 SELECT dblink_exec('myconn','ABORT');
555  dblink_exec 
556 -------------
557  ROLLBACK
558 (1 row)
560 -- should generate 'cursor "rmt_foo_cursor" not found' error
561 SELECT *
562 FROM dblink_fetch('myconn','rmt_foo_cursor',4) AS t(a int, b text, c text[]);
563 ERROR:  cursor "rmt_foo_cursor" does not exist
564 CONTEXT:  Error occurred on dblink connection named "myconn": could not fetch from cursor.
565 -- close the named persistent connection
566 SELECT dblink_disconnect('myconn');
567  dblink_disconnect 
568 -------------------
569  OK
570 (1 row)
572 -- should generate "missing "=" after "myconn" in connection info string" error
573 SELECT *
574 FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[])
575 WHERE t.a > 7;
576 ERROR:  could not establish connection
577 DETAIL:  missing "=" after "myconn" in connection info string
579 -- create a named persistent connection
580 SELECT dblink_connect('myconn','dbname=contrib_regression');
581  dblink_connect 
582 ----------------
583  OK
584 (1 row)
586 -- put more data into our slave table, using named persistent connection syntax
587 -- but truncate the actual return value so we can use diff to check for success
588 SELECT substr(dblink_exec('myconn','INSERT INTO foo VALUES(11,''l'',''{"a11","b11","c11"}'')'),1,6);
589  substr 
590 --------
591  INSERT
592 (1 row)
594 -- let's see it
595 SELECT *
596 FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[]);
597  a  | b |       c       
598 ----+---+---------------
599   0 | a | {a0,b0,c0}
600   1 | b | {a1,b1,c1}
601   2 | c | {a2,b2,c2}
602   3 | d | {a3,b3,c3}
603   4 | e | {a4,b4,c4}
604   5 | f | {a5,b5,c5}
605   6 | g | {a6,b6,c6}
606   7 | h | {a7,b7,c7}
607   8 | i | {a8,b8,c8}
608   9 | j | {a9,b9,c9}
609  10 | k | {a10,b10,c10}
610  11 | l | {a11,b11,c11}
611 (12 rows)
613 -- change some data
614 SELECT dblink_exec('myconn','UPDATE foo SET f3[2] = ''b99'' WHERE f1 = 11');
615  dblink_exec 
616 -------------
617  UPDATE 1
618 (1 row)
620 -- let's see it
621 SELECT *
622 FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[])
623 WHERE a = 11;
624  a  | b |       c       
625 ----+---+---------------
626  11 | l | {a11,b99,c11}
627 (1 row)
629 -- delete some data
630 SELECT dblink_exec('myconn','DELETE FROM foo WHERE f1 = 11');
631  dblink_exec 
632 -------------
633  DELETE 1
634 (1 row)
636 -- let's see it
637 SELECT *
638 FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[])
639 WHERE a = 11;
640  a | b | c 
641 ---+---+---
642 (0 rows)
644 -- close the named persistent connection
645 SELECT dblink_disconnect('myconn');
646  dblink_disconnect 
647 -------------------
648  OK
649 (1 row)
651 -- close the named persistent connection again
652 -- should get 'connection "myconn" not available' error
653 SELECT dblink_disconnect('myconn');
654 ERROR:  connection "myconn" not available
655 -- test asynchronous queries
656 SELECT dblink_connect('dtest1', 'dbname=contrib_regression');
657  dblink_connect 
658 ----------------
659  OK
660 (1 row)
662 SELECT * from 
663  dblink_send_query('dtest1', 'select * from foo where f1 < 3') as t1;
664  t1 
665 ----
666   1
667 (1 row)
669 SELECT dblink_connect('dtest2', 'dbname=contrib_regression');
670  dblink_connect 
671 ----------------
672  OK
673 (1 row)
675 SELECT * from 
676  dblink_send_query('dtest2', 'select * from foo where f1 > 2 and f1 < 7') as t1;
677  t1 
678 ----
679   1
680 (1 row)
682 SELECT dblink_connect('dtest3', 'dbname=contrib_regression');
683  dblink_connect 
684 ----------------
685  OK
686 (1 row)
688 SELECT * from 
689  dblink_send_query('dtest3', 'select * from foo where f1 > 6') as t1;
690  t1 
691 ----
692   1
693 (1 row)
695 CREATE TEMPORARY TABLE result AS
696 (SELECT * from dblink_get_result('dtest1') as t1(f1 int, f2 text, f3 text[]))
697 UNION
698 (SELECT * from dblink_get_result('dtest2') as t2(f1 int, f2 text, f3 text[]))
699 UNION
700 (SELECT * from dblink_get_result('dtest3') as t3(f1 int, f2 text, f3 text[]))
701 ORDER by f1;
702 -- dblink_get_connections returns an array with elements in a machine-dependent
703 -- ordering, so we must resort to unnesting and sorting for a stable result
704 create function unnest(anyarray) returns setof anyelement
705 language sql strict immutable as $$
706 select $1[i] from generate_series(array_lower($1,1), array_upper($1,1)) as i
708 SELECT * FROM unnest(dblink_get_connections()) ORDER BY 1;
709  unnest 
710 --------
711  dtest1
712  dtest2
713  dtest3
714 (3 rows)
716 SELECT dblink_is_busy('dtest1');
717  dblink_is_busy 
718 ----------------
719               0
720 (1 row)
722 SELECT dblink_disconnect('dtest1');
723  dblink_disconnect 
724 -------------------
725  OK
726 (1 row)
728 SELECT dblink_disconnect('dtest2');
729  dblink_disconnect 
730 -------------------
731  OK
732 (1 row)
734 SELECT dblink_disconnect('dtest3');
735  dblink_disconnect 
736 -------------------
737  OK
738 (1 row)
740 SELECT * from result;
741  f1 | f2 |      f3       
742 ----+----+---------------
743   0 | a  | {a0,b0,c0}
744   1 | b  | {a1,b1,c1}
745   2 | c  | {a2,b2,c2}
746   3 | d  | {a3,b3,c3}
747   4 | e  | {a4,b4,c4}
748   5 | f  | {a5,b5,c5}
749   6 | g  | {a6,b6,c6}
750   7 | h  | {a7,b7,c7}
751   8 | i  | {a8,b8,c8}
752   9 | j  | {a9,b9,c9}
753  10 | k  | {a10,b10,c10}
754 (11 rows)
756 SELECT dblink_connect('dtest1', 'dbname=contrib_regression');
757  dblink_connect 
758 ----------------
759  OK
760 (1 row)
762 SELECT * from 
763  dblink_send_query('dtest1', 'select * from foo where f1 < 3') as t1;
764  t1 
765 ----
766   1
767 (1 row)
769 SELECT dblink_cancel_query('dtest1');
770  dblink_cancel_query 
771 ---------------------
772  OK
773 (1 row)
775 SELECT dblink_error_message('dtest1');
776  dblink_error_message 
777 ----------------------
778  OK
779 (1 row)
781 SELECT dblink_disconnect('dtest1');
782  dblink_disconnect 
783 -------------------
784  OK
785 (1 row)
787 -- test foreign data wrapper functionality
788 CREATE USER dblink_regression_test;
789 CREATE FOREIGN DATA WRAPPER postgresql;
790 CREATE SERVER fdtest FOREIGN DATA WRAPPER postgresql OPTIONS (dbname 'contrib_regression');
791 CREATE USER MAPPING FOR public SERVER fdtest;
792 GRANT USAGE ON FOREIGN SERVER fdtest TO dblink_regression_test;
793 GRANT EXECUTE ON FUNCTION dblink_connect_u(text, text) TO dblink_regression_test;
794 \set ORIGINAL_USER :USER
795 \c - dblink_regression_test
796 -- should fail
797 SELECT dblink_connect('myconn', 'fdtest');
798 ERROR:  password is required
799 DETAIL:  Non-superusers must provide a password in the connection string.
800 -- should succeed
801 SELECT dblink_connect_u('myconn', 'fdtest');
802  dblink_connect_u 
803 ------------------
804  OK
805 (1 row)
807 SELECT * FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[]);
808  a  | b |       c       
809 ----+---+---------------
810   0 | a | {a0,b0,c0}
811   1 | b | {a1,b1,c1}
812   2 | c | {a2,b2,c2}
813   3 | d | {a3,b3,c3}
814   4 | e | {a4,b4,c4}
815   5 | f | {a5,b5,c5}
816   6 | g | {a6,b6,c6}
817   7 | h | {a7,b7,c7}
818   8 | i | {a8,b8,c8}
819   9 | j | {a9,b9,c9}
820  10 | k | {a10,b10,c10}
821 (11 rows)
823 \c - :ORIGINAL_USER
824 REVOKE USAGE ON FOREIGN SERVER fdtest FROM dblink_regression_test;
825 REVOKE EXECUTE ON FUNCTION dblink_connect_u(text, text) FROM dblink_regression_test;
826 DROP USER dblink_regression_test;
827 DROP USER MAPPING FOR public SERVER fdtest;
828 DROP SERVER fdtest;
829 DROP FOREIGN DATA WRAPPER postgresql;