~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table.cc

  • Committer: Brian Aker
  • Date: 2009-06-11 22:06:29 UTC
  • mfrom: (1055.2.24 working)
  • Revision ID: brian@gaz-20090611220629-ct55qcmaiiuxrjaq
Merge Jay

Show diffs side-by-side

added added

removed removed

Lines of Context:
3556
3556
  merge_keys.reset();
3557
3557
}
3558
3558
 
3559
 
 
3560
 
/*
3561
 
  Find field in table, no side effects, only purpose is to check for field
3562
 
  in table object and get reference to the field if found.
3563
 
 
3564
 
  SYNOPSIS
3565
 
  find_field_in_table_sef()
3566
 
 
3567
 
  table                         table where to find
3568
 
  name                          Name of field searched for
3569
 
 
3570
 
  RETURN
3571
 
  0                   field is not found
3572
 
#                   pointer to field
3573
 
*/
3574
 
 
3575
3559
Field *Table::find_field_in_table_sef(const char *name)
3576
3560
{
3577
3561
  Field **field_ptr;
3602
3586
    return (Field *)0;
3603
3587
}
3604
3588
 
3605
 
 
3606
 
/*****************************************************************************
3607
 
** Instansiate templates
3608
 
*****************************************************************************/
3609
 
 
3610
3589
#ifdef HAVE_EXPLICIT_TEMPLATE_INSTANTIATION
3611
3590
template class List<String>;
3612
3591
template class List_iterator<String>;