~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table/temporary.h

  • Committer: Brian Aker
  • Date: 2010-10-22 00:26:57 UTC
  • mfrom: (1864.4.6 refactor)
  • Revision ID: brian@tangent.org-20101022002657-f5d3isth30d0urop
Merge of refactor2 tree

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
  TableShare *_share; /**< Pointer to the shared metadata about the table */
33
33
 
34
34
public:
35
 
  Temporary() :
 
35
  Temporary(TableIdentifier::Type type_arg,
 
36
             TableIdentifier &identifier,
 
37
             char *path_arg, uint32_t path_length_arg) :
36
38
    Table()
37
39
  {
 
40
    _share= new TableShare(type_arg, identifier, path_arg, path_length_arg);
38
41
  }
39
42
 
40
43
  ~Temporary()