diff options
author | unknown <hf@deer.(none)> | 2003-09-18 18:28:42 +0500 |
---|---|---|
committer | unknown <hf@deer.(none)> | 2003-09-18 18:28:42 +0500 |
commit | 88fcf2a9433f60eddda31504ba14dfe87b375d2c (patch) | |
tree | 593ba69d5c29894f275cbfb3fd65924fcde6fef3 /libmysqld/libmysqld.c | |
parent | cbc431dbdfcd9a99e5c74d88cb0ac0b2ae65f918 (diff) | |
download | mariadb-git-88fcf2a9433f60eddda31504ba14dfe87b375d2c.tar.gz |
SCRUM:
embedded library
I decided to get rid of #define mysql_some_function in mysql.h
It puzzles users and makes problems with dynamic libraries
Finally, there are only two functions left, that are covered with
the #define-s and it won't hurt performance at all
client/mysqltest.c:
that'll be faster
include/mysql.h:
#defines changed to functions
libmysql/libmysql.c:
that'll be faster that calls of wrapper functions
libmysqld/libmysqld.c:
skip wrapper function
sql-common/client.c:
skip wrapper function
Diffstat (limited to 'libmysqld/libmysqld.c')
-rw-r--r-- | libmysqld/libmysqld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysqld/libmysqld.c b/libmysqld/libmysqld.c index 67dc00e4c1b..4862800f0a2 100644 --- a/libmysqld/libmysqld.c +++ b/libmysqld/libmysqld.c @@ -221,7 +221,7 @@ mysql_real_connect(MYSQL *mysql,const char *host, const char *user, goto error; if (mysql->fields) { - if (!(res= mysql_use_result(mysql))) + if (!(res= (*mysql->methods->use_result)(mysql))) goto error; mysql_free_result(res); } |