~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Brian Aker
  • Date: 2009-01-07 09:27:07 UTC
  • Revision ID: brian@tangent.org-20090107092707-bn67qpdllfcyh3j9
Removing dead field translator code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4079
4079
          something !
4080
4080
  */
4081
4081
  if (/* Exclude nested joins. */
4082
 
      (!table_list->nested_join ||
 
4082
      (!table_list->nested_join) &&
4083
4083
       /* Include merge views and information schema tables. */
4084
 
       table_list->field_translation) &&
4085
4084
      /*
4086
4085
        Test if the field qualifiers match the table reference we plan
4087
4086
        to search.
4094
4093
 
4095
4094
  *actual_table= NULL;
4096
4095
 
4097
 
  if (table_list->field_translation)
4098
 
  {
4099
 
  }
4100
 
  else if (!table_list->nested_join)
 
4096
  if (!table_list->nested_join)
4101
4097
  {
4102
4098
    /* 'table_list' is a stored table. */
4103
4099
    assert(table_list->table);