~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.h

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
Remove uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
 
42
42
bool test_if_data_home_dir(const char *dir);
43
43
 
44
 
bool check_identifier_name(LEX_STRING *str, uint max_char_length,
45
 
                           uint err_code, const char *param_for_err_msg);
46
 
inline bool check_identifier_name(LEX_STRING *str, uint err_code)
 
44
bool check_identifier_name(LEX_STRING *str, uint32_t max_char_length,
 
45
                           uint32_t err_code, const char *param_for_err_msg);
 
46
inline bool check_identifier_name(LEX_STRING *str, uint32_t err_code)
47
47
{
48
48
  return check_identifier_name(str, NAME_CHAR_LEN, err_code, "");
49
49
}
53
53
}
54
54
 
55
55
bool check_string_byte_length(LEX_STRING *str, const char *err_msg,
56
 
                              uint max_byte_length);
 
56
                              uint32_t max_byte_length);
57
57
bool check_string_char_length(LEX_STRING *str, const char *err_msg,
58
 
                              uint max_char_length, const CHARSET_INFO * const cs,
 
58
                              uint32_t max_char_length, const CHARSET_INFO * const cs,
59
59
                              bool no_error);
60
60
 
61
61
#endif /* DRIZZLE_SERVER_SQL_PARSE_H */