~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_olap.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:
49
49
  new_select->linkage=OLAP_TYPE;
50
50
  new_select->olap=NON_EXISTING_ONE;
51
51
  new_select->group_list.elements=0;
52
 
  new_select->group_list.first=(uchar *)0;
53
 
  new_select->group_list.next=(uchar **)&new_select->group_list.first;
 
52
  new_select->group_list.first=(unsigned char *)0;
 
53
  new_select->group_list.next=(unsigned char **)&new_select->group_list.first;
54
54
  List<Item> privlist;
55
55
  
56
56
  List_iterator<Item> list_it(select_lex->item_list);