~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.cc

  • Committer: Toru Maesaka
  • Date: 2008-12-11 07:45:27 UTC
  • mto: (670.1.11 devel)
  • mto: This revision was merged to the branch mainline in revision 672.
  • Revision ID: dev@torum.net-20081211074527-yu0cpi5pumqifgg5
Added namespacing for std to .cc files that needed it

Show diffs side-by-side

added added

removed removed

Lines of Context:
675
675
  List<Item> field_list;
676
676
  char tmp[MAX_FIELD_WIDTH], *for_str, def_value_buf[MAX_FIELD_WIDTH];
677
677
  const char *alias;
678
 
  std::string buff;
 
678
  string buff;
679
679
  String type(tmp, sizeof(tmp), system_charset_info);
680
680
  String def_value(def_value_buf, sizeof(def_value_buf), system_charset_info);
681
681
  Field **ptr,*field;