~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/archive/ha_archive.cc

  • Committer: Brian Aker
  • Date: 2009-11-20 19:07:14 UTC
  • mfrom: (1223.1.5 push)
  • Revision ID: brian@gaz-20091120190714-dhr3lgqxrt7dq1fc
Collected Merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
163
163
  }
164
164
 
165
165
  int doCreateTable(Session *session, const char *table_name,
166
 
                    Table& table_arg, HA_CREATE_INFO& create_info,
 
166
                    Table& table_arg,
167
167
                    drizzled::message::Table& proto);
168
168
 
169
169
  int doGetTableDefinition(Session& session,
633
633
int ArchiveEngine::doCreateTable(Session *,
634
634
                                 const char *table_name,
635
635
                                 Table& table_arg,
636
 
                                 HA_CREATE_INFO& create_info,
637
636
                                 drizzled::message::Table& proto)
638
637
{
639
638
  char name_buff[FN_REFLEN];
642
641
  uint64_t auto_increment_value;
643
642
  string serialized_proto;
644
643
 
645
 
  auto_increment_value= create_info.auto_increment_value;
 
644
  auto_increment_value= proto.options().auto_increment_value();
646
645
 
647
646
  for (uint32_t key= 0; key < table_arg.sizeKeys(); key++)
648
647
  {