~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_select.cc

  • Committer: Brian Aker
  • Date: 2008-08-21 02:21:23 UTC
  • Revision ID: brian@tangent.org-20080821022123-pemld4axwk9qnhvg
No more dead special flags...

Show diffs side-by-side

added added

removed removed

Lines of Context:
8163
8163
static bool
8164
8164
only_eq_ref_tables(JOIN *join,order_st *order,table_map tables)
8165
8165
{
8166
 
  if (specialflag &  SPECIAL_SAFE_MODE)
8167
 
    return 0;                   // skip this optimize /* purecov: inspected */
8168
8166
  for (JOIN_TAB **tab=join->map2table ; tables ; tab++, tables>>=1)
8169
8167
  {
8170
8168
    if (tables & 1 && !eq_ref_table(join, order, *tab))