~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/catalog/engine.h

  • Committer: Brian Aker
  • Date: 2010-12-03 18:41:49 UTC
  • mto: (2017.3.1 catalogs)
  • mto: This revision was merged to the branch mainline in revision 2073.
  • Revision ID: brian@tangent.org-20101203184149-vweq8t4dxuh0cqbl
Merge in lock testing code/additional fix for tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
    return false;
69
69
  }
70
70
 
71
 
  void getMessages(drizzled::message::catalog::vector &messages)
72
 
  {
73
 
    static drizzled::identifier::Catalog LOCAL_IDENTIFIER("local");
74
 
    messages.push_back(drizzled::message::catalog::create(LOCAL_IDENTIFIER));
75
 
  }
 
71
  void getMessages(drizzled::message::catalog::vector &messages);
76
72
 
77
73
  bool getInstance(const drizzled::identifier::Catalog &identifier, drizzled::catalog::Instance::shared_ptr &instance)
78
74
  {
91
87
private:
92
88
  bool readFile(const drizzled::identifier::Catalog &identifier, drizzled::message::catalog::shared_ptr &message);
93
89
  bool writeFile(const drizzled::identifier::Catalog &identifier, drizzled::message::catalog::shared_ptr &message);
 
90
  void prime(drizzled::message::catalog::vector &messages);
94
91
 
95
92
};
96
93