diff options
author | hf@deer.(none) <> | 2004-01-15 21:06:22 +0400 |
---|---|---|
committer | hf@deer.(none) <> | 2004-01-15 21:06:22 +0400 |
commit | 6dcda5153b4bada5a5e890641b0d69fb28bf8db5 (patch) | |
tree | 24c233c602a5644cbcc259252d10163dc0551fc5 /sql/lex_symbol.h | |
parent | ecf8118cff8e25fb2286ea75a9c24f513423a2da (diff) | |
download | mariadb-git-6dcda5153b4bada5a5e890641b0d69fb28bf8db5.tar.gz |
SCRUM:
WL#1163 (Making spatial code optional)
Pack of changes to do in sql/ code.
Diffstat (limited to 'sql/lex_symbol.h')
-rw-r--r-- | sql/lex_symbol.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/lex_symbol.h b/sql/lex_symbol.h index 9fff1751b1b..63d4f9d69c2 100644 --- a/sql/lex_symbol.h +++ b/sql/lex_symbol.h @@ -20,11 +20,17 @@ #ifndef _lex_symbol_h #define _lex_symbol_h +typedef struct st_sym_group { + const char *name; + const char *needed_define; +} SYM_GROUP; + typedef struct st_symbol { const char *name; uint tok; uint length; void *create_func; + SYM_GROUP *group; } SYMBOL; typedef struct st_lex_symbol |