Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
30a800a0
Commit
30a800a0
authored
Jan 07, 2003
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update for new we-always-have-getopt_long approach.
parent
b4b62cff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
42 deletions
+12
-42
contrib/pg_dumplo/main.c
contrib/pg_dumplo/main.c
+10
-38
contrib/pg_dumplo/pg_dumplo.h
contrib/pg_dumplo/pg_dumplo.h
+2
-4
No files found.
contrib/pg_dumplo/main.c
View file @
30a800a0
/* -------------------------------------------------------------------------
* pg_dumplo
*
* $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/main.c,v 1.1
3 2002/10/18 18:41:20 momjian
Exp $
* $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/main.c,v 1.1
4 2003/01/07 21:42:38 tgl
Exp $
*
* Karel Zak 1999-2000
* -------------------------------------------------------------------------
...
...
@@ -17,13 +17,14 @@
#include "pg_dumplo.h"
#ifdef HAVE_GETOPT_LONG
#include <getopt.h>
#define no_argument 0
#define required_argument 1
#ifndef HAVE_STRDUP
#include "strdup.h"
#endif
extern
int
errno
;
#ifndef HAVE_GETOPT_LONG
#include "getopt_long.h"
int
optreset
;
#endif
char
*
progname
=
NULL
;
...
...
@@ -67,8 +68,6 @@ main(int argc, char **argv)
{
int
arg
;
extern
int
optind
;
#ifdef HAVE_GETOPT_LONG
int
l_index
=
0
;
static
struct
option
l_opt
[]
=
{
{
"help"
,
no_argument
,
0
,
'h'
},
...
...
@@ -89,10 +88,6 @@ main(int argc, char **argv)
while
((
arg
=
getopt_long
(
argc
,
argv
,
"?aeho:u:p:qd:l:t:irs:w"
,
l_opt
,
&
l_index
))
!=
-
1
)
{
#else
while
((
arg
=
getopt
(
argc
,
argv
,
"?aeho:u:p:qd:l:t:irs:w"
))
!=
-
1
)
{
#endif
switch
(
arg
)
{
case
'?'
:
...
...
@@ -272,11 +267,8 @@ parse_lolist(LODumpMaster * pgLO)
static
void
usage
()
{
printf
(
"
\n
pg_dumplo %s - PostgreSQL large objects dump
\n
"
,
VERSION
);
printf
(
"
\n
pg_dumplo %s - PostgreSQL large objects dump
\n
"
,
PG_
VERSION
);
puts
(
"pg_dumplo [option]
\n\n
"
#ifdef HAVE_GETOPT_LONG
"-h --help this help
\n
"
"-u --user=<username> username for connection to server
\n
"
"-p --password=<password> password for connection to server
\n
"
...
...
@@ -291,27 +283,7 @@ usage()
"-r --remove if is set '-i' try remove old LO
\n
"
"-q --quiet run quietly
\n
"
"-w --show not dump, but show all LO in DB
\n
"
);
/* puts() */
#else
"-h this help
\n
"
"-u <username> username for connection to server
\n
"
"-p <password> password for connection to server
\n
"
"-d <database> database name
\n
"
"-t <hostname> server hostname
\n
"
"-o <port> database server port (default: 5432)
\n
"
"-s <dir> directory with dump tree (for export/import)
\n
"
"-i import large obj dump tree to DB
\n
"
"-e export (dump) large obj to dump tree
\n
"
"-l <table.attr ...> dump attribute (columns) with LO to dump tree
\n
"
"-a dump all LO in DB (default)
\n
"
"-r if is set '-i' try remove old LO
\n
"
"-q run quietly
\n
"
"-w not dump, but show all LO in DB
\n
"
);
/* puts() */
#endif
puts
(
"
\n
"
"Example (dump): pg_dumplo -d my_db -s /my_dump/dir -l t1.a t1.b t2.a
\n
"
" pg_dumplo -a -d my_db -s /my_dump/dir
\n
"
"Example (import): pg_dumplo -i -d my_db -s /my_dump/dir
\n
"
...
...
@@ -319,6 +291,6 @@ usage()
"Note: * option '-l' must be last option!
\n
"
" * option '-i' without option '-r' make new large obj in DB
\n
"
" not rewrite old, the '-i' UPDATE oid numbers in table.attr only!
\n
"
" * if
is not set option -s, the pg_dumplo use
$PWD
\n
"
" * if
option -s is not set, pg_dumplo uses
$PWD
\n
"
);
/* puts() */
}
contrib/pg_dumplo/pg_dumplo.h
View file @
30a800a0
/* -------------------------------------------------------------------------
* pg_dumplo
* pg_dumplo
.h
*
* $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/pg_dumplo.h,v 1.
8 2001/11/12 17:44:14 momjian
Exp $
* $Header: /cvsroot/pgsql/contrib/pg_dumplo/Attic/pg_dumplo.h,v 1.
9 2003/01/07 21:42:38 tgl
Exp $
*
* Karel Zak 1999-2000
* -------------------------------------------------------------------------
...
...
@@ -12,8 +12,6 @@
#include "postgres_ext.h"
#define VERSION "7.1.0"
/* ----------
* Define
* ----------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment