aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2017-07-12 12:30:50 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2017-07-12 12:31:18 +0300
commit4ddc6a2d9aa561072285ef8c52229faa826cc633 (patch)
tree3f2ac31edec7848a645262092ad21b88d8e4774b
parenta8358559e78893725cab888ba0077ca216d619d6 (diff)
downloadpostgresql-4ddc6a2d9aa561072285ef8c52229faa826cc633.tar.gz
postgresql-4ddc6a2d9aa561072285ef8c52229faa826cc633.zip
Remove unnecessary braces, to match the surrounding style.
Mostly in the new subscription-related commands. Backport the few that were also present in older versions. Thomas Munro Discussion: https://www.postgresql.org/message-id/CAEepm=3CyW1QmXcXJXmqiJXtXzFDc8SvSfnxkEGD3Bkv2SrkeQ@mail.gmail.com
-rw-r--r--src/bin/psql/tab-complete.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c
index fae7424913b..1150952b2e2 100644
--- a/src/bin/psql/tab-complete.c
+++ b/src/bin/psql/tab-complete.c
@@ -3526,9 +3526,7 @@ psql_completion(const char *text, int start, int end)
}
}
else if (strcmp(prev_wd, "\\set") == 0)
- {
matches = complete_from_variables(text, "", "");
- }
else if (strcmp(prev_wd, "\\sf") == 0 || strcmp(prev_wd, "\\sf+") == 0)
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_functions, NULL);
else if (strcmp(prev_wd, "\\cd") == 0 ||