File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/interfaces/libpq/fe-exec.c,v 1.188 2006/07 /04 13: 22:15 momjian Exp $
11
+ * $PostgreSQL: pgsql/src/interfaces/libpq/fe-exec.c,v 1.189 2006/08 /04 22:20:06 momjian Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
@@ -973,6 +973,7 @@ PQsendQueryGuts(PGconn *conn,
973
973
pqPuts ("" , conn ) < 0 ||
974
974
pqPuts (stmtName , conn ) < 0 )
975
975
goto sendFailed ;
976
+
976
977
if (nParams > 0 && paramFormats )
977
978
{
978
979
if (pqPutInt (nParams , 2 , conn ) < 0 )
@@ -988,8 +989,10 @@ PQsendQueryGuts(PGconn *conn,
988
989
if (pqPutInt (0 , 2 , conn ) < 0 )
989
990
goto sendFailed ;
990
991
}
992
+
991
993
if (pqPutInt (nParams , 2 , conn ) < 0 )
992
994
goto sendFailed ;
995
+
993
996
for (i = 0 ; i < nParams ; i ++ )
994
997
{
995
998
if (paramValues && paramValues [i ])
You can’t perform that action at this time.
0 commit comments