~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.h

  • Committer: Grant Limberg
  • Date: 2008-08-12 21:13:01 UTC
  • mto: (322.1.1 codestyle)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: grant@glsoftware.net-20080812211301-ym3wsowelkgp16s2
renamed all instances of MYSQL_ to DRIZZLE_

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
class sql_exchange;
28
28
class LEX_COLUMN;
29
29
 
30
 
#ifdef MYSQL_SERVER
 
30
#ifdef DRIZZLE_SERVER
31
31
/*
32
32
  The following hack is needed because mysql_yacc.cc does not define
33
33
  YYSTYPE before including this file
35
35
 
36
36
#include "set_var.h"
37
37
 
38
 
#ifdef MYSQL_YACC
 
38
#ifdef DRIZZLE_YACC
39
39
#define LEX_YYSTYPE void *
40
40
#else
41
 
#if defined(MYSQL_LEX)
 
41
#if defined(DRIZZLE_LEX)
42
42
#include "lex_symbol.h"
43
43
#include "sql_yacc.h"
44
44
#define LEX_YYSTYPE YYSTYPE *
99
99
#define DESCRIBE_NORMAL         1
100
100
#define DESCRIBE_EXTENDED       2
101
101
 
102
 
#ifdef MYSQL_SERVER
 
102
#ifdef DRIZZLE_SERVER
103
103
 
104
104
#define DERIVED_NONE    0
105
105
#define DERIVED_SUBQUERY        1
1624
1624
  @} (End of group Semantic_Analysis)
1625
1625
*/
1626
1626
 
1627
 
#endif /* MYSQL_SERVER */
 
1627
#endif /* DRIZZLE_SERVER */
1628
1628
#endif /* DRIZZLE_SERVER_SQL_LEX_H */