~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.cc

  • Committer: Brian Aker
  • Date: 2008-08-15 21:14:46 UTC
  • mto: This revision was merged to the branch mainline in revision 346.
  • Revision ID: brian@tangent.org-20080815211446-aqtozo1hoe8mb2az
Commiting next pass of Table class cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3099
3099
    goto err;
3100
3100
 
3101
3101
  if (update_create_info)
3102
 
    update_create_info_from_table(create_info, &table);
 
3102
    table.updateCreateInfo(create_info);
3103
3103
 
3104
3104
  name= check_lowercase_names(table.file, share.path.str, name_buff);
3105
3105
 
3168
3168
    return(3);
3169
3169
  }
3170
3170
 
3171
 
  update_create_info_from_table(&create_info, &table);
 
3171
  table.updateCreateInfo(&create_info);
3172
3172
  create_info.table_options|= HA_OPTION_CREATE_FROM_ENGINE;
3173
3173
 
3174
3174
  check_lowercase_names(table.file, path, path);