~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-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:
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