-
Notifications
You must be signed in to change notification settings - Fork 15
/
help.h
33 lines (30 loc) · 1.07 KB
/
help.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* Simple help text displayed by "show_help" */
#ifndef _HELP_H_
#define _HELP_H_
char *help_text = "\n\
A top users display for PostgreSQL\n\
\n\
These single-character commands are available:\n\
\n\
^L - redraw screen\n\
<sp> - update screen\n\
A - EXPLAIN ANALYZE (UPDATE/DELETE safe)\n\
a - show PostgreSQL activity\n\
C - toggle the use of color\n\
E - show execution plan (UPDATE/DELETE safe)\n\
I - show I/O statistics per process (Linux only)\n\
L - show locks held by a process\n\
Q - show current query of a process\n\
c - toggle the display of process commands\n\
d - change number of displays to show\n\
h or ? - help; show this text\n\
i - toggle the displaying of idle processes\n\
n or # - change number of processes to display\n\
o - specify sort order (%s)\n\
q - quit\n\
s - change number of seconds to delay between updates\n\
u - display processes for only one user (+ selects all users)\n\
\n\
Not all commands are available on all systems.\n\
";
#endif /* _HELP_H_ */