summaryrefslogtreecommitdiff
path: root/src/bin/psql/tab-complete.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/psql/tab-complete.c')
-rw-r--r--src/bin/psql/tab-complete.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c
index 4cb2c49be9..6a8bb0ee99 100644
--- a/src/bin/psql/tab-complete.c
+++ b/src/bin/psql/tab-complete.c
@@ -3901,13 +3901,9 @@ psql_completion(const char *text, int start, int end)
}
}
else if (strcmp(prev_wd, "\\unset") == 0)
- {
matches = complete_from_variables(text, "", "", true);
- }
else if (strcmp(prev_wd, "\\set") == 0)
- {
matches = complete_from_variables(text, "", "", false);
- }
else if (strcmp(prev2_wd, "\\set") == 0)
{
static const char *const boolean_value_list[] =