~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.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:
37
37
 
38
38
/* sql_base.cc */
39
39
void set_item_name(Item *item,char *pos,uint32_t length);
40
 
bool add_field_to_list(Session *session, LEX_STRING *field_name, enum enum_field_types type,
 
40
bool add_field_to_list(Session *session, lex_string_t *field_name, enum enum_field_types type,
41
41
                       char *length, char *decimal,
42
42
                       uint32_t type_modifier,
43
43
                       enum column_format_type column_format,
44
44
                       Item *default_value, Item *on_update_value,
45
 
                       LEX_STRING *comment,
 
45
                       lex_string_t *comment,
46
46
                       char *change, List<String> *interval_list,
47
47
                       const charset_info_st * const cs);
48
48
CreateField * new_create_field(Session *session, char *field_name, enum_field_types type,
49
49
                               char *length, char *decimals,
50
50
                               uint32_t type_modifier,
51
51
                               Item *default_value, Item *on_update_value,
52
 
                               LEX_STRING *comment, char *change,
 
52
                               lex_string_t *comment, char *change,
53
53
                               List<String> *interval_list, charset_info_st *cs);
54
54
void push_new_name_resolution_context(Session&, TableList& left_op, TableList& right_op);
55
55
void add_join_on(TableList *b,Item *expr);