~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.cc

  • Committer: Brian Aker
  • Date: 2011-01-06 05:17:09 UTC
  • Revision ID: brian@tangent.org-20110106051709-oa0se8ur02uc6i9o
Added native functions into the function table.

Show diffs side-by-side

added added

removed removed

Lines of Context:
823
823
  {
824
824
    Item_subselect *prev_subselect_item= previous_select->master_unit()->item;
825
825
    prev_subselect_item->used_tables_cache|= OUTER_REF_TABLE_BIT;
826
 
    prev_subselect_item->const_item_cache= 0;
 
826
    prev_subselect_item->const_item_cache= false;
827
827
  }
828
828
  {
829
829
    Item_subselect *prev_subselect_item= previous_select->master_unit()->item;
838
838
    }
839
839
    else
840
840
      prev_subselect_item->used_tables_cache|= found_field->getTable()->map;
841
 
    prev_subselect_item->const_item_cache= 0;
 
841
    prev_subselect_item->const_item_cache= false;
842
842
    mark_as_dependent(session, last_select, current_sel, resolved_item,
843
843
                      dependent);
844
844
  }