~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/show_dictionary/show_tables.cc

  • Committer: Lee Bieber
  • Date: 2010-11-07 19:34:48 UTC
  • mfrom: (1910.1.2 build)
  • Revision ID: kalebral@gmail.com-20101107193448-64kdu912qej354sh
Merge Stewart - including adapting and expanding the "differences from mysql" page from the wiki.
Merge Stewart - fix bug 668143: drizzleslap with --commit runs second iteration data load in a transaction

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
  show_dictionary::Show::Generator(arg),
37
37
  is_primed(false)
38
38
{
39
 
  if (not isShowQuery())
40
 
   return;
41
 
 
42
39
  statement::Show *select= static_cast<statement::Show *>(getSession().lex->statement);
43
40
 
44
41
  if (not select->getShowSchema().empty())
62
59
      return false;
63
60
    }
64
61
 
65
 
    identifier::Schema identifier(schema_name);
 
62
    SchemaIdentifier identifier(schema_name);
66
63
    plugin::StorageEngine::getIdentifiers(getSession(), identifier, set_of_identifiers);
67
64
    table_iterator= set_of_identifiers.begin();
68
65
    is_primed= true;