~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/catalog/engine.h

  • Committer: Brian Aker
  • Date: 2011-03-24 23:14:46 UTC
  • mfrom: (2246.4.12 foreach)
  • Revision ID: brian@tangent.org-20110324231446-7q1gydkglys73nft
Merge in XTF

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
  { };
49
49
 
50
50
  // DDL
51
 
  virtual bool create(identifier::Catalog::const_reference , message::catalog::shared_ptr &)= 0;
52
 
  virtual bool drop(identifier::Catalog::const_reference)= 0;
 
51
  virtual bool create(const identifier::Catalog& , message::catalog::shared_ptr &)= 0;
 
52
  virtual bool drop(const identifier::Catalog&)= 0;
53
53
 
54
54
  // Get Meta information
55
 
  virtual bool exist(identifier::Catalog::const_reference identifier)= 0;
 
55
  virtual bool exist(const identifier::Catalog& identifier)= 0;
56
56
  virtual void getIdentifiers(identifier::Catalog::vector &identifiers)= 0;
57
 
  virtual message::catalog::shared_ptr getMessage(identifier::Catalog::const_reference)= 0;
 
57
  virtual message::catalog::shared_ptr getMessage(const identifier::Catalog&)= 0;
58
58
  virtual void getMessages(message::catalog::vector &messages)= 0;
59
59
};
60
60