Commit 4b74214c authored by unknown's avatar unknown

MDEV-5085: Dynamic columns require inclusion of my_sys.h and my_global.h

parent 426d246f
...@@ -33,6 +33,24 @@ ...@@ -33,6 +33,24 @@
#include <my_decimal_limits.h> #include <my_decimal_limits.h>
#include <mysql_time.h> #include <mysql_time.h>
#ifndef _my_sys_h
typedef struct st_dynamic_string
{
char *str;
size_t length,max_length,alloc_increment;
} DYNAMIC_STRING;
#endif
#ifndef MY_GLOBAL_INCLUDED
struct st_mysql_lex_string
{
char *str;
size_t length;
};
typedef struct st_mysql_lex_string MYSQL_LEX_STRING;
typedef struct st_mysql_lex_string LEX_STRING;
#endif
/* /*
Limits of implementation Limits of implementation
*/ */
......
...@@ -28,7 +28,6 @@ ...@@ -28,7 +28,6 @@
#include <my_global.h> #include <my_global.h>
#include <my_sys.h> #include <my_sys.h>
#include <m_string.h>
#include <ma_dyncol.h> #include <ma_dyncol.h>
#include <tap.h> #include <tap.h>
......
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