~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/cmpfunc.h

  • Committer: Mark Atwood
  • Date: 2011-06-27 19:01:37 UTC
  • mfrom: (2318.6.90 refactor16)
  • Revision ID: me@mark.atwood.name-20110627190137-iflt3vku0kw77l8a
mergeĀ lp:~olafvdspek/drizzle/refactor17

Show diffs side-by-side

added added

removed removed

Lines of Context:
1592
1592
  Item* copy_andor_structure(Session *session)
1593
1593
  {
1594
1594
    Item_cond_and *item;
1595
 
    if ((item= new Item_cond_and(session, this)))
1596
 
       item->copy_andor_arguments(session, this);
 
1595
    item= new Item_cond_and(session, this);
 
1596
    item->copy_andor_arguments(session, this);
1597
1597
    return item;
1598
1598
  }
1599
1599
  Item *neg_transformer(Session *session);
1622
1622
  Item* copy_andor_structure(Session *session)
1623
1623
  {
1624
1624
    Item_cond_or *item;
1625
 
    if ((item= new Item_cond_or(session, this)))
1626
 
      item->copy_andor_arguments(session, this);
 
1625
    item= new Item_cond_or(session, this);
 
1626
    item->copy_andor_arguments(session, this);
1627
1627
    return item;
1628
1628
  }
1629
1629
  Item *neg_transformer(Session *session);