~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2010-10-14 18:32:09 UTC
  • mto: This revision was merged to the branch mainline in revision 1855.
  • Revision ID: brian@tangent.org-20101014183209-884iivwn1og2v3yd
Committing refactor of table out (this is part of the concurrency work).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1576
1576
 
1577
1577
  void get_xid(DRIZZLE_XID *xid); // Innodb only
1578
1578
 
1579
 
  TableShareInstance *getTemporaryShare(TableIdentifier::Type type_arg);
 
1579
  table::Instance *getTemporaryShare(TableIdentifier::Type type_arg);
1580
1580
 
1581
1581
private:
1582
1582
  bool resetUsage()
1604
1604
  // This lives throughout the life of Session
1605
1605
  bool use_usage;
1606
1606
  PropertyMap life_properties;
1607
 
  std::vector<TableShareInstance *> temporary_shares;
 
1607
  std::vector<table::Instance *> temporary_shares;
1608
1608
  struct rusage usage;
1609
1609
};
1610
1610