1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
*
* Copyright (C) 2008 Sun Microsystems, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#pragma once
#include <drizzled/function/func.h>
namespace drizzled {
/*
This item represents user variable used as out parameter (e.g in LOAD DATA),
and it is supposed to be used only for this purprose. So it is simplified
a lot. Actually you should never obtain its value.
The only two reasons for this thing being an Item is possibility to store it
in List<Item> and desire to place this code somewhere near other functions
working with user variables.
*/
class Item_user_var_as_out_param : public Item
{
str_ref name;
user_var_entry *entry;
public:
Item_user_var_as_out_param(str_ref a) : name(a) {}
/* We should return something different from FIELD_ITEM here */
Type type() const { return STRING_ITEM;}
double val_real();
int64_t val_int();
String *val_str(String*);
type::Decimal *val_decimal(type::Decimal *decimal_buffer);
/* fix_fields() binds variable name with its entry structure */
bool fix_fields(Session*, Item **ref);
virtual void print(String*);
void set_null_value(const charset_info_st*);
void set_value(str_ref, const charset_info_st*);
};
} /* namespace drizzled */
|