~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lex.h

  • Committer: Brian Aker
  • Date: 2008-08-01 21:54:33 UTC
  • Revision ID: brian@tangent.org-20080801215433-zwc0gecuie2tasa1
Remove BIT operations, replace with functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
*/
41
41
 
42
42
static SYMBOL symbols[] = {
43
 
  { "&&",               SYM(AND_AND_SYM)},
44
43
  { "<",                SYM(LT)},
45
44
  { "<=",               SYM(LE)},
46
45
  { "<>",               SYM(NE)},
48
47
  { "=",                SYM(EQ)},
49
48
  { ">",                SYM(GT_SYM)},
50
49
  { ">=",               SYM(GE)},
51
 
  { "<<",               SYM(SHIFT_LEFT)},
52
 
  { ">>",               SYM(SHIFT_RIGHT)},
53
50
  { "<=>",              SYM(EQUAL_SYM)},
54
51
  { "ACCESSIBLE",       SYM(ACCESSIBLE_SYM)},
55
52
  { "ACTION",           SYM(ACTION)},