mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
SCRUM
embedded&client library some fixes: zero at the end of the data added mysql_list_fields became 'virtual' include/mysql.h: mysql_list_fields became 'virtual' libmysql/client_settings.h: in client library we need proper implementation for list_fields libmysql/libmysql.c: implementation for remote server libmysqld/lib_sql.cc: we still need zero at the end of the data in client (see mysql.cc). I feel it should be changed libmysqld/libmysqld.c: implementation for embedded server sql-common/client.c: cli_list_fields member set for client library sql/client_settings.h: we don't need mysql_list_fields in mini_client code
This commit is contained in:
@ -41,3 +41,5 @@ my_bool send_file_to_server(MYSQL *mysql, const char *filename);
|
||||
#define reset_sigpipe(mysql)
|
||||
#endif
|
||||
|
||||
MYSQL_RES * STDCALL cli_list_fields(MYSQL *mysql, const char *table, const char *wild);
|
||||
|
||||
|
@ -974,7 +974,7 @@ mysql_list_tables(MYSQL *mysql, const char *wild)
|
||||
**************************************************************************/
|
||||
|
||||
MYSQL_RES * STDCALL
|
||||
mysql_list_fields(MYSQL *mysql, const char *table, const char *wild)
|
||||
cli_list_fields(MYSQL *mysql, const char *table, const char *wild)
|
||||
{
|
||||
MYSQL_RES *result;
|
||||
MYSQL_DATA *query;
|
||||
|
Reference in New Issue
Block a user