~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_create.h

  • Committer: Olaf van der Spek
  • Date: 2011-03-23 23:52:54 UTC
  • mto: This revision was merged to the branch mainline in revision 2251.
  • Revision ID: olafvdspek@gmail.com-20110323235254-g3q0c1feajno7edr
 Remove const_reference and reference from identifier::Table

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),