File tree Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -101,8 +101,6 @@ PHP_FUNCTION(mysqli_stmt_prepare);
101
101
PHP_FUNCTION (mysqli_stmt_fetch );
102
102
PHP_FUNCTION (mysqli_stmt_param_count );
103
103
PHP_FUNCTION (mysqli_stmt_send_long_data );
104
- PHP_FUNCTION (mysqli_embedded_server_end );
105
- PHP_FUNCTION (mysqli_embedded_server_start );
106
104
PHP_FUNCTION (mysqli_sqlstate );
107
105
PHP_FUNCTION (mysqli_ssl_set );
108
106
PHP_FUNCTION (mysqli_stat );
Original file line number Diff line number Diff line change @@ -20,15 +20,6 @@ require_once('skipifconnectfailure.inc');
20
20
$ methods = get_class_methods ($ driver );
21
21
$ expected_methods = array ();
22
22
23
- if (!$ IS_MYSQLND && (isset ($ methods ['embedded_server_start ' ]))) {
24
- /* libmysql only - needs extra compile flag, no way to check properly in the
25
- PHP user land if its compiled in or not */
26
- $ expected_methods = array_merge ($ expected_methods , array (
27
- 'embedded_server_start ' => true ,
28
- 'embedded_server_end ' => true ,
29
- ));
30
- }
31
-
32
23
foreach ($ methods as $ k => $ method ) {
33
24
if (isset ($ expected_methods [$ method ])) {
34
25
unset($ expected_methods [$ method ]);
You can’t perform that action at this time.
0 commit comments