~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.h

  • Committer: Stewart Smith
  • Date: 2010-11-03 03:28:23 UTC
  • mto: (1902.1.1 build) (1910.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1903.
  • Revision ID: stewart@flamingspork.com-20101103032823-44k21f0njmk97omr
fix docs warning: Title underline (and overline) is too short in brief_history_of_drizzle.rst

Show diffs side-by-side

added added

removed removed

Lines of Context:
1006
1006
  {
1007
1007
    return sum_expr_used;
1008
1008
  }
1009
 
 
1010
 
  void start(Session *session);
1011
 
  void end();
1012
 
 
1013
1009
private: 
1014
1010
  bool cacheable;
1015
1011
  bool sum_expr_used;
1016
1012
};
1017
1013
 
1018
1014
extern void lex_start(Session *session);
 
1015
extern void lex_end(LEX *lex);
1019
1016
extern void trim_whitespace(const CHARSET_INFO * const cs, LEX_STRING *str);
1020
1017
extern bool is_lex_native_function(const LEX_STRING *name);
1021
1018