1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00

Fix 2nd param name of pg_send_execute()

Closes GH-7576
This commit is contained in:
Máté Kocsis
2021-10-13 12:46:27 +02:00
parent 6d0d5227d8
commit ca219d7d27
2 changed files with 7 additions and 3 deletions

View File

@@ -464,7 +464,7 @@ function pg_send_query_params($connection, string $query, array $params): int|bo
function pg_send_prepare($connection, string $statement_name, string $query): int|bool {}
/** @param resource $connection */
function pg_send_execute($connection, string $query, array $params): int|bool {}
function pg_send_execute($connection, string $statement_name, array $params): int|bool {}
/**
* @param resource $connection

View File

@@ -1,5 +1,5 @@
/* This is a generated file, edit the .stub.php file instead.
* Stub hash: b996f10e06a18f0995a9614bd05340987beda8ea */
* Stub hash: 72a1beeb327cd6fdb135ed8de8c6fc1372f76303 */
ZEND_BEGIN_ARG_INFO_EX(arginfo_pg_connect, 0, 0, 1)
ZEND_ARG_TYPE_INFO(0, connection_string, IS_STRING, 0)
@@ -374,7 +374,11 @@ ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX(arginfo_pg_send_prepare, 0, 3, MAY_BE_LO
ZEND_ARG_TYPE_INFO(0, query, IS_STRING, 0)
ZEND_END_ARG_INFO()
#define arginfo_pg_send_execute arginfo_pg_send_query_params
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX(arginfo_pg_send_execute, 0, 3, MAY_BE_LONG|MAY_BE_BOOL)
ZEND_ARG_INFO(0, connection)
ZEND_ARG_TYPE_INFO(0, statement_name, IS_STRING, 0)
ZEND_ARG_TYPE_INFO(0, params, IS_ARRAY, 0)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_pg_get_result, 0, 0, 1)
ZEND_ARG_INFO(0, connection)