We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60ce9e9 commit daac2d0Copy full SHA for daac2d0
src/bin/psql/command.c
@@ -3,7 +3,7 @@
3
*
4
* Copyright 2000 by PostgreSQL Global Development Group
5
6
- * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.56 2001/06/08 23:53:48 petere Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/command.c,v 1.57 2001/09/02 23:52:19 petere Exp $
7
*/
8
#include "postgres_fe.h"
9
#include "command.h"
@@ -241,8 +241,8 @@ exec_command(const char *cmd,
241
char opt1q,
242
opt2q;
243
244
- opt1 = scan_option(&string, OT_NORMAL, &opt1q);
245
- opt2 = scan_option(&string, OT_NORMAL, &opt2q);
+ opt1 = scan_option(&string, OT_SQLID, &opt1q);
+ opt2 = scan_option(&string, OT_SQLID, &opt2q);
246
247
if (opt2)
248
/* gave username */
0 commit comments