~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.h

  • Committer: Brian Aker
  • Date: 2010-11-19 19:42:44 UTC
  • mto: (1945.2.1 quick)
  • mto: This revision was merged to the branch mainline in revision 1944.
  • Revision ID: brian@tangent.org-20101119194244-7vx6u5vwzvu9uvex
Remove dead getShare() call which should have been a call on the cache
directly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#define DRIZZLED_ITEM_H
22
22
 
23
23
#include <drizzled/dtcollation.h>
24
 
#include <drizzled/my_time.h>
25
 
#include <drizzled/my_decimal.h>
26
 
#include <drizzled/sql_bitmap.h>
 
24
#include <drizzled/drizzle_time.h>
 
25
#include <drizzled/decimal.h>
27
26
#include <drizzled/sql_list.h>
28
27
#include "drizzled/memory/sql_alloc.h"
29
28
#include <drizzled/table.h>
732
731
   * cost Item::execution_cost(),
733
732
   * where 'cost' is either 'double' or some structure of various cost
734
733
   * parameters.
 
734
   *
 
735
   *NOTE
 
736
   *   This function is now used to prevent evaluation of materialized IN
 
737
   *   subquery predicates before it is allowed. grep for
 
738
   *   DontEvaluateMaterializedSubqueryTooEarly to see the uses.
735
739
   */
736
740
  virtual bool is_expensive();
737
741