~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2011-01-10 22:11:30 UTC
  • mto: (2077.1.1 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2078.
  • Revision ID: brian@tangent.org-20110110221130-wqvw2wnb14is5kqc
Clear up naming convention for table type.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1850
1850
 
1851
1851
  void get_xid(DRIZZLE_XID *xid); // Innodb only
1852
1852
 
1853
 
  table::Instance *getInstanceTable();
1854
 
  table::Instance *getInstanceTable(List<CreateField> &field_list);
 
1853
  table::Singular *getInstanceTable();
 
1854
  table::Singular *getInstanceTable(List<CreateField> &field_list);
1855
1855
 
1856
1856
private:
1857
1857
  bool resetUsage()
1879
1879
  // This lives throughout the life of Session
1880
1880
  bool use_usage;
1881
1881
  PropertyMap life_properties;
1882
 
  std::vector<table::Instance *> temporary_shares;
 
1882
  std::vector<table::Singular *> temporary_shares;
1883
1883
  struct rusage usage;
1884
1884
};
1885
1885