~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/sql_string.cc

  • Committer: Monty Taylor
  • Date: 2008-07-02 14:48:53 UTC
  • mto: This revision was merged to the branch mainline in revision 51.
  • Revision ID: monty@inaugust.com-20080702144853-itrmls4ae3h07lbr
Removed everything marked TO_BE_REMOVED.

Show diffs side-by-side

added added

removed removed

Lines of Context:
428
428
}
429
429
 
430
430
 
431
 
#ifdef TO_BE_REMOVED
432
 
bool String::append(FILE* file, uint32 arg_length, myf my_flags)
433
 
{
434
 
  if (realloc(str_length+arg_length))
435
 
    return TRUE;
436
 
  if (my_fread(file, (uchar*) Ptr + str_length, arg_length, my_flags))
437
 
  {
438
 
    shrink(str_length);
439
 
    return TRUE;
440
 
  }
441
 
  str_length+=arg_length;
442
 
  return FALSE;
443
 
}
444
 
#endif
445
 
 
446
431
bool String::append(IO_CACHE* file, uint32 arg_length)
447
432
{
448
433
  if (realloc(str_length+arg_length))