~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.cc

  • Committer: Brian Aker
  • Date: 2010-11-19 00:00:46 UTC
  • mto: (1945.2.1 quick)
  • mto: This revision was merged to the branch mainline in revision 1944.
  • Revision ID: brian@tangent.org-20101119000046-iajnd847tmo595ts
Fix style issue around table for message (though this is imperfect,...)

Show diffs side-by-side

added added

removed removed

Lines of Context:
370
370
*/
371
371
int StorageEngine::getTableDefinition(Session& session,
372
372
                                      const TableIdentifier &identifier,
373
 
                                      message::TablePtr &table_message,
 
373
                                      message::table::shared_ptr &table_message,
374
374
                                      bool include_temporary_tables)
375
375
{
376
376
  int err= ENOENT;
385
385
    }
386
386
  }
387
387
 
388
 
  drizzled::message::TablePtr table_ptr;
 
388
  drizzled::message::table::shared_ptr table_ptr;
389
389
  if ((table_ptr= drizzled::message::Cache::singleton().find(identifier)))
390
390
  {
391
391
    table_message= table_ptr;
445
445
{
446
446
  int error= 0;
447
447
  int error_proto;
448
 
  message::TablePtr src_proto;
 
448
  message::table::shared_ptr src_proto;
449
449
  StorageEngine *engine;
450
450
 
451
451
  error_proto= StorageEngine::getTableDefinition(session, identifier, src_proto);