~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-03-29 12:04:36 UTC
  • mto: (2257.1.1 build) (2276.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2258.
  • Revision ID: olafvdspek@gmail.com-20110329120436-vozkuer8vqgh027p
Always call assert()

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifndef DRIZZLED_ALTER_COLUMN_H
21
 
#define DRIZZLED_ALTER_COLUMN_H
22
 
 
23
 
#include "drizzled/memory/sql_alloc.h"
24
 
 
25
 
namespace drizzled
 
20
#pragma once
 
21
 
 
22
#include <drizzled/memory/sql_alloc.h>
 
23
 
 
24
namespace drizzled {
 
25
 
 
26
class AlterColumn : public memory::SqlAlloc 
26
27
{
27
 
 
28
 
namespace memory { class Root; }
29
 
 
30
 
class Item;
31
 
 
32
 
class AlterColumn :public memory::SqlAlloc {
33
28
public:
34
29
  const char *name;
35
30
  Item *def;
50
45
 
51
46
} /* namespace drizzled */
52
47
 
53
 
#endif /* DRIZZLED_ALTER_COLUMN_H */