~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/csv/ha_tina.cc

  • Committer: Brian Aker
  • Date: 2010-06-05 00:14:39 UTC
  • mto: This revision was merged to the branch mainline in revision 1592.
  • Revision ID: brian@gir-20100605001439-kn5v6oaspacx5q6l
Merge in change to getTable() to private the field objects.

Show diffs side-by-side

added added

removed removed

Lines of Context:
573
573
 
574
574
  buffer.length(0);
575
575
 
576
 
  for (Field **field=table->field ; *field ; field++)
 
576
  for (Field **field= table->getFields() ; *field ; field++)
577
577
  {
578
578
    const char *ptr;
579
579
    const char *end_ptr;
719
719
 
720
720
  memset(buf, 0, table->getShare()->null_bytes);
721
721
 
722
 
  for (Field **field=table->field ; *field ; field++)
 
722
  for (Field **field=table->getFields() ; *field ; field++)
723
723
  {
724
724
    char curr_char;
725
725