~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

  • Committer: Brian Aker
  • Date: 2011-07-25 14:24:19 UTC
  • mto: This revision was merged to the branch mainline in revision 2373.
  • Revision ID: brian@tangent.org-20110725142419-3vobv9u6k7jp4qej
Remove the typedef on lexkey

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
Item *negate_expression(Session *session, Item *expr);
44
44
 
45
 
bool check_identifier_name(LEX_STRING *str, error_t err_code= EE_OK,
 
45
bool check_identifier_name(lex_string_t *str, error_t err_code= EE_OK,
46
46
                           uint32_t max_char_length= NAME_CHAR_LEN,
47
47
                           const char *param_for_err_msg= "");
48
48
 
49
 
bool check_string_byte_length(LEX_STRING *str, const char *err_msg,
 
49
bool check_string_byte_length(lex_string_t *str, const char *err_msg,
50
50
                              uint32_t max_byte_length);
51
 
bool check_string_char_length(LEX_STRING *str, const char *err_msg,
 
51
bool check_string_char_length(lex_string_t *str, const char *err_msg,
52
52
                              uint32_t max_char_length, const charset_info_st * const cs,
53
53
                              bool no_error);
54
54