~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/alter_column.h

  • Committer: Monty Taylor
  • Date: 2009-12-25 08:50:15 UTC
  • mto: This revision was merged to the branch mainline in revision 1255.
  • Revision ID: mordred@inaugust.com-20091225085015-83sux5qsvy312gew
MEM_ROOT == memory::Root

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <drizzled/sql_alloc.h>
24
24
 
25
25
class Item;
26
 
typedef struct st_mem_root MEM_ROOT;
 
26
namespace drizzled { namespace memory { class Root; } }
27
27
 
28
28
class AlterColumn :public Sql_alloc {
29
29
public:
38
38
    Used to make a clone of this object for ALTER/CREATE TABLE
39
39
    @sa comment for Key_part_spec::clone
40
40
  */
41
 
  AlterColumn *clone(MEM_ROOT *mem_root) const
 
41
  AlterColumn *clone(drizzled::memory::Root *mem_root) const
42
42
  {
43
43
    return new (mem_root) AlterColumn(*this);
44
44
  }