~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table/placeholder.h

  • Committer: Brian Aker
  • Date: 2010-10-20 20:26:18 UTC
  • mfrom: (1859.2.13 refactor)
  • Revision ID: brian@tangent.org-20101020202618-9222n39lm329urv5
Merge for Brian 

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
namespace table
30
30
{
31
31
 
32
 
class Placeholder : public Table
 
32
class Placeholder : public table::Concurrent
33
33
{
34
34
  TableShare private_share;
35
35
 
36
36
public:
37
37
  Placeholder(Session *session, TableIdentifier &identifier) :
38
 
    Table(),
 
38
    table::Concurrent(),
39
39
    private_share(identifier, identifier.getKey())
40
40
  {
41
41
    setShare(&private_share);