~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.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:
40
40
class LEX;
41
41
class Table_ident;
42
42
class Select_Lex;
43
 
 
44
 
typedef struct charset_info_st CHARSET_INFO;
 
43
struct charset_info_st;
45
44
 
46
45
DRIZZLED_API const std::string &getCommandName(const enum_server_command& command);
47
46
 
60
59
bool check_string_byte_length(LEX_STRING *str, const char *err_msg,
61
60
                              uint32_t max_byte_length);
62
61
bool check_string_char_length(LEX_STRING *str, const char *err_msg,
63
 
                              uint32_t max_char_length, const CHARSET_INFO * const cs,
 
62
                              uint32_t max_char_length, const charset_info_st * const cs,
64
63
                              bool no_error);
65
64
 
66
65