~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/cmpfunc.h

  • Committer: Lee Bieber
  • Date: 2011-03-29 22:31:41 UTC
  • mfrom: (2257.1.3 build)
  • Revision ID: kalebral@gmail.com-20110329223141-yxc22h3l2he58sk0
Merge Andrew - 743842: Build failure using GCC 4.6
Merge Stewart - 738022: CachedDirectory silently fails to add entries if stat() fails
Merge Olaf - Common fwd: add copyright, add more declaration

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#include <drizzled/item/sum.h>
35
35
#include <drizzled/qsort_cmp.h>
36
36
 
37
 
namespace drizzled
38
 
{
 
37
namespace drizzled {
39
38
 
40
39
extern Item_result item_cmp_type(Item_result a,Item_result b);
41
40
 
42
 
class Item_bool_func2;
43
 
class Arg_comparator;
44
 
class Item_sum_hybrid;
45
 
class Item_row;
46
 
class Session;
47
 
 
48
41
typedef int (Arg_comparator::*arg_cmp_func)();
49
42
 
50
43
typedef int (*Item_field_cmpfunc)(Item_field *f1, Item_field *f2, void *arg);
212
205
};
213
206
 
214
207
 
215
 
class Item_cache;
216
208
#define UNKNOWN ((bool)-1)
217
209
 
218
210
 
388
380
  virtual void print(String *str);
389
381
};
390
382
 
391
 
class Item_maxmin_subselect;
392
 
 
393
383
/*
394
384
  trigcond<param>(arg) ::= param? arg : TRUE
395
385
 
1322
1312
 
1323
1313
/* Functions used by HAVING for rewriting IN subquery */
1324
1314
 
1325
 
class Item_in_subselect;
1326
 
 
1327
1315
/*
1328
1316
  This is like IS NOT NULL but it also remembers if it ever has
1329
1317
  encountered a NULL.
1409
1397
};
1410
1398
 
1411
1399
 
1412
 
typedef class Item COND;
1413
 
 
1414
1400
class Item_cond :public item::function::Boolean
1415
1401
{
1416
1402
protected: