~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump_drizzle.h

  • Committer: Andrew Hutchings
  • Date: 2010-10-12 15:43:24 UTC
  • mto: (1856.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 1857.
  • Revision ID: andrew@linuxjedi.co.uk-20101012154324-mf9lnvixb4lay5ut
Add foreign keys to Drizzle server

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
class DrizzleDumpDatabaseDrizzle;
26
26
class DrizzleDumpDataDrizzle;
27
27
 
 
28
class DrizzleDumpForeignKeyDrizzle : public DrizzleDumpForeignKey
 
29
{
 
30
  public:
 
31
    DrizzleDumpForeignKeyDrizzle(std::string name, DrizzleDumpConnection* connection) : DrizzleDumpForeignKey(name, connection)
 
32
    { }
 
33
 
 
34
    ~DrizzleDumpForeignKeyDrizzle()
 
35
    {
 
36
    }
 
37
};
 
38
 
28
39
class DrizzleDumpIndexDrizzle : public DrizzleDumpIndex
29
40
{
30
41
  public:
61
72
    {
62
73
      fields.clear();
63
74
      indexes.clear();
 
75
      fkeys.clear();
64
76
    }
65
77
    bool populateFields();
66
78
    bool populateIndexes();
 
79
    bool populateFkeys();
67
80
    DrizzleDumpData* getData(void);
68
81
};
69
82