diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-09-02 06:19:38 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-09-02 06:19:38 +0000 |
commit | f1c1685b391e76c3784c8809eeb5c47df04016c0 (patch) | |
tree | d17a6c4e54e9aef1dc98ffd8e776fa83305dbb8d | |
parent | 7b8eb0b4f1245f65e61ba30eea51bbbbfce9bdb9 (diff) | |
download | postgresql-f1c1685b391e76c3784c8809eeb5c47df04016c0.tar.gz postgresql-f1c1685b391e76c3784c8809eeb5c47df04016c0.zip |
Tab completion in psql is missing the REINDEX command.
Alvaro Herrera
-rw-r--r-- | src/bin/psql/tab-complete.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 72a24e38348..cc95a602dd7 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -3,7 +3,7 @@ * * Copyright 2000-2002 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.62 2002/09/02 05:42:54 momjian Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.63 2002/09/02 06:19:38 momjian Exp $ */ /*---------------------------------------------------------------------- @@ -197,7 +197,7 @@ psql_completion(char *text, int start, int end) static char *sql_commands[] = { "ABORT", "ALTER", "ANALYZE", "BEGIN", "CLOSE", "CLUSTER", "COMMENT", "COMMIT", "COPY", "CREATE", "DECLARE", "DELETE", "DROP", "EXPLAIN", "FETCH", "GRANT", - "INSERT", "LISTEN", "LOAD", "LOCK", "MOVE", "NOTIFY", "RESET", + "INSERT", "LISTEN", "LOAD", "LOCK", "MOVE", "NOTIFY", "REINDEX", "RESET", "REVOKE", "ROLLBACK", "SELECT", "SET", "SHOW", "TRUNCATE", "UNLISTEN", "UPDATE", "VACUUM", NULL }; |