~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/user_var_entry.h

  • Committer: Brian Aker
  • Date: 2010-08-09 18:04:12 UTC
  • mfrom: (1689.3.7 staging)
  • Revision ID: brian@gaz-20100809180412-olurwh51ojllev6p
Merge in heap conversion, and case insensitive patch, and remove need for
M_HASH in session.

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
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
{
45
42
  { 
46
43
    name.str= strdup(arg);
47
44
    name.length= strlen(arg);
48
 
  }
 
45
  };
49
46
 
50
47
  ~user_var_entry()
51
48
  {
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,