@@ -424,8 +424,13 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_oci_set_client_info, 0, 0, 2)
424424ZEND_END_ARG_INFO ()
425425
426426ZEND_BEGIN_ARG_INFO_EX (arginfo_oci_set_db_operation , 0 , 0 , 2 )
427- ZEND_ARG_INFO (0 , connection_resource )
428- ZEND_ARG_INFO (0 , action )
427+ ZEND_ARG_INFO (0 , connection_resource )
428+ ZEND_ARG_INFO (0 , action )
429+ ZEND_END_ARG_INFO ()
430+
431+ ZEND_BEGIN_ARG_INFO_EX (arginfo_oci_set_call_timeout , 0 , 0 , 2 )
432+ ZEND_ARG_INFO (0 , connection_resource )
433+ ZEND_ARG_INFO (0 , call_timeout )
429434ZEND_END_ARG_INFO ()
430435
431436ZEND_BEGIN_ARG_INFO_EX (arginfo_oci_password_change , 0 , 0 , 4 )
@@ -671,6 +676,7 @@ PHP_FUNCTION(oci_num_rows);
671676PHP_FUNCTION (oci_set_prefetch );
672677PHP_FUNCTION (oci_set_client_identifier );
673678PHP_FUNCTION (oci_set_db_operation );
679+ PHP_FUNCTION (oci_set_call_timeout );
674680PHP_FUNCTION (oci_set_edition );
675681PHP_FUNCTION (oci_set_module_name );
676682PHP_FUNCTION (oci_set_action );
@@ -774,6 +780,7 @@ static const zend_function_entry php_oci_functions[] = {
774780 PHP_FE (oci_set_prefetch , arginfo_oci_set_prefetch )
775781 PHP_FE (oci_set_client_identifier , arginfo_oci_set_client_identifier )
776782 PHP_FE (oci_set_db_operation , arginfo_oci_set_db_operation )
783+ PHP_FE (oci_set_call_timeout , arginfo_oci_set_call_timeout )
777784 PHP_FE (oci_set_edition , arginfo_oci_set_edition )
778785 PHP_FE (oci_set_module_name , arginfo_oci_set_module_name )
779786 PHP_FE (oci_set_action , arginfo_oci_set_action )
0 commit comments