~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/field.h

  • Committer: Stewart Smith
  • Date: 2011-01-14 05:13:52 UTC
  • mto: (2086.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 2087.
  • Revision ID: stewart@flamingspork.com-20110114051352-ytdw2wn6thbf4dr8
fix tpyo

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef DRIZZLED_ITEM_FIELD_H
21
21
#define DRIZZLED_ITEM_FIELD_H
22
22
 
23
 
#include <drizzled/item/ident.h>
24
 
 
25
23
namespace drizzled
26
24
{
27
25
 
 
26
extern Item **not_found_item;
28
27
class COND_EQUAL;
29
 
class Item;
30
 
 
31
 
extern Item **not_found_item;
32
28
 
33
29
class Item_field :public Item_ident
34
30
{
89
85
  int64_t val_int_endpoint(bool left_endp, bool *incl_endp);
90
86
  Field *get_tmp_table_field() { return result_field; }
91
87
  Field *tmp_table_field(Table *) { return result_field; }
92
 
  bool get_date(type::Time &ltime,uint32_t fuzzydate);
93
 
  bool get_date_result(type::Time &ltime, uint32_t fuzzydate);
94
 
  bool get_time(type::Time &ltime);
 
88
  bool get_date(type::Time *ltime,uint32_t fuzzydate);
 
89
  bool get_date_result(type::Time *ltime,uint32_t fuzzydate);
 
90
  bool get_time(type::Time *ltime);
95
91
  bool is_null();
96
92
  void update_null_value();
97
93
  Item *get_tmp_table_item(Session *session);