diff options
author | bell@sanja.is.com.ua <> | 2003-01-30 14:35:07 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2003-01-30 14:35:07 +0200 |
commit | 5ed5dac01bebba79822714bffe4fb8b3c538bd90 (patch) | |
tree | 5b530ee7187eee79fb4cff2beb75c3246b0a89cd /sql/item.h | |
parent | 0469dd4993387cce805bc7d52b8b6408183c9484 (diff) | |
download | mariadb-git-5ed5dac01bebba79822714bffe4fb8b3c538bd90.tar.gz |
cyclic reference test removed, becouse testing of Item::fixed field apply more strict limitation
Diffstat (limited to 'sql/item.h')
-rw-r--r-- | sql/item.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/sql/item.h b/sql/item.h index ef8d722b76d..84ddcb98baf 100644 --- a/sql/item.h +++ b/sql/item.h @@ -92,7 +92,6 @@ public: virtual bool get_date(TIME *ltime,bool fuzzydate); virtual bool get_time(TIME *ltime); virtual bool is_null() { return 0; }; - virtual bool check_loop(uint id); virtual void top_level_item() {} virtual Item * get_same() { return this; } virtual Item * get_tmp_table_item() { return get_same(); } @@ -500,7 +499,6 @@ public: enum Item_result result_type () const { return (*ref)->result_type(); } enum_field_types field_type() const { return (*ref)->field_type(); } table_map used_tables() const { return (*ref)->used_tables(); } - bool check_loop(uint id); }; class Item_in_subselect; @@ -689,10 +687,6 @@ public: enum Type type() const { return DEFAULT_VALUE_ITEM; } bool eq(const Item *item, bool binary_cmp) const; bool fix_fields(THD *, struct st_table_list *, Item **); - bool check_loop(uint id) - { - return Item_field::check_loop(id) || arg->check_loop(id); - } void set_outer_resolving() { arg->set_outer_resolving(); } void print(String *str); virtual bool basic_const_item() const { return true; } |