~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

update to trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1858
1858
 
1859
1859
  void get_xid(DRIZZLE_XID *xid); // Innodb only
1860
1860
 
1861
 
  table::Instance *getInstanceTable();
1862
 
  table::Instance *getInstanceTable(List<CreateField> &field_list);
 
1861
  table::Singular *getInstanceTable();
 
1862
  table::Singular *getInstanceTable(List<CreateField> &field_list);
1863
1863
 
1864
1864
private:
1865
1865
  bool resetUsage()
1899
1899
  // This lives throughout the life of Session
1900
1900
  bool use_usage;
1901
1901
  PropertyMap life_properties;
1902
 
  std::vector<table::Instance *> temporary_shares;
 
1902
  std::vector<table::Singular *> temporary_shares;
1903
1903
  struct rusage usage;
1904
1904
};
1905
1905