From: Bruce Momjian Date: Wed, 1 Aug 2001 18:45:50 +0000 (+0000) Subject: Attached is a trivial patch to add ANALYZE to the tab complete file in X-Git-Tag: REL7_2_BETA1~789 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7208518720260735b7c8b1c27f34e5fe08951241;p=postgresql Attached is a trivial patch to add ANALYZE to the tab complete file in psql. Randy Hall --- diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 8e5e436015..d581b094bf 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",