MySQLnd: Remove unused fetch_field_data method

This method is not used, and is implemented in a very dubious
way.
This commit is contained in:
Nikita Popov 2020-12-15 10:47:39 +01:00
parent 36ff92e6fb
commit be4f73f328
3 changed files with 0 additions and 40 deletions

View file

@ -101,7 +101,6 @@ PHPAPI void mysqlnd_debug(const char *mode);
#define mysqlnd_fetch_into(result, flags, ret_val, ext) (result)->m.fetch_into((result), (flags), (ret_val), (ext) ZEND_FILE_LINE_CC)
#define mysqlnd_fetch_row_c(result) (result)->m.fetch_row_c((result))
#define mysqlnd_fetch_all(result, flags, return_value) (result)->m.fetch_all((result), (flags), (return_value) ZEND_FILE_LINE_CC)
#define mysqlnd_result_fetch_field_data(res,offset,ret) (res)->m.fetch_field_data((res), (offset), (ret))
#define mysqlnd_get_connection_stats(conn, values) ((conn)->data)->m->get_statistics((conn)->data, (values) ZEND_FILE_LINE_CC)
#define mysqlnd_get_client_stats(values) _mysqlnd_get_client_stats(mysqlnd_global_stats, (values) ZEND_FILE_LINE_CC)