~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/create_index.h

  • Committer: Brian Aker
  • Date: 2011-01-25 07:24:41 UTC
  • mfrom: (2104.3.14 alter-table)
  • Revision ID: brian@tangent.org-20110125072441-gf9f14lkxjhvvku9
MergeĀ inĀ alter/parser

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
class CreateIndex : public CreateTable
34
34
{
35
35
public:
36
 
  CreateIndex(Session *in_session, Table_ident *ident);
37
 
 
38
 
  CreateIndex(Session *in_session) :
39
 
    CreateTable(in_session)
40
 
  {}
 
36
  CreateIndex(Session *in_session, const drizzled::ha_build_method);
41
37
 
42
38
  bool execute();
43
39
};