projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e48c57
)
Fix bug I introduced while cleaning up pg_dump -t/-n patch.
author
Bruce Momjian
<bruce@momjian.us>
Tue, 1 Aug 2006 21:05:00 +0000
(21:05 +0000)
committer
Bruce Momjian
<bruce@momjian.us>
Tue, 1 Aug 2006 21:05:00 +0000
(21:05 +0000)
src/bin/pg_dump/pg_dump.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/pg_dump/pg_dump.c
b/src/bin/pg_dump/pg_dump.c
index c018165dfed67ff220e81a6fd390587a8a3fc9e9..c7c1bbae837fcb1229e8a49c33bd304ff892c250 100644
(file)
--- a/
src/bin/pg_dump/pg_dump.c
+++ b/
src/bin/pg_dump/pg_dump.c
@@
-193,7
+193,7
@@
main(int argc, char **argv)
{
PQExpBuffer query = createPQExpBuffer();
PGresult *res;
- objnameArg *this_obj_name = NULL;
+ objnameArg *this_obj_name
, *schemaList_tail = NULL, *tableList_tail
= NULL;
int c;
const char *filename = NULL;
const char *format = "p";
@@
-301,8
+301,6
@@
main(int argc, char **argv)
while ((c = getopt_long(argc, argv, "abcCdDE:f:F:h:in:N:oOp:RsS:t:T:uU:vWxX:Z:",
long_options, &optindex)) != -1)
{
- objnameArg *schemaList_tail = NULL, *tableList_tail = NULL;
-
switch (c)
{
case 'a': /* Dump data only */