~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_union.cc

  • Committer: Brian Aker
  • Date: 2008-10-06 05:57:49 UTC
  • Revision ID: brian@tangent.org-20081006055749-svg700gciuqi0zu1
Remove all of uchar.

Show diffs side-by-side

added added

removed removed

Lines of Context:
164
164
st_select_lex_unit::init_prepare_fake_select_lex(THD *thd_arg) 
165
165
{
166
166
  thd_arg->lex->current_select= fake_select_lex;
167
 
  fake_select_lex->table_list.link_in_list((uchar *)&result_table_list,
168
 
                                           (uchar **)
 
167
  fake_select_lex->table_list.link_in_list((unsigned char *)&result_table_list,
 
168
                                           (unsigned char **)
169
169
                                           &result_table_list.next_local);
170
170
  fake_select_lex->context.table_list= 
171
171
    fake_select_lex->context.first_name_resolution_table= 
181
181
       order=order->next)
182
182
  {
183
183
    (*order->item)->walk(&Item::change_context_processor, 0,
184
 
                         (uchar*) &fake_select_lex->context);
 
184
                         (unsigned char*) &fake_select_lex->context);
185
185
  }
186
186
}
187
187