mirror of
https://github.com/postgres/postgres.git
synced 2026-06-10 01:00:11 -04:00
Improve tab-completion for DEALLOCATE.
Author: Naoki Nakamichi Reviewed-by: Fujii Masao Discussion: https://postgr.es/m/ec1a45b06edfce13706f2c765778d8c2@oss.nttdata.com
This commit is contained in:
parent
cc99baa43e
commit
0baf82fa0c
1 changed files with 2 additions and 1 deletions
|
|
@ -2911,7 +2911,8 @@ psql_completion(const char *text, int start, int end)
|
|||
|
||||
/* DEALLOCATE */
|
||||
else if (Matches("DEALLOCATE"))
|
||||
COMPLETE_WITH_QUERY(Query_for_list_of_prepared_statements);
|
||||
COMPLETE_WITH_QUERY(Query_for_list_of_prepared_statements
|
||||
" UNION SELECT 'ALL'");
|
||||
|
||||
/* DECLARE */
|
||||
else if (Matches("DECLARE", MatchAny))
|
||||
|
|
|
|||
Loading…
Reference in a new issue