Skip to content

Commit 248f9cf

Browse files
committed
Remove more leftovers of mysqli embedded server
1 parent 9624e87 commit 248f9cf

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

ext/mysqli/mysqli_fe.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,6 @@ PHP_FUNCTION(mysqli_stmt_prepare);
101101
PHP_FUNCTION(mysqli_stmt_fetch);
102102
PHP_FUNCTION(mysqli_stmt_param_count);
103103
PHP_FUNCTION(mysqli_stmt_send_long_data);
104-
PHP_FUNCTION(mysqli_embedded_server_end);
105-
PHP_FUNCTION(mysqli_embedded_server_start);
106104
PHP_FUNCTION(mysqli_sqlstate);
107105
PHP_FUNCTION(mysqli_ssl_set);
108106
PHP_FUNCTION(mysqli_stat);

ext/mysqli/tests/mysqli_class_mysqli_driver_interface.phpt

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,6 @@ require_once('skipifconnectfailure.inc');
2020
$methods = get_class_methods($driver);
2121
$expected_methods = array();
2222

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-
3223
foreach ($methods as $k => $method) {
3324
if (isset($expected_methods[$method])) {
3425
unset($expected_methods[$method]);

0 commit comments

Comments
 (0)