~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/sql_string.cc

  • Committer: Mark Atwood
  • Date: 2008-07-01 21:25:46 UTC
  • mto: This revision was merged to the branch mainline in revision 45.
  • Revision ID: mark@localhost.localdomain-20080701212546-jzs7ljtwcp2dcmgd
Remove all OpenSSL and all YaSSL code

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
 
431
446
bool String::append(IO_CACHE* file, uint32 arg_length)
432
447
{
433
448
  if (realloc(str_length+arg_length))