~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/ha_myisam.cc

  • Committer: Brian Aker
  • Date: 2009-08-18 07:00:39 UTC
  • mto: (1117.1.9 merge)
  • mto: This revision was merged to the branch mainline in revision 1118.
  • Revision ID: brian@gaz-20090818070039-nvbwcw5q67q9vyso
Small cleanup (behavior change to remove auto from output of show create
table)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1599
1599
  return to;
1600
1600
}
1601
1601
 
1602
 
void ha_myisam::update_create_info(HA_CREATE_INFO *create_info)
1603
 
{
1604
 
  ha_myisam::info(HA_STATUS_AUTO | HA_STATUS_CONST);
1605
 
  if (!(create_info->used_fields & HA_CREATE_USED_AUTO))
1606
 
  {
1607
 
    create_info->auto_increment_value= stats.auto_increment_value;
1608
 
  }
1609
 
  create_info->data_file_name=data_file_name;
1610
 
  create_info->index_file_name=index_file_name;
1611
 
}
1612
 
 
1613
 
 
1614
1602
int MyisamEngine::createTableImplementation(Session *, const char *table_name,
1615
1603
                                            Table *table_arg,
1616
1604
                                            HA_CREATE_INFO *ha_create_info,