~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.h

  • Committer: Brian Aker
  • Date: 2011-03-28 02:46:21 UTC
  • Revision ID: brian@tangent.org-20110328024621-wtkdtlvdplqm0ybf
Shift CHARSET_INFO to charset_info_st

Show diffs side-by-side

added added

removed removed

Lines of Context:
843
843
  unsigned char* yacc_yyss, *yacc_yyvs;
844
844
  /* The owning Session of this LEX */
845
845
  Session *session;
846
 
  const CHARSET_INFO *charset;
 
846
  const charset_info_st *charset;
847
847
  bool text_string_is_7bit;
848
848
  /* store original leaf_tables for INSERT SELECT and PS/SP */
849
849
  TableList *leaf_tables_insert;
1049
1049
};
1050
1050
 
1051
1051
extern void lex_start(Session *session);
1052
 
extern void trim_whitespace(const CHARSET_INFO * const cs, LEX_STRING *str);
 
1052
extern void trim_whitespace(const charset_info_st * const cs, LEX_STRING *str);
1053
1053
extern bool is_lex_native_function(const LEX_STRING *name);
1054
1054
 
1055
1055
bool check_for_sql_keyword(drizzled::st_lex_symbol const&);