~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_create.h

  • Committer: Brian Aker
  • Date: 2011-03-24 23:14:46 UTC
  • mfrom: (2246.4.12 foreach)
  • Revision ID: brian@tangent.org-20110324231446-7q1gydkglys73nft
Merge in XTF

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
  DrizzleLock *m_lock;
38
38
  /* m_lock or session->extra_lock */
39
39
  DrizzleLock **m_plock;
40
 
  identifier::Table::const_reference identifier;
 
40
  const identifier::Table& identifier;
41
41
 
42
42
public:
43
43
  select_create (TableList *table_arg,
47
47
                 AlterInfo *alter_info_arg,
48
48
                 List<Item> &select_fields,enum_duplicates duplic, bool ignore,
49
49
                 TableList *select_tables_arg,
50
 
                 identifier::Table::const_reference identifier_arg)
 
50
                 const identifier::Table& identifier_arg)
51
51
    :select_insert (NULL, NULL, &select_fields, 0, 0, duplic, ignore),
52
52
    create_table(table_arg),
53
53
    is_if_not_exists(is_if_not_exists_arg),