~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.h

  • Committer: Olaf van der Spek
  • Date: 2011-10-24 21:55:16 UTC
  • mto: This revision was merged to the branch mainline in revision 2449.
  • Revision ID: olafvdspek@gmail.com-20111024215516-eu30mb3yhh9a28zq
Use str_ref

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_t *field_name, enum enum_field_types type,
 
40
bool add_field_to_list(Session *session, str_ref field_name, enum enum_field_types type,
41
41
                       const char *length, const char *decimal,
42
42
                       uint32_t type_modifier,
43
43
                       enum column_format_type column_format,
49
49
                               const char *length, const char *decimals,
50
50
                               uint32_t type_modifier,
51
51
                               Item *default_value, Item *on_update_value,
52
 
                               lex_string_t *comment, const char *change,
 
52
                               str_ref comment, const 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);