~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/alter_column.h

  • Committer: Olaf van der Spek
  • Date: 2011-06-26 16:37:38 UTC
  • mto: This revision was merged to the branch mainline in revision 2350.
  • Revision ID: olafvdspek@gmail.com-20110626163738-9mu5phbhhlt4236p
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
    name(par_name),
33
33
    def(literal)
34
34
  {}
35
 
  
36
 
  /**
37
 
    Used to make a clone of this object for ALTER/CREATE TABLE
38
 
    @sa comment for Key_part_spec::clone
39
 
  */
40
 
  AlterColumn *clone(memory::Root *mem_root) const
41
 
  {
42
 
    return new (mem_root) AlterColumn(*this);
43
 
  }
44
35
};
45
36
 
46
37
} /* namespace drizzled */