Commit 5b67dca4 authored by holyfoot/hf@hfmain.(none)'s avatar holyfoot/hf@hfmain.(none)

Merge bk@192.168.21.1:mysql-5.0-opt

into  mysql.com:/home/hf/work/30638/my50-30638
parents 478079b2 bf19259d
...@@ -33,6 +33,7 @@ functions */ ...@@ -33,6 +33,7 @@ functions */
#include <io.h> #include <io.h>
#include <malloc.h> #include <malloc.h>
#define BIG_TABLES 1
#define HAVE_SMEM 1 #define HAVE_SMEM 1
#if defined(_WIN64) || defined(WIN64) #if defined(_WIN64) || defined(WIN64)
......
...@@ -2528,7 +2528,12 @@ int ha_federated::info(uint flag) ...@@ -2528,7 +2528,12 @@ int ha_federated::info(uint flag)
status_query_string.length(0); status_query_string.length(0);
result= mysql_store_result(mysql); result= mysql_store_result(mysql);
if (!result)
/*
We're going to use fields num. 4, 12 and 13 of the resultset,
so make sure we have these fields.
*/
if (!result || (mysql_num_fields(result) < 14))
goto error; goto error;
if (!mysql_num_rows(result)) if (!mysql_num_rows(result))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment