1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems, Inc.
4
* Copyright (C) 2008 Sun Microsystems
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
17
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20
#include <drizzled/server_includes.h>
21
21
#include <drizzled/session.h>
22
#include "drizzled/internal/m_string.h"
27
24
/** Get the value of a variable as a double. */
36
33
return *(double*) value;
39
35
return (double) *(int64_t*) value;
41
36
case DECIMAL_RESULT:
44
class_decimal2double(E_DEC_FATAL_ERROR, (type::Decimal *)value, &result);
39
my_decimal2double(E_DEC_FATAL_ERROR, (my_decimal *)value, &result);
48
42
case STRING_RESULT:
49
return internal::my_atof(value); // This is null terminated
43
return my_atof(value); // This is null terminated
52
45
assert(1); // Impossible
68
61
return (int64_t) *(double*) value;
71
63
return *(int64_t*) value;
73
64
case DECIMAL_RESULT:
76
((type::Decimal *)(value))->val_int32(E_DEC_FATAL_ERROR, 0, &result);
67
my_decimal2int(E_DEC_FATAL_ERROR, (my_decimal *)value, 0, &result);
80
70
case STRING_RESULT:
83
return internal::my_strtoll10(value, (char**) 0, &error);// String is null terminated
73
return my_strtoll10(value, (char**) 0, &error);// String is null terminated
87
76
assert(1); // Impossible
91
79
return 0L; // Impossible
105
93
str->set_real(*(double*) value, decimals, &my_charset_bin);
109
96
if (!unsigned_flag)
110
97
str->set(*(int64_t*) value, &my_charset_bin);
112
99
str->set(*(uint64_t*) value, &my_charset_bin);
115
101
case DECIMAL_RESULT:
116
class_decimal2string((type::Decimal *)value, 0, str);
102
my_decimal2string(E_DEC_FATAL_ERROR, (my_decimal *)value, 0, 0, 0, str);
119
104
case STRING_RESULT:
120
105
if (str->copy(value, length, collation.collation))
121
106
str= 0; // EOM error
124
108
assert(1); // Impossible
131
114
/** Get the value of a variable as a decimal. */
133
type::Decimal *user_var_entry::val_decimal(bool *null_value, type::Decimal *val)
116
my_decimal *user_var_entry::val_decimal(bool *null_value, my_decimal *val)
135
118
if ((*null_value= (value == 0)))
139
122
case REAL_RESULT:
140
double2_class_decimal(E_DEC_FATAL_ERROR, *(double*) value, val);
123
double2my_decimal(E_DEC_FATAL_ERROR, *(double*) value, val);
144
int2_class_decimal(E_DEC_FATAL_ERROR, *(int64_t*) value, 0, val);
126
int2my_decimal(E_DEC_FATAL_ERROR, *(int64_t*) value, 0, val);
147
128
case DECIMAL_RESULT:
148
val= (type::Decimal *)value;
129
val= (my_decimal *)value;
151
131
case STRING_RESULT:
152
val->store(E_DEC_FATAL_ERROR, value, length, collation.collation);
132
str2my_decimal(E_DEC_FATAL_ERROR, value, length, collation.collation, val);
156
135
assert(1); // Impossible
161
#define extra_size sizeof(double)
183
163
bool user_var_entry::update_hash(bool set_null, void *ptr, uint32_t arg_length,
184
164
Item_result arg_type, const CHARSET_INFO * const cs, Derivation dv,
185
165
bool unsigned_arg)
218
198
memcpy(value, ptr, arg_length);
219
199
if (arg_type == DECIMAL_RESULT)
220
((type::Decimal*)value)->fix_buffer_pointer();
200
((my_decimal*)value)->fix_buffer_pointer();
221
201
length= arg_length;
222
202
collation.set(cs, dv);
223
203
unsigned_flag= unsigned_arg;