diff options
author | unknown <bell@sanja.is.com.ua> | 2003-01-30 14:35:07 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2003-01-30 14:35:07 +0200 |
commit | a0ddb72d52de3576fb0441e37e169f7cedd1fc1e (patch) | |
tree | 5b530ee7187eee79fb4cff2beb75c3246b0a89cd /sql/item_cmpfunc.h | |
parent | 251320477c1beee475bf50fbeed7431ddfe9fab8 (diff) | |
download | mariadb-git-a0ddb72d52de3576fb0441e37e169f7cedd1fc1e.tar.gz |
cyclic reference test removed, becouse testing of Item::fixed field apply more strict limitation
mysql-test/r/subselect.result:
test of cyclic reference false alarm
mysql-test/t/subselect.test:
test of cyclic reference false alarm
Diffstat (limited to 'sql/item_cmpfunc.h')
-rw-r--r-- | sql/item_cmpfunc.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h index a624067c671..7ae60ba2fc9 100644 --- a/sql/item_cmpfunc.h +++ b/sql/item_cmpfunc.h @@ -354,7 +354,6 @@ public: void print(String *str); bool fix_fields(THD *thd, struct st_table_list *tlist, Item **ref); Item *find_item(String *str); - bool check_loop(uint id); void set_outer_resolving(); }; @@ -637,13 +636,6 @@ class Item_func_in :public Item_int_func const char *func_name() const { return " IN "; } void update_used_tables(); void split_sum_func(Item **ref_pointer_array, List<Item> &fields); - bool check_loop(uint id) - { - DBUG_ENTER("Item_func_in::check_loop"); - if (Item_func::check_loop(id)) - DBUG_RETURN(1); - DBUG_RETURN(item->check_loop(id)); - } bool nulls_in_row(); void set_outer_resolving() { @@ -789,7 +781,6 @@ public: void print(String *str); void split_sum_func(Item **ref_pointer_array, List<Item> &fields); friend int setup_conds(THD *thd,TABLE_LIST *tables,COND **conds); - bool check_loop(uint id); void top_level_item() { abort_on_null=1; } void set_outer_resolving(); }; |