summaryrefslogtreecommitdiff
path: root/sql/lex_symbol.h
diff options
context:
space:
mode:
authorhf@deer.(none) <>2004-01-23 16:02:57 +0400
committerhf@deer.(none) <>2004-01-23 16:02:57 +0400
commit215a65b1fd255d37181124a15fee0cf02c77fdd4 (patch)
tree8172c7f6f96ab3801ef15dfbb93d61a10809047f /sql/lex_symbol.h
parent6dcda5153b4bada5a5e890641b0d69fb28bf8db5 (diff)
downloadmariadb-git-215a65b1fd255d37181124a15fee0cf02c77fdd4.tar.gz
SCRUM
wl #1163 (Make spatial code optional) Patch I cleaned with Serg & Monty's suggestions
Diffstat (limited to 'sql/lex_symbol.h')
-rw-r--r--sql/lex_symbol.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/sql/lex_symbol.h b/sql/lex_symbol.h
index 63d4f9d69c2..d1d30a73669 100644
--- a/sql/lex_symbol.h
+++ b/sql/lex_symbol.h
@@ -20,17 +20,14 @@
#ifndef _lex_symbol_h
#define _lex_symbol_h
-typedef struct st_sym_group {
- const char *name;
- const char *needed_define;
-} SYM_GROUP;
+struct st_sym_group;
typedef struct st_symbol {
const char *name;
uint tok;
uint length;
void *create_func;
- SYM_GROUP *group;
+ struct st_sym_group *group;
} SYMBOL;
typedef struct st_lex_symbol