1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03: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:
Fujii Masao
2020-09-28 11:23:15 +09:00
parent cc99baa43e
commit 0baf82fa0c

View File

@ -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))