~posulliv/drizzle/memcached_applier

« back to all changes in this revision

Viewing changes to drizzled/lex_input_stream.h

mergeĀ fromĀ lp

Show diffs side-by-side

added added

removed removed

Lines of Context:
268
268
  void body_utf8_start(Session *session, const char *begin_ptr);
269
269
  void body_utf8_append(const char *ptr);
270
270
  void body_utf8_append(const char *ptr, const char *end_ptr);
271
 
  void body_utf8_append_literal(Session *session,
272
 
                                const LEX_STRING *txt,
273
 
                                const CHARSET_INFO * const txt_cs,
 
271
  void body_utf8_append_literal(const LEX_STRING *txt,
274
272
                                const char *end_ptr);
275
273
 
276
274
  /** Current thread. */
388
386
    */
389
387
  const char *m_cpp_text_end;
390
388
 
391
 
  /**
392
 
    Character set specified by the character-set-introducer.
393
 
 
394
 
    NOTE: this member must be used within DRIZZLElex() function only.
395
 
  */
396
 
  const CHARSET_INFO *m_underscore_cs;
397
389
};
398
390
#endif /* DRIZZLED_LEX_INPUT_STREAM_H */