summaryrefslogtreecommitdiff
path: root/sql/item.h
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2013-05-07 13:05:09 +0200
committerSergei Golubchik <sergii@pisem.net>2013-05-07 13:05:09 +0200
commitda4280fd58954a98608e61c503a91f47100e8f4f (patch)
treedfc377a1dfbd4d2044a0b799ff5ed6411c7e864f /sql/item.h
parentd18cc84c73398eac5378d1dcd6b9c23fb6af32f6 (diff)
parent55e5a785910059f955088113e95fe520ed86eb3f (diff)
downloadmariadb-git-da4280fd58954a98608e61c503a91f47100e8f4f.tar.gz
mysql-5.5.31 merge
Diffstat (limited to 'sql/item.h')
-rw-r--r--sql/item.h18
1 files changed, 16 insertions, 2 deletions
diff --git a/sql/item.h b/sql/item.h
index 901ebd3b6d8..66e3afa1de9 100644
--- a/sql/item.h
+++ b/sql/item.h
@@ -1,8 +1,8 @@
#ifndef SQL_ITEM_INCLUDED
#define SQL_ITEM_INCLUDED
-/* Copyright (c) 2000, 2011, Oracle and/or its affiliates.
- Copyright (c) 2009, 2013 Monty Program Ab
+/* Copyright (c) 2000, 2013, Oracle and/or its affiliates.
+ Copyright (c) 2009, 2013 Monty Program Ab.
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
@@ -1444,6 +1444,12 @@ public:
Return TRUE if the item points to a column of an outer-joined table.
*/
virtual bool is_outer_field() const { DBUG_ASSERT(fixed); return FALSE; }
+
+ /**
+ Checks if this item or any of its decendents contains a subquery.
+ */
+ virtual bool has_subquery() const { return with_subselect; }
+
Item* set_expr_cache(THD *thd);
virtual Item_equal *get_item_equal() { return NULL; }
@@ -2957,6 +2963,14 @@ public:
DBUG_ASSERT(ref);
return (*ref)->is_outer_field();
}
+
+ /**
+ Checks if the item tree that ref points to contains a subquery.
+ */
+ virtual bool has_subquery() const
+ {
+ return (*ref)->has_subquery();
+ }
};