We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent4cab43e commit4376fdbCopy full SHA for 4376fdb
src/bin/psql/mainloop.c
@@ -237,7 +237,13 @@ MainLoop(FILE *source)
237
boolfound_exit_or_quit= false;
238
boolfound_q= false;
239
240
-/* Search for the words we recognize; must be first word */
+/*
241
+ * The assistance words, help/exit/quit, must have no
242
+ * whitespace before them, and only whitespace after, with an
243
+ * optional semicolon. This prevents indented use of these
244
+ * words, perhaps as identifiers, from invoking the assistance
245
+ * behavior.
246
+ */
247
if (pg_strncasecmp(first_word,"help",4)==0)
248
{
249
rest_of_line=first_word+4;
@@ -249,7 +255,6 @@ MainLoop(FILE *source)
255
250
256
found_exit_or_quit= true;
251
257
}
252
-
253
258
elseif (strncmp(first_word,"\\q",2)==0)
254
259
260
rest_of_line=first_word+2;