~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lex_input_stream.h

Added the testsuite location finding code to support in-plugin-dir test suites.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
  should be seen once out-of-bound data is removed.
35
35
*/
36
36
 
37
 
namespace drizzled
38
 
{
39
 
 
40
37
class Lex_input_stream
41
38
{
42
39
public:
358
355
  /** Current state of the lexical analyser. */
359
356
  enum my_lex_states next_state;
360
357
 
 
358
  /**
 
359
    Position of ';' in the stream, to delimit multiple queries.
 
360
    This delimiter is in the raw buffer.
 
361
  */
 
362
  const char *found_semicolon;
 
363
 
361
364
  /** Token character bitmaps, to detect 7bit strings. */
362
365
  unsigned char tok_bitmap;
363
366
 
384
387
  const char *m_cpp_text_end;
385
388
 
386
389
};
387
 
 
388
 
} /* namespace drizzled */
389
 
 
390
390
#endif /* DRIZZLED_LEX_INPUT_STREAM_H */