diff options
author | hf@deer.(none) <> | 2004-07-22 20:54:25 +0500 |
---|---|---|
committer | hf@deer.(none) <> | 2004-07-22 20:54:25 +0500 |
commit | 94bfeb839399486eb90f2fc5dd25cdb4761d71bd (patch) | |
tree | ecfe787be62082cf510021730f7750916b699945 /include/sql_common.h | |
parent | 5eadafe56960a5df27007ae382c1c5445cc1ed9a (diff) | |
download | mariadb-git-94bfeb839399486eb90f2fc5dd25cdb4761d71bd.tar.gz |
Fixes for bugs in embedded library:
#4700 (Unsigned value returned as signed)
just no appropriate checking
#4701 (Errors returned earlier than expected)
all errors returned from send_command()
#4702 (Result isn't freed properly if there's no retrieval)
flush_use_result has only 'client' version and should
be made 'virtual'
Diffstat (limited to 'include/sql_common.h')
-rw-r--r-- | include/sql_common.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/sql_common.h b/include/sql_common.h index 3f50008a922..cde53786f83 100644 --- a/include/sql_common.h +++ b/include/sql_common.h @@ -25,7 +25,6 @@ extern "C" { MYSQL_FIELD *unpack_fields(MYSQL_DATA *data,MEM_ROOT *alloc,uint fields, my_bool default_value, uint server_capabilities); void free_rows(MYSQL_DATA *cur); -void flush_use_result(MYSQL *mysql); my_bool mysql_autenticate(MYSQL *mysql, const char *passwd); void free_old_query(MYSQL *mysql); void end_server(MYSQL *mysql); |