File tree 1 file changed +3
-3
lines changed
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)
282
282
S -> param_formats ,
283
283
0 );
284
284
} else {
285
- S -> result = PQexecPrepared (H -> server , S -> stmt_name ,
285
+ S -> result = PQexecPrepared (H -> server , S -> stmt_name ,
286
286
stmt -> bound_params ?
287
287
zend_hash_num_elements (stmt -> bound_params ) :
288
288
0 ,
@@ -302,7 +302,7 @@ static int pgsql_stmt_execute(pdo_stmt_t *stmt)
302
302
S -> param_formats ,
303
303
0 );
304
304
} else {
305
- S -> result = PQexecParams (H -> server , ZSTR_VAL (S -> query ),
305
+ S -> result = PQexecParams (H -> server , ZSTR_VAL (S -> query ),
306
306
stmt -> bound_params ? zend_hash_num_elements (stmt -> bound_params ) : 0 ,
307
307
S -> param_types ,
308
308
(const char * * )S -> param_values ,
@@ -315,7 +315,7 @@ static int pgsql_stmt_execute(pdo_stmt_t *stmt)
315
315
if (S -> is_unbuffered ) {
316
316
dispatch_result = PQsendQuery (H -> server , ZSTR_VAL (stmt -> active_query_string ));
317
317
} 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 ));
319
319
}
320
320
}
321
321
You can’t perform that action at this time.
0 commit comments