~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/charset.c

  • Committer: Brian Aker
  • Date: 2008-07-29 18:10:06 UTC
  • Revision ID: brian@tangent.org-20080729181006-k3pgvafenthl8c3t
Final bit of NCHAR removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
113
113
  /* Special handling of hex and binary strings */
114
114
  state_map[(uchar)'x']= state_map[(uchar)'X']= (uchar) MY_LEX_IDENT_OR_HEX;
115
115
  state_map[(uchar)'b']= state_map[(uchar)'B']= (uchar) MY_LEX_IDENT_OR_BIN;
116
 
  state_map[(uchar)'n']= state_map[(uchar)'N']= (uchar) MY_LEX_IDENT_OR_NCHAR;
117
116
  return 0;
118
117
}
119
118