diff options
author | unknown <bell@sanja.is.com.ua> | 2003-07-29 13:00:32 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2003-07-29 13:00:32 +0300 |
commit | 0792c1c8243d8b340a343586d0ea6bb8427691f6 (patch) | |
tree | 1da6fe8bf71777fc1964c8c397daf062b19f9d0c /sql/item.h | |
parent | 329e063774537c14348a46c162afec79fc94d589 (diff) | |
download | mariadb-git-0792c1c8243d8b340a343586d0ea6bb8427691f6.tar.gz |
count HAVING clause elements with select list elements, because agregate function can be present in it (BUG#922)
removerd unused loop_id
mysql-test/r/subselect.result:
test of BUG#922
mysql-test/t/subselect.test:
test of BUG#922
sql/item.cc:
removerd unused loop_id
we need count HAVING clause elements, because agregate function can be present in it
sql/item.h:
removerd unused loop_id
sql/item_subselect.cc:
new name of field
sql/sql_derived.cc:
new name of field
sql/sql_lex.cc:
new name of field
sql/sql_lex.h:
new name of field
sql/sql_select.cc:
new name of field
sql/sql_union.cc:
new name of field
Diffstat (limited to 'sql/item.h')
-rw-r--r-- | sql/item.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/item.h b/sql/item.h index 450cb396787..9df6532a637 100644 --- a/sql/item.h +++ b/sql/item.h @@ -83,7 +83,6 @@ public: }; class Item { - uint loop_id; /* Used to find selfrefering loops */ Item(const Item &); /* Prevent use of these */ void operator=(Item &); public: |