aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-08-01 18:45:50 +0000
committerBruce Momjian <bruce@momjian.us>2001-08-01 18:45:50 +0000
commit7208518720260735b7c8b1c27f34e5fe08951241 (patch)
treeec11d4071c6c170a8fc31ba73272523d77dc05db /src
parentea72cc4e111166905c17289cb78d39571b3cb59b (diff)
downloadpostgresql-7208518720260735b7c8b1c27f34e5fe08951241.tar.gz
postgresql-7208518720260735b7c8b1c27f34e5fe08951241.zip
Attached is a trivial patch to add ANALYZE to the tab complete file in
psql. Randy Hall
Diffstat (limited to 'src')
-rw-r--r--src/bin/psql/tab-complete.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c
index 8e5e4360152..d581b094bf0 100644
--- a/src/bin/psql/tab-complete.c
+++ b/src/bin/psql/tab-complete.c
@@ -3,7 +3,7 @@
*
* Copyright 2000 by PostgreSQL Global Development Group
*
- * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.34 2001/06/20 18:39:14 petere Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.35 2001/08/01 18:45:50 momjian Exp $
*/
/*----------------------------------------------------------------------
@@ -195,7 +195,7 @@ psql_completion(char *text, int start, int end)
*prev4_wd;
static char *sql_commands[] = {
- "ABORT", "ALTER", "BEGIN", "CLOSE", "CLUSTER", "COMMENT", "COMMIT", "COPY",
+ "ABORT", "ALTER", "ANALYZE", "BEGIN", "CLOSE", "CLUSTER", "COMMENT", "COMMIT", "COPY",
"CREATE", "DECLARE", "DELETE", "DROP", "EXPLAIN", "FETCH", "GRANT",
"INSERT", "LISTEN", "LOAD", "LOCK", "MOVE", "NOTIFY", "RESET",
"REVOKE", "ROLLBACK", "SELECT", "SET", "SHOW", "TRUNCATE", "UNLISTEN", "UPDATE",