~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.h

  • Committer: Brian Aker
  • Date: 2011-01-05 07:43:57 UTC
  • mto: (2060.2.1 clean)
  • mto: This revision was merged to the branch mainline in revision 2063.
  • Revision ID: brian@tangent.org-20110105074357-9zf9j38hf52xjvef
Merge in work for reserved words in SQL standard.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
namespace drizzled
45
45
{
46
46
 
 
47
class st_lex_symbol;
47
48
class select_result_interceptor;
48
49
 
49
50
/* YACC and LEX Definitions */
1049
1050
extern void trim_whitespace(const CHARSET_INFO * const cs, LEX_STRING *str);
1050
1051
extern bool is_lex_native_function(const LEX_STRING *name);
1051
1052
 
 
1053
bool check_for_sql_keyword(drizzled::st_lex_symbol const&);
 
1054
bool check_for_sql_keyword(drizzled::drizzle_lex_string const&);
 
1055
 
1052
1056
/**
1053
1057
  @} (End of group Semantic_Analysis)
1054
1058
*/