We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a51df14 commit 920c58dCopy full SHA for 920c58d
src/interfaces/libpq/fe-connect.c
@@ -7,7 +7,7 @@
7
*
8
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.27 1997/03/25 09:08:06 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-connect.c,v 1.28 1997/04/02 18:26:25 scrappy Exp $
11
12
*-------------------------------------------------------------------------
13
*/
@@ -540,7 +540,7 @@ connectDB(PGconn *conn)
540
{
541
PGresult *res;
542
543
- sprintf(setQuery, "SET %s TO \".60%s\"", eo->pgName, val);
+ sprintf(setQuery, "SET %s TO '.60%s'", eo->pgName, val);
544
res = PQexec(conn, setQuery);
545
PQclear(res); /* Don't care? */
546
}
0 commit comments