Commit 0baf82fa authored by Fujii Masao's avatar Fujii Masao

Improve tab-completion for DEALLOCATE.

Author: Naoki Nakamichi
Reviewed-by: Fujii Masao
Discussion: https://postgr.es/m/ec1a45b06edfce13706f2c765778d8c2@oss.nttdata.com
parent cc99baa4
...@@ -2911,7 +2911,8 @@ psql_completion(const char *text, int start, int end) ...@@ -2911,7 +2911,8 @@ psql_completion(const char *text, int start, int end)
/* DEALLOCATE */ /* DEALLOCATE */
else if (Matches("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 */ /* DECLARE */
else if (Matches("DECLARE", MatchAny)) else if (Matches("DECLARE", MatchAny))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment