~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_create.h

  • Committer: devananda
  • Date: 2009-06-30 14:27:54 UTC
  • mfrom: (1030.2.4 trunk)
  • mto: (1093.1.7 captain)
  • mto: This revision was merged to the branch mainline in revision 1095.
  • Revision ID: devananda.vdv@gmail.com-20090630142754-vm9w374yxkf1pikc
mergeĀ fromĀ lp

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
  order_st *group;
26
26
  TableList *create_table;
27
27
  HA_CREATE_INFO *create_info;
 
28
  drizzled::message::Table *table_proto;
28
29
  TableList *select_tables;
29
30
  Alter_info *alter_info;
30
31
  Field **field;
35
36
public:
36
37
  select_create (TableList *table_arg,
37
38
                 HA_CREATE_INFO *create_info_par,
 
39
                 drizzled::message::Table *proto,
38
40
                 Alter_info *alter_info_arg,
39
41
                 List<Item> &select_fields,enum_duplicates duplic, bool ignore,
40
42
                 TableList *select_tables_arg)
41
43
    :select_insert (NULL, NULL, &select_fields, 0, 0, duplic, ignore),
42
44
    create_table(table_arg),
43
45
    create_info(create_info_par),
 
46
    table_proto(proto),
44
47
    select_tables(select_tables_arg),
45
48
    alter_info(alter_info_arg),
46
49
    m_plock(NULL)