diff options
author | bell@sanja.is.com.ua <> | 2004-11-12 15:36:31 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2004-11-12 15:36:31 +0200 |
commit | 1555469b646733f86692033bb20f500b7be29458 (patch) | |
tree | ab12f1be1300ed43430653785dd80f2a0e814d11 /sql/item_subselect.h | |
parent | 232abd5f6ee8c1deb83533631441b8a5a91a800d (diff) | |
parent | 31f7811183b6dd197cb7643abbe1b56cec72b602 (diff) | |
download | mariadb-git-1555469b646733f86692033bb20f500b7be29458.tar.gz |
merge
Diffstat (limited to 'sql/item_subselect.h')
-rw-r--r-- | sql/item_subselect.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sql/item_subselect.h b/sql/item_subselect.h index 2e25677d617..d0ff3654e48 100644 --- a/sql/item_subselect.h +++ b/sql/item_subselect.h @@ -290,7 +290,7 @@ public: virtual table_map upper_select_const_tables()= 0; static table_map calc_const_tables(TABLE_LIST *); virtual void print(String *str)= 0; - virtual int change_item(Item_subselect *si, select_subselect *result)= 0; + virtual bool change_result(Item_subselect *si, select_subselect *result)= 0; virtual bool no_tables()= 0; }; @@ -315,7 +315,7 @@ public: void exclude(); table_map upper_select_const_tables(); void print (String *str); - int change_item(Item_subselect *si, select_subselect *result); + bool change_result(Item_subselect *si, select_subselect *result); bool no_tables(); }; @@ -336,7 +336,7 @@ public: void exclude(); table_map upper_select_const_tables(); void print (String *str); - int change_item(Item_subselect *si, select_subselect *result); + bool change_result(Item_subselect *si, select_subselect *result); bool no_tables(); }; @@ -366,7 +366,7 @@ public: void exclude(); table_map upper_select_const_tables() { return 0; } void print (String *str); - int change_item(Item_subselect *si, select_subselect *result); + bool change_result(Item_subselect *si, select_subselect *result); bool no_tables(); }; |