~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/float.h

  • Committer: Monty Taylor
  • Date: 2009-03-18 18:45:23 UTC
  • mto: (950.1.1 mordred)
  • mto: This revision was merged to the branch mainline in revision 943.
  • Revision ID: mordred@inaugust.com-20090318184523-mfbjyj5wkipv4n3b
Moved big tests to big suite. Added make target "make test-big" to allow for easy running of the big tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
22
22
 
23
23
#include <drizzled/item/num.h>
24
24
 
25
 
namespace drizzled
26
 
{
27
 
 
28
25
class Item_float :public Item_num
29
26
{
30
27
  char *presentation;
51
48
  double val_real() { assert(fixed == 1); return value; }
52
49
  int64_t val_int();
53
50
  String *val_str(String*);
54
 
  type::Decimal *val_decimal(type::Decimal *);
 
51
  my_decimal *val_decimal(my_decimal *);
55
52
  bool basic_const_item() const { return 1; }
56
53
  Item *clone_item()
57
54
  { return new Item_float(name, value, decimals, max_length); }
75
72
  }
76
73
 
77
74
  Item *safe_charset_converter(const CHARSET_INFO * const tocs);
 
75
  bool check_vcol_func_processor(unsigned char *)
 
76
  { return false; }
78
77
};
79
78
 
80
 
} /* namespace drizzled */
81
 
 
82
79
#endif /* DRIZZLED_ITEM_FLOAT_H */
83
80