~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/cmpfunc.h

  • Committer: Olaf van der Spek
  • Date: 2011-06-27 14:23:35 UTC
  • mto: This revision was merged to the branch mainline in revision 2350.
  • Revision ID: olafvdspek@gmail.com-20110627142335-38y17d8xxczy6ilm
Refactor

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);