~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.h

  • Committer: Brian Aker
  • Date: 2010-11-22 00:16:44 UTC
  • mto: (1945.2.1 quick)
  • mto: This revision was merged to the branch mainline in revision 1947.
  • Revision ID: brian@tangent.org-20101122001644-pi6jv0d65e82xn38
Merge in lock refactor, this just encapsulates.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <drizzled/dtcollation.h>
24
24
#include <drizzled/drizzle_time.h>
25
25
#include <drizzled/decimal.h>
26
 
#include <drizzled/sql_bitmap.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