File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ static int pgsql_stmt_execute(pdo_stmt_t *stmt)
273273 S -> param_formats ,
274274 0 );
275275 } else {
276- S -> result = PQexecPrepared (H -> server , S -> stmt_name ,
276+ S -> result = PQexecPrepared (H -> server , S -> stmt_name ,
277277 stmt -> bound_params ?
278278 zend_hash_num_elements (stmt -> bound_params ) :
279279 0 ,
@@ -293,7 +293,7 @@ static int pgsql_stmt_execute(pdo_stmt_t *stmt)
293293 S -> param_formats ,
294294 0 );
295295 } else {
296- S -> result = PQexecParams (H -> server , ZSTR_VAL (S -> query ),
296+ S -> result = PQexecParams (H -> server , ZSTR_VAL (S -> query ),
297297 stmt -> bound_params ? zend_hash_num_elements (stmt -> bound_params ) : 0 ,
298298 S -> param_types ,
299299 (const char * * )S -> param_values ,
@@ -306,7 +306,7 @@ static int pgsql_stmt_execute(pdo_stmt_t *stmt)
306306 if (S -> is_unbuffered ) {
307307 dispatch_result = PQsendQuery (H -> server , ZSTR_VAL (stmt -> active_query_string ));
308308 } else {
309- S -> result = PQexec (H -> server , ZSTR_VAL (stmt -> active_query_string ));
309+ S -> result = PQexec (H -> server , ZSTR_VAL (stmt -> active_query_string ));
310310 }
311311 }
312312
You can’t perform that action at this time.
0 commit comments