~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/select_create.h

  • Committer: Brian Aker
  • Date: 2011-01-17 04:15:23 UTC
  • mto: (2088.1.3 merge)
  • mto: This revision was merged to the branch mainline in revision 2089.
  • Revision ID: brian@gir-3-20110117041523-o9ex94kfz1a6iqyw
Modify TableIdentifier to fit with the rest of the identifiers.

Show diffs side-by-side

added added

removed removed

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