~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/comp_creator.h

  • Committer: Stewart Smith
  • Author(s): Marko Mäkelä
  • Date: 2010-12-20 03:21:44 UTC
  • mto: (2021.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2022.
  • Revision ID: stewart@flamingspork.com-20101220032144-7aqh2z403u7d7bdp
Merge Revision revid:marko.makela@oracle.com-20101104131215-pfxnpidlrzd4krg0 from MySQL InnoDB

Original revid:marko.makela@oracle.com-20101104131215-pfxnpidlrzd4krg0

Original Authors: Marko Mäkelä <marko.makela@oracle.com>
Original commit message:
row_ins_index_entry(): Note that only CREATE INDEX sets foreign=FALSE.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_COMP_CREATOR_H
21
21
#define DRIZZLED_COMP_CREATOR_H
22
22
 
 
23
namespace drizzled
 
24
{
 
25
 
 
26
class Item;
23
27
class Item_bool_func2;
24
28
 
25
 
 
26
29
class Comp_creator
27
30
{
28
31
public:
43
46
Comp_creator *comp_lt_creator(bool invert);
44
47
Comp_creator *comp_ne_creator(bool invert);
45
48
 
46
 
 
 
49
} /* namespace drizzled */
47
50
 
48
51
#endif /* DRIZZLED_COMP_CREATOR_H */