~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_handler.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:
135
135
  TableList    *hash_tables;
136
136
 
137
137
  if ((hash_tables= (TableList*) hash_search(&thd->handler_tables_hash,
138
 
                                              (uchar*) tables->alias,
 
138
                                              (unsigned char*) tables->alias,
139
139
                                              strlen(tables->alias) + 1)))
140
140
  {
141
141
    mysql_ha_close_table(thd, hash_tables, false);
142
 
    hash_delete(&thd->handler_tables_hash, (uchar*) hash_tables);
 
142
    hash_delete(&thd->handler_tables_hash, (unsigned char*) hash_tables);
143
143
  }
144
144
  else
145
145
  {
213
213
    next= hash_tables->next_local;
214
214
    if (hash_tables->table)
215
215
      mysql_ha_close_table(thd, hash_tables, is_locked);
216
 
    hash_delete(&thd->handler_tables_hash, (uchar*) hash_tables);
 
216
    hash_delete(&thd->handler_tables_hash, (unsigned char*) hash_tables);
217
217
    hash_tables= next;
218
218
  }
219
219