~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/cache_str.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
#ifndef DRIZZLED_ITEM_CACHE_STR_H
23
23
#define DRIZZLED_ITEM_CACHE_STR_H
24
24
 
25
 
namespace drizzled
26
 
{
27
 
 
28
25
class Item_cache_str: public Item_cache
29
26
{
30
27
  char buffer[STRING_BUFFER_USUAL_SIZE];
37
34
  double val_real();
38
35
  int64_t val_int();
39
36
  String* val_str(String *) { assert(fixed == 1); return value; }
40
 
  type::Decimal *val_decimal(type::Decimal *);
 
37
  my_decimal *val_decimal(my_decimal *);
41
38
  enum Item_result result_type() const { return STRING_RESULT; }
42
39
  const CHARSET_INFO *charset() const { return value->charset(); };
43
40
  int save_in_field(Field *field, bool no_conversions);
44
41
};
45
42
 
46
 
} /* namespace drizzled */
47
 
 
48
43
#endif /* DRIZZLED_ITEM_CACHE_STR_H */