summaryrefslogtreecommitdiff
path: root/sql/item_subselect.h
diff options
context:
space:
mode:
authorbell@sanja.is.com.ua <>2005-04-01 02:14:30 +0300
committerbell@sanja.is.com.ua <>2005-04-01 02:14:30 +0300
commit1029e533dff69d5f9cd689c514ed08a99d2c707f (patch)
treebfd8839a822ffd9c3bcccaa970cc506139ae4a9c /sql/item_subselect.h
parent05d4ed14e47e27c86f9a7fabaff7e923d6a4c02c (diff)
downloadmariadb-git-1029e533dff69d5f9cd689c514ed08a99d2c707f.tar.gz
postmerge 4.1->5.0 fixes
Diffstat (limited to 'sql/item_subselect.h')
-rw-r--r--sql/item_subselect.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sql/item_subselect.h b/sql/item_subselect.h
index e12c45b6e13..da13e98f5f4 100644
--- a/sql/item_subselect.h
+++ b/sql/item_subselect.h
@@ -179,7 +179,7 @@ public:
class Item_exists_subselect :public Item_subselect
{
protected:
- longlong value; /* value of this item (boolean: exists/not-exists) */
+ bool value; /* value of this item (boolean: exists/not-exists) */
public:
Item_exists_subselect(st_select_lex *select_lex);
@@ -243,6 +243,8 @@ public:
longlong val_int();
double val_real();
String *val_str(String*);
+ my_decimal *val_decimal(my_decimal *);
+ bool val_bool();
void top_level_item() { abort_on_null=1; }
bool test_limit(st_select_lex_unit *unit);
void print(String *str);