- Notifications
You must be signed in to change notification settings - Fork4.9k
Commit3d009e4
committed
Add support for piping COPY to/from an external program.
This includes backend "COPY TO/FROM PROGRAM '...'" syntax, and correspondingpsql \copy syntax. Like with reading/writing files, the backend version issuperuser-only, and in the psql version, the program is run in the client.In the passing, the psql \copy STDIN/STDOUT syntax is subtly changed: if youthe stdin/stdout is quoted, it's now interpreted as a filename. For example,"\copy foo from 'stdin'" now reads from a file called 'stdin', not fromstandard input. Before this, there was no way to specify a filename calledstdin, stdout, pstdin or pstdout.This creates a new function in pgport, wait_result_to_str(), which canbe used to convert the exit status of a process, as returned by wait(3),to a human-readable string.Etsuro Fujita, reviewed by Amit Kapila.1 parent73dc003 commit3d009e4
File tree
21 files changed
+581
-149
lines changed- contrib/file_fdw
- doc/src/sgml
- ref
- src
- backend
- commands
- nodes
- parser
- storage/file
- bin/psql
- include
- commands
- nodes
- parser
- storage
- interfaces/ecpg/preproc
- port
21 files changed
+581
-149
lines changedLines changed: 3 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
588 | 588 |
| |
589 | 589 |
| |
590 | 590 |
| |
| 591 | + | |
591 | 592 |
| |
592 | 593 |
| |
593 | 594 |
| |
| |||
660 | 661 |
| |
661 | 662 |
| |
662 | 663 |
| |
| 664 | + | |
663 | 665 |
| |
664 | 666 |
| |
665 | 667 |
| |
| |||
993 | 995 |
| |
994 | 996 |
| |
995 | 997 |
| |
996 |
| - | |
| 998 | + | |
997 | 999 |
| |
998 | 1000 |
| |
999 | 1001 |
| |
|
Lines changed: 7 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3513 | 3513 |
| |
3514 | 3514 |
| |
3515 | 3515 |
| |
| 3516 | + | |
| 3517 | + | |
| 3518 | + | |
| 3519 | + | |
| 3520 | + | |
| 3521 | + | |
| 3522 | + | |
3516 | 3523 |
| |
3517 | 3524 |
| |
3518 | 3525 |
| |
|
Lines changed: 45 additions & 5 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
23 | 23 |
| |
24 | 24 |
| |
25 | 25 |
| |
26 |
| - | |
| 26 | + | |
27 | 27 |
| |
28 | 28 |
| |
29 | 29 |
| |
30 |
| - | |
| 30 | + | |
31 | 31 |
| |
32 | 32 |
| |
33 | 33 |
| |
| |||
72 | 72 |
| |
73 | 73 |
| |
74 | 74 |
| |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
75 | 79 |
| |
76 | 80 |
| |
77 | 81 |
| |
| |||
125 | 129 |
| |
126 | 130 |
| |
127 | 131 |
| |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
128 | 151 |
| |
129 | 152 |
| |
130 | 153 |
| |
| |||
367 | 390 |
| |
368 | 391 |
| |
369 | 392 |
| |
370 |
| - | |
371 |
| - | |
372 |
| - | |
| 393 | + | |
| 394 | + | |
| 395 | + | |
| 396 | + | |
| 397 | + | |
| 398 | + | |
| 399 | + | |
373 | 400 |
| |
374 | 401 |
| |
375 | 402 |
| |
| |||
393 | 420 |
| |
394 | 421 |
| |
395 | 422 |
| |
| 423 | + | |
| 424 | + | |
| 425 | + | |
| 426 | + | |
| 427 | + | |
396 | 428 |
| |
397 | 429 |
| |
398 | 430 |
| |
| |||
841 | 873 |
| |
842 | 874 |
| |
843 | 875 |
| |
| 876 | + | |
| 877 | + | |
| 878 | + | |
| 879 | + | |
| 880 | + | |
| 881 | + | |
| 882 | + | |
| 883 | + | |
844 | 884 |
| |
845 | 885 |
| |
846 | 886 |
| |
|
Lines changed: 22 additions & 11 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
830 | 830 |
| |
831 | 831 |
| |
832 | 832 |
| |
833 |
| - | |
| 833 | + | |
834 | 834 |
| |
835 | 835 |
| |
836 | 836 |
| |
| |||
847 | 847 |
| |
848 | 848 |
| |
849 | 849 |
| |
850 |
| - | |
851 |
| - | |
852 |
| - | |
853 |
| - | |
854 |
| - | |
855 |
| - | |
856 |
| - | |
857 |
| - | |
858 |
| - | |
859 |
| - | |
| 850 | + | |
| 851 | + | |
| 852 | + | |
| 853 | + | |
| 854 | + | |
| 855 | + | |
| 856 | + | |
| 857 | + | |
860 | 858 |
| |
861 | 859 |
| |
862 | 860 |
| |
| |||
870 | 868 |
| |
871 | 869 |
| |
872 | 870 |
| |
| 871 | + | |
| 872 | + | |
| 873 | + | |
| 874 | + | |
| 875 | + | |
| 876 | + | |
| 877 | + | |
| 878 | + | |
| 879 | + | |
| 880 | + | |
| 881 | + | |
| 882 | + | |
| 883 | + | |
873 | 884 |
| |
874 | 885 |
| |
875 | 886 |
| |
|
0 commit comments
Comments
(0)