Commit 05e85d35 authored by Peter Eisentraut's avatar Peter Eisentraut

psql: Fix \ef, \sf tab completion

\ef and \sf take any kind of routine, not just normal functions.

Author: Pavel Stehule <pavel.stehule@gmail.com>
parent 6278a2a2
...@@ -3685,7 +3685,7 @@ psql_completion(const char *text, int start, int end) ...@@ -3685,7 +3685,7 @@ psql_completion(const char *text, int start, int end)
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_relations, NULL); COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_relations, NULL);
else if (TailMatchesCS1("\\ef")) else if (TailMatchesCS1("\\ef"))
COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions, NULL); COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines, NULL);
else if (TailMatchesCS1("\\ev")) else if (TailMatchesCS1("\\ev"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_views, NULL); COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_views, NULL);
...@@ -3794,7 +3794,7 @@ psql_completion(const char *text, int start, int end) ...@@ -3794,7 +3794,7 @@ psql_completion(const char *text, int start, int end)
COMPLETE_WITH_LIST_CS3("default", "verbose", "terse"); COMPLETE_WITH_LIST_CS3("default", "verbose", "terse");
} }
else if (TailMatchesCS1("\\sf*")) else if (TailMatchesCS1("\\sf*"))
COMPLETE_WITH_VERSIONED_SCHEMA_QUERY(Query_for_list_of_functions, NULL); COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_routines, NULL);
else if (TailMatchesCS1("\\sv*")) else if (TailMatchesCS1("\\sv*"))
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_views, NULL); COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_views, NULL);
else if (TailMatchesCS1("\\cd|\\e|\\edit|\\g|\\i|\\include|" else if (TailMatchesCS1("\\cd|\\e|\\edit|\\g|\\i|\\include|"
......
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