mirror of
https://github.com/MariaDB/server.git
synced 2026-04-28 03:05:33 +02:00
5.5 merge
This commit is contained in:
commit
3495801e2e
90 changed files with 2761 additions and 337 deletions
|
|
@ -104,6 +104,15 @@ struct sys_var_with_base
|
|||
LEX_STRING base_name;
|
||||
};
|
||||
|
||||
struct LEX_TYPE
|
||||
{
|
||||
enum enum_field_types type;
|
||||
char *length, *dec;
|
||||
CHARSET_INFO *charset;
|
||||
void set(int t, char *l, char *d, CHARSET_INFO *cs)
|
||||
{ type= (enum_field_types)t; length= l; dec= d; charset= cs; }
|
||||
};
|
||||
|
||||
#ifdef MYSQL_SERVER
|
||||
/*
|
||||
The following hack is needed because mysql_yacc.cc does not define
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue