~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.cc

  • Committer: Brian Aker
  • Date: 2010-10-24 01:34:39 UTC
  • mto: This revision was merged to the branch mainline in revision 1875.
  • Revision ID: brian@tangent.org-20101024013439-w9r8qtmt5ihnqtkd
Encapsulate table_name from table_list.

Show diffs side-by-side

added added

removed removed

Lines of Context:
968
968
  ptr->setIsAlias(alias ? true : false);
969
969
  if (table->table.length)
970
970
    table->table.length= my_casedn_str(files_charset_info, table->table.str);
971
 
  ptr->table_name=table->table.str;
 
971
  ptr->setTableName(table->table.str);
972
972
  ptr->table_name_length=table->table.length;
973
973
  ptr->lock_type=   lock_type;
974
974
  ptr->force_index= table_options.test(TL_OPTION_FORCE_INDEX);