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
b2f47aa3
Commit
b2f47aa3
authored
Feb 25, 2009
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up help (-?) output.
parent
a3c502c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
10 deletions
+11
-10
contrib/vacuumlo/vacuumlo.c
contrib/vacuumlo/vacuumlo.c
+11
-10
No files found.
contrib/vacuumlo/vacuumlo.c
View file @
b2f47aa3
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/contrib/vacuumlo/vacuumlo.c,v 1.3
8 2009/02/25 13:24:40
petere Exp $
* $PostgreSQL: pgsql/contrib/vacuumlo/vacuumlo.c,v 1.3
9 2009/02/25 13:34:32
petere Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -301,15 +301,16 @@ vacuumlo(char *database, struct _param * param)
void
usage
(
void
)
{
fprintf
(
stdout
,
"vacuumlo removes unreferenced large objects from databases
\n\n
"
);
fprintf
(
stdout
,
"Usage:
\n
vacuumlo [options] dbname [dbname ...]
\n\n
"
);
fprintf
(
stdout
,
"Options:
\n
"
);
fprintf
(
stdout
,
" -v
\t\t
Write a lot of progress messages
\n
"
);
fprintf
(
stdout
,
" -n
\t\t
Don't remove large objects, just show what would be done
\n
"
);
fprintf
(
stdout
,
" -U username
\t
Username to connect as
\n
"
);
fprintf
(
stdout
,
" -W
\t\t
Force password prompt
\n
"
);
fprintf
(
stdout
,
" -h hostname
\t
Database server host
\n
"
);
fprintf
(
stdout
,
" -p port
\t
Database server port
\n\n
"
);
printf
(
"vacuumlo removes unreferenced large objects from databases.
\n\n
"
);
printf
(
"Usage:
\n
vacuumlo [OPTION]... DBNAME...
\n\n
"
);
printf
(
"Options:
\n
"
);
printf
(
" -h HOSTNAME database server host or socket directory
\n
"
);
printf
(
" -n don't remove large objects, just show what would be done
\n
"
);
printf
(
" -p PORT database server port
\n
"
);
printf
(
" -U USERNAME user name to connect as
\n
"
);
printf
(
" -W force password prompt
\n
"
);
printf
(
" -v write a lot of progress messages
\n
"
);
printf
(
"
\n
"
);
}
...
...
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