~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/show_create.cc

  • Committer: Brian Aker
  • Date: 2009-11-19 02:33:17 UTC
  • mto: (1222.1.2 staging)
  • mto: This revision was merged to the branch mainline in revision 1224.
  • Revision ID: brian@gaz-20091119023317-lylyqkwhrewid34p
Remove a few more options, from options in HA_CREATE_INFO.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
  TableList *first_table= (TableList *) session->lex->select_lex.table_list.first;
32
32
  TableList *all_tables= session->lex->query_tables;
33
33
  assert(first_table == all_tables && first_table != 0);
34
 
  bool res= drizzled_show_create(session, first_table);
 
34
  bool res= drizzled_show_create(session, first_table, is_if_not_exists);
35
35
  return res;
36
36
}
37
37