~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.h

  • Committer: Patrick Crews
  • Date: 2010-07-19 22:50:20 UTC
  • mto: (1663.1.2 rollup)
  • mto: This revision was merged to the branch mainline in revision 1664.
  • Revision ID: gleebix@gmail.com-20100719225020-6lhrjnkq3k9lyq0f
Fix of optimizer.test - needed cleanup at the end + updated .result file

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <drizzled/dtcollation.h>
24
24
#include <drizzled/drizzle_time.h>
25
25
#include <drizzled/decimal.h>
 
26
#include <drizzled/sql_bitmap.h>
26
27
#include <drizzled/sql_list.h>
27
28
#include "drizzled/memory/sql_alloc.h"
28
29
#include <drizzled/table.h>
763
764
  bool eq_by_collation(Item *item, bool binary_cmp, const CHARSET_INFO * const cs);
764
765
};
765
766
 
766
 
namespace display {
767
 
const std::string &type(Item::Type type);
768
 
} /* namespace display */
769
 
 
770
 
std::ostream& operator<<(std::ostream& output, const Item &item);
771
 
 
772
767
} /* namespace drizzled */
773
768
 
774
769
/** @TODO Why is this in the middle? */