~jaypipes/drizzle/refactor-trx-log-applier

« back to all changes in this revision

Viewing changes to drizzled/select_create.h

  • Committer: Jay Pipes
  • Date: 2010-03-05 18:24:28 UTC
  • mfrom: (1273.1.51 staging)
  • Revision ID: jpipes@serialcoder-20100305182428-9m16fszbs3mvdhe0
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
  TableList *create_table;
29
29
  bool is_if_not_exists;
30
30
  HA_CREATE_INFO *create_info;
31
 
  message::Table *table_proto;
 
31
  message::Table &table_proto;
32
32
  TableList *select_tables;
33
33
  AlterInfo *alter_info;
34
34
  Field **field;
40
40
  select_create (TableList *table_arg,
41
41
                 bool is_if_not_exists_arg,
42
42
                 HA_CREATE_INFO *create_info_par,
43
 
                 message::Table *proto,
 
43
                 message::Table &proto,
44
44
                 AlterInfo *alter_info_arg,
45
45
                 List<Item> &select_fields,enum_duplicates duplic, bool ignore,
46
46
                 TableList *select_tables_arg)