~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/string.cc

  • Committer: Olaf van der Spek
  • Date: 2011-07-04 14:21:18 UTC
  • mto: This revision was merged to the branch mainline in revision 2367.
  • Revision ID: olafvdspek@gmail.com-20110704142118-fvz79ljqegxggwfv
RemoveĀ unusedĀ param

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
    str->append('_');
71
71
    str->append(collation.collation->csname);
72
72
  }
73
 
 
74
73
  str->append('\'');
75
 
 
76
 
  str_value.print(str);
77
 
 
 
74
  str_value.print(*str);
78
75
  str->append('\'');
79
76
}
80
77