~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.cc

  • Committer: Brian Aker
  • Date: 2010-05-13 00:24:20 UTC
  • mto: This revision was merged to the branch mainline in revision 1533.
  • Revision ID: brian@gaz-20100513002420-rqxkrxegkwivaxmm
Merge engine options for schema/table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
555
555
    size_t num_engine_options= share->getTableProto()->engine().options_size();
556
556
    for (size_t x= 0; x < num_engine_options; ++x)
557
557
    {
558
 
      const message::Table::StorageEngine::EngineOption &option= share->getTableProto()->engine().options(x);
 
558
      const message::Engine::Option &option= share->getTableProto()->engine().options(x);
559
559
      packet->append(" ");
560
560
      packet->append(option.name().c_str());
561
561
      packet->append("=");