~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

  • Committer: Olaf van der Spek
  • Date: 2011-08-04 08:13:04 UTC
  • mfrom: (2384 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2385.
  • Revision ID: olafvdspek@gmail.com-20110804081304-rlejjpvoos17bjdf
Merge trunk

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