~posulliv/drizzle/optimizer-style-cleanup

« back to all changes in this revision

Viewing changes to drizzled/select_create.h

  • Committer: Padraig O'Sullivan
  • Date: 2010-03-15 14:05:26 UTC
  • mfrom: (1237.9.99 staging)
  • Revision ID: osullivan.padraig@gmail.com-20100315140526-opbgwdwn6tfecdkq
MergeĀ fromĀ 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)