~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/schema_engine.cc

  • Committer: Brian Aker
  • Date: 2011-02-13 00:42:54 UTC
  • mto: (2170.1.1 alter-table)
  • mto: This revision was merged to the branch mainline in revision 2172.
  • Revision ID: brian@tangent.org-20110213004254-20o2qozeyc8rfyp2
Remove additional spot where we passed in a reference of a shared pointer.

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
 
77
77
  result_type operator() (argument_type engine)
78
78
  {
79
 
    return engine->doGetSchemaDefinition(identifier, schema_proto);
 
79
    schema_proto= engine->doGetSchemaDefinition(identifier);
 
80
    return schema_proto;
80
81
  }
81
82
};
82
83