~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/user_var_entry.h

  • Committer: Monty Taylor
  • Date: 2010-12-24 02:13:05 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101224021305-e3slv1cyjczqorij
Changed the bzrignore file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef DRIZZLED_USER_VAR_ENTRY_H
22
22
#define DRIZZLED_USER_VAR_ENTRY_H
23
23
 
24
 
#include <drizzled/dtcollation.h>
25
 
#include <drizzled/query_id.h>
 
24
#include "drizzled/query_id.h"
26
25
 
27
26
namespace drizzled
28
27
{
29
28
 
30
 
namespace type { class Decimal; }
31
 
 
32
29
// this is needed for user_vars hash
33
30
class user_var_entry
34
31
{
67
64
  double val_real(bool *null_value);
68
65
  int64_t val_int(bool *null_value) const;
69
66
  String *val_str(bool *null_value, String *str, uint32_t decimals);
70
 
  type::Decimal *val_decimal(bool *null_value, type::Decimal *result);
 
67
  my_decimal *val_decimal(bool *null_value, my_decimal *result);
71
68
  DTCollation collation;
72
69
 
73
70
  bool update_hash(bool set_null, void *ptr, uint32_t length,