~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/create.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:
157
157
};
158
158
 
159
159
Item*
160
 
create_func_char_cast(Session *session, Item *a, int len, const CHARSET_INFO * const cs);
 
160
create_func_char_cast(Session *session, Item *a, int len, const charset_info_st * const cs);
161
161
 
162
162
/**
163
163
  Builder for cast expressions.
171
171
Item *
172
172
create_func_cast(Session *session, Item *a, Cast_target cast_type,
173
173
                 const char *len, const char *dec,
174
 
                 const CHARSET_INFO * const cs);
 
174
                 const charset_info_st * const cs);
175
175
 
176
176
int item_create_init();
177
177
void item_create_cleanup();