diff options
author | unknown <hf@deer.(none)> | 2003-09-12 19:36:42 +0500 |
---|---|---|
committer | unknown <hf@deer.(none)> | 2003-09-12 19:36:42 +0500 |
commit | 774c65c7a37b0b02912940dd3c804fb526b68afa (patch) | |
tree | 38b0ef8c6f4b6f0091d8017c2347b99f5e902787 /libmysqld/libmysqld.c | |
parent | 11930efba69eb4d0d76affe34a1323cdd5b5bd79 (diff) | |
parent | dc250a6efc8bc451b301c74b494200dfb3dd3f8b (diff) | |
download | mariadb-git-774c65c7a37b0b02912940dd3c804fb526b68afa.tar.gz |
Merge abotchkov@bk-internal.mysql.com:/home/bk/mysql-4.1
into deer.(none):/home/hf/work/mysql-4.1.stmt
include/mysql.h:
Auto merged
libmysql/libmysql.c:
Auto merged
libmysqld/libmysqld.c:
Auto merged
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() |