~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/ident.h

  • Committer: Lee Bieber
  • Date: 2010-12-23 23:11:00 UTC
  • mfrom: (2024.1.1 clean)
  • Revision ID: kalebral@gmail.com-20101223231100-0rqirgz7ugkl10yp
Merge Brian - session list cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
namespace drizzled
26
26
{
27
27
 
28
 
class Name_resolution_context;
29
 
class TableList;
30
28
extern uint32_t lower_case_table_names;
31
29
 
32
30
class Item_ident :public Item
94
92
  double val_real();
95
93
  int64_t val_int();
96
94
  String *val_str(String *str);
97
 
  type::Decimal *val_decimal(type::Decimal *dec);
 
95
  my_decimal *val_decimal(my_decimal *dec);
98
96
  void make_field(SendField *tmp_field);
99
97
};
100
98