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 @@ -282,7 +282,7 @@ static int pgsql_stmt_execute(pdo_stmt_t *stmt)
282282 S -> param_formats ,
283283 0 );
284284 } else {
285- S -> result = PQexecPrepared (H -> server , S -> stmt_name ,
285+ S -> result = PQexecPrepared (H -> server , S -> stmt_name ,
286286 stmt -> bound_params ?
287287 zend_hash_num_elements (stmt -> bound_params ) :
288288 0 ,
@@ -302,7 +302,7 @@ static int pgsql_stmt_execute(pdo_stmt_t *stmt)
302302 S -> param_formats ,
303303 0 );
304304 } else {
305- S -> result = PQexecParams (H -> server , ZSTR_VAL (S -> query ),
305+ S -> result = PQexecParams (H -> server , ZSTR_VAL (S -> query ),
306306 stmt -> bound_params ? zend_hash_num_elements (stmt -> bound_params ) : 0 ,
307307 S -> param_types ,
308308 (const char * * )S -> param_values ,
@@ -315,7 +315,7 @@ static int pgsql_stmt_execute(pdo_stmt_t *stmt)
315315 if (S -> is_unbuffered ) {
316316 dispatch_result = PQsendQuery (H -> server , ZSTR_VAL (stmt -> active_query_string ));
317317 } else {
318- S -> result = PQexec (H -> server , ZSTR_VAL (stmt -> active_query_string ));
318+ S -> result = PQexec (H -> server , ZSTR_VAL (stmt -> active_query_string ));
319319 }
320320 }
321321
You can’t perform that action at this time.
0 commit comments