diff options
author | hf@deer.(none) <> | 2003-09-12 19:36:42 +0500 |
---|---|---|
committer | hf@deer.(none) <> | 2003-09-12 19:36:42 +0500 |
commit | e63e2229b600926c1792e4e7ca56112dcb1d28bb (patch) | |
tree | 38b0ef8c6f4b6f0091d8017c2347b99f5e902787 /libmysqld/libmysqld.c | |
parent | efce59fc3fcacf94c25a9648df03fda5e0a94b87 (diff) | |
parent | 9f3996cde9ec2368ef89a1dd38c5e7cda7700ac4 (diff) | |
download | mariadb-git-e63e2229b600926c1792e4e7ca56112dcb1d28bb.tar.gz |
Merge abotchkov@bk-internal.mysql.com:/home/bk/mysql-4.1
into deer.(none):/home/hf/work/mysql-4.1.stmt
Diffstat (limited to 'libmysqld/libmysqld.c')
-rw-r--r-- | libmysqld/libmysqld.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libmysqld/libmysqld.c b/libmysqld/libmysqld.c index 56be78e3509..579ff8eadbe 100644 --- a/libmysqld/libmysqld.c +++ b/libmysqld/libmysqld.c @@ -211,7 +211,11 @@ emb_list_fields(MYSQL *mysql, const char *table, const char *wild) DBUG_RETURN(result); } - +my_bool STDCALL emb_read_prepare_result(MYSQL *mysql, MYSQL_STMT *stmt) +{ + stmt->fields= mysql->result->fields; + stmt->alloc; +} /* ** Note that the mysql argument must be initialized with mysql_init() |