~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/hex_string.cc

  • Committer: Stewart Smith
  • Date: 2011-03-03 08:29:06 UTC
  • mto: (2216.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2217.
  • Revision ID: stewart@flamingspork.com-20110303082906-5zhmxub1j7au038u
remove enum_query_type which was effectively unused. It was set to one value once, compared to it once (i.e. always true) and passed around everywhere doing nothing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
115
115
  return 1;
116
116
}
117
117
 
118
 
void Item_hex_string::print(String *str, enum_query_type)
 
118
void Item_hex_string::print(String *str)
119
119
{
120
120
  char *end= (char*) str_value.ptr() + str_value.length(),
121
121
       *ptr= end - min(str_value.length(), sizeof(int64_t));