~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/csv/ha_tina.cc

  • Committer: Brian Aker
  • Date: 2008-10-08 02:28:58 UTC
  • mfrom: (489.1.13 codestyle)
  • Revision ID: brian@tangent.org-20081008022858-ea8esagkxmn0dupc
Merge of Monty's work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1475
1475
  const char *old_proc_info;
1476
1476
  ha_rows count= share->rows_recorded;
1477
1477
 
1478
 
  old_proc_info= thd_proc_info(thd, "Checking table");
 
1478
  old_proc_info= get_thd_proc_info(thd);
 
1479
  set_thd_proc_info(thd, "Checking table");
1479
1480
  if (!(buf= (unsigned char*) my_malloc(table->s->reclength, MYF(MY_WME))))
1480
1481
    return(HA_ERR_OUT_OF_MEM);
1481
1482
 
1505
1506
  free_root(&blobroot, MYF(0));
1506
1507
 
1507
1508
  free((char*)buf);
1508
 
  thd_proc_info(thd, old_proc_info);
 
1509
  set_thd_proc_info(thd, old_proc_info);
1509
1510
 
1510
1511
  if ((rc != HA_ERR_END_OF_FILE) || count)
1511
1512
  {