~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/str/pad.cc

  • Committer: Olaf van der Spek
  • Date: 2011-07-04 13:10:52 UTC
  • mto: This revision was merged to the branch mainline in revision 2367.
  • Revision ID: olafvdspek@gmail.com-20110704131052-0lxuejwmsivdu4ca
RemoveĀ unusedĀ param

Show diffs side-by-side

added added

removed removed

Lines of Context:
210
210
    count-= pad_char_length;
211
211
  }
212
212
  if (count > 0)
213
 
    str->append(pad->ptr(), pad->charpos((int) count), collation.collation);
 
213
    str->append(pad->ptr(), pad->charpos((int) count));
214
214
 
215
215
  str->append(*res);
216
216
  null_value= 0;