Skip to content

Commit 66a3ea0

Browse files
committed
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
1 parent 521fede commit 66a3ea0

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/bin/psql/tab-complete.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3360,9 +3360,7 @@ psql_completion(char *text, int start, int end)
33603360
}
33613361
}
33623362
else if (strcmp(prev_wd, "\\set") == 0)
3363-
{
33643363
matches = complete_from_variables(text, "", "");
3365-
}
33663364
else if (strcmp(prev_wd, "\\sf") == 0 || strcmp(prev_wd, "\\sf+") == 0)
33673365
COMPLETE_WITH_SCHEMA_QUERY(Query_for_list_of_functions, NULL);
33683366
else if (strcmp(prev_wd, "\\cd") == 0 ||

0 commit comments

Comments
 (0)