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 @@ -273,7 +273,7 @@ static int pgsql_stmt_execute(pdo_stmt_t *stmt)
273
273
S -> param_formats ,
274
274
0 );
275
275
} else {
276
- S -> result = PQexecPrepared (H -> server , S -> stmt_name ,
276
+ S -> result = PQexecPrepared (H -> server , S -> stmt_name ,
277
277
stmt -> bound_params ?
278
278
zend_hash_num_elements (stmt -> bound_params ) :
279
279
0 ,
@@ -293,7 +293,7 @@ static int pgsql_stmt_execute(pdo_stmt_t *stmt)
293
293
S -> param_formats ,
294
294
0 );
295
295
} else {
296
- S -> result = PQexecParams (H -> server , ZSTR_VAL (S -> query ),
296
+ S -> result = PQexecParams (H -> server , ZSTR_VAL (S -> query ),
297
297
stmt -> bound_params ? zend_hash_num_elements (stmt -> bound_params ) : 0 ,
298
298
S -> param_types ,
299
299
(const char * * )S -> param_values ,
@@ -306,7 +306,7 @@ static int pgsql_stmt_execute(pdo_stmt_t *stmt)
306
306
if (S -> is_unbuffered ) {
307
307
dispatch_result = PQsendQuery (H -> server , ZSTR_VAL (stmt -> active_query_string ));
308
308
} 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 ));
310
310
}
311
311
}
312
312
You can’t perform that action at this time.
0 commit comments