~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/subselect.h

  • Committer: Prafulla Tekawade
  • Date: 2010-07-03 03:07:50 UTC
  • mto: (1643.1.3 build) (1662.1.4 rollup)
  • mto: This revision was merged to the branch mainline in revision 1644.
  • Revision ID: prafulla_t@users.sourceforge.net-20100703030750-b2qg8yz8n95mozvq
Reverting some un-necessary changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
320
320
  };
321
321
  enum_exec_method exec_method;
322
322
 
323
 
  Item* get_left_expr() const
324
 
  {
325
 
    return left_expr;
326
 
  }
327
 
 
328
323
  bool *get_cond_guard(int i)
329
324
  {
330
325
    return pushed_cond_guards ? pushed_cond_guards + i : NULL;
334
329
    if ( pushed_cond_guards)
335
330
      pushed_cond_guards[i]= v;
336
331
  }
337
 
  bool have_guarded_conds()
338
 
  {
339
 
    if( NULL == pushed_cond_guards )
340
 
      return false;
341
 
    return true;
342
 
  }
 
332
  bool have_guarded_conds() { return test(pushed_cond_guards); }
343
333
 
344
334
  Item_func_not_all *upper_item; // point on NOT/NOP before ALL/SOME subquery
345
335