Commit daac2d0c authored by Peter Eisentraut's avatar Peter Eisentraut

Parse the arguments of \connect as SQL identifiers, so that they expose

the expected behavior in mixed-case situations.

bug report from James Pattie, 2001-08-31
parent 60ce9e92
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* *
* Copyright 2000 by PostgreSQL Global Development Group * Copyright 2000 by PostgreSQL Global Development Group
* *
* $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 $
*/ */
#include "postgres_fe.h" #include "postgres_fe.h"
#include "command.h" #include "command.h"
...@@ -241,8 +241,8 @@ exec_command(const char *cmd, ...@@ -241,8 +241,8 @@ exec_command(const char *cmd,
char opt1q, char opt1q,
opt2q; opt2q;
opt1 = scan_option(&string, OT_NORMAL, &opt1q); opt1 = scan_option(&string, OT_SQLID, &opt1q);
opt2 = scan_option(&string, OT_NORMAL, &opt2q); opt2 = scan_option(&string, OT_SQLID, &opt2q);
if (opt2) if (opt2)
/* gave username */ /* gave username */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment