~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/show_create_schema.cc

  • Committer: Brian Aker
  • Date: 2009-09-24 06:23:51 UTC
  • mfrom: (1128.2.12 merge)
  • Revision ID: brian@gaz-20090924062351-nuf8tv8ftg7oc9ad
Merge of Lex -> Statement refactoring

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
    return false;
34
34
  }
35
35
  bool res= mysqld_show_create_db(session, session->lex->name.str,
36
 
                                  session->lex->create_info.options &
37
 
                                  HA_LEX_CREATE_IF_NOT_EXISTS);
 
36
                                  create_info.options & HA_LEX_CREATE_IF_NOT_EXISTS);
38
37
  return res;
39
38
}