diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2013-04-04 19:56:33 -0400 | 
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2013-04-04 19:56:59 -0400 | 
| commit | c6a3fce7dd4dae6e1a005e5b09cdd7c1d7f9c4f4 (patch) | |
| tree | e4e3185ceddb40fd278b2494583c5c09e7c1bfbf /src/bin/psql/tab-complete.c | |
| parent | e75feb28341ea49e9d41266906e701a4e3742e2e (diff) | |
Add \watch [SEC] command to psql.
This allows convenient re-execution of commands.
Will Leinweber, reviewed by Peter Eisentraut, Daniel Farina, and Tom Lane
Diffstat (limited to 'src/bin/psql/tab-complete.c')
| -rw-r--r-- | src/bin/psql/tab-complete.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index d2170308f7c..7d2c8126126 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -900,7 +900,7 @@ psql_completion(char *text, int start, int end)  		"\\lo_import", "\\lo_export", "\\lo_list", "\\lo_unlink",  		"\\o", "\\p", "\\password", "\\prompt", "\\pset", "\\q", "\\qecho", "\\r",  		"\\set", "\\sf", "\\t", "\\T", -		"\\timing", "\\unset", "\\x", "\\w", "\\z", "\\!", NULL +		"\\timing", "\\unset", "\\x", "\\w", "\\watch", "\\z", "\\!", NULL  	};  	(void) end;					/* not used */ | 
