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_row.cc | |
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_row.cc')
-rw-r--r-- | sql/item_row.cc | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/sql/item_row.cc b/sql/item_row.cc index dbab041aae5..3cc7e602b15 100644 --- a/sql/item_row.cc +++ b/sql/item_row.cc @@ -120,13 +120,3 @@ void Item_row::set_outer_resolving() for (uint i= 0; i < arg_count; i++) items[i]->set_outer_resolving(); } - -bool Item_row::check_loop(uint id) -{ - if (Item::check_loop(id)) - return 1; - for (uint i= 0; i < arg_count; i++) - if (items[i]->check_loop(id)) - return 1; - return 0; -} |