~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_string.cc

  • Committer: Olaf van der Spek
  • Date: 2011-04-19 15:31:27 UTC
  • mto: This revision was merged to the branch mainline in revision 2301.
  • Revision ID: olafvdspek@gmail.com-20110419153127-e0ohmwhy9giisewz
Return void

Show diffs side-by-side

added added

removed removed

Lines of Context:
211
211
  return false; // return void
212
212
}
213
213
 
214
 
bool String::copy(const char *str,size_t arg_length, const charset_info_st * const cs)
 
214
void String::copy(const char *str,size_t arg_length, const charset_info_st * const cs)
215
215
{
216
216
  alloc(arg_length);
217
217
  if ((str_length=arg_length))
218
218
    memcpy(Ptr,str,arg_length);
219
219
  Ptr[arg_length]=0;
220
220
  str_charset=cs;
221
 
  return false; // return void
222
221
}
223
222
 
224
223
/*
281
280
                                  const charset_info_st * const to_cs, size_t *errors)
282
281
{
283
282
  *errors= 0;
284
 
  return copy(str, arg_length, to_cs);
 
283
  copy(str, arg_length, to_cs);
 
284
  return false; // return void
285
285
}
286
286
 
287
287