~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_placeholder.h

  • Committer: Brian Aker
  • Date: 2010-10-15 03:36:56 UTC
  • mfrom: (1843.7.6 refactor)
  • Revision ID: brian@tangent.org-20101015033656-9u3aptcc6ipoc1vj
This removes two of our dead plugins (the bad schedulers).
Also this fixes help messages to say "schema" instead of "database"
everywhere..

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    Table(),
36
36
    private_share(identifier, identifier.getKey())
37
37
  {
38
 
    is_placeholder_created= true;
39
38
    setShare(&private_share);
40
39
    in_use= session;
41
40
 
42
41
    locked_by_name= true;
43
42
  }
 
43
 
 
44
  bool isPlaceHolder(void) const
 
45
  {
 
46
    return true;
 
47
  }
44
48
};
45
49
 
46
50
} /* namespace drizzled */