~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_select.h

  • Committer: Brian Aker
  • Date: 2010-12-16 02:36:10 UTC
  • Revision ID: brian@tangent.org-20101216023610-s8zccyilntzeco63
Reverse patch with memory leak.

Show diffs side-by-side

added added

removed removed

Lines of Context:
82
82
  item->marker should be 0 for all items on entry
83
83
  Return in cond_value false if condition is impossible (1 = 2)
84
84
*****************************************************************************/
85
 
 
86
 
typedef std::pair<Item *, Item_func *> COND_CMP;
 
85
struct COND_CMP {
 
86
  Item *and_level;
 
87
  Item_func *cmp_func;
 
88
  COND_CMP(Item *a,Item_func *b) :and_level(a),cmp_func(b) {}
 
89
};
87
90
 
88
91
void TEST_join(Join *join);
89
92