diff options
author | unknown <bell@sanja.is.com.ua> | 2002-10-13 14:25:16 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2002-10-13 14:25:16 +0300 |
commit | a299a27021a7bdd65f93f99f9eb0003f082b305d (patch) | |
tree | e50e70457b66196d793e32095a4bb48595e9bae3 /sql/item_subselect.h | |
parent | 102cec14653cf1bacbcff81eee9b726a85c145b1 (diff) | |
download | mariadb-git-a299a27021a7bdd65f93f99f9eb0003f082b305d.tar.gz |
fixed bug of multi-level EXPLAIN
mysql-test/r/subselect.result:
test of multi-level EXPLAIN
mysql-test/t/subselect.test:
test of multi-level EXPLAIN
Diffstat (limited to 'sql/item_subselect.h')
-rw-r--r-- | sql/item_subselect.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/item_subselect.h b/sql/item_subselect.h index 79b6b3a4292..33f82982708 100644 --- a/sql/item_subselect.h +++ b/sql/item_subselect.h @@ -179,8 +179,9 @@ public: class subselect_single_select_engine: public subselect_engine { - my_bool executed; /* simple subselect is executed */ + my_bool prepared; /* simple subselect is prepared */ my_bool optimized; /* simple subselect is optimized */ + my_bool executed; /* simple subselect is executed */ st_select_lex *select_lex; /* corresponding select_lex */ JOIN * join; /* corresponding JOIN structure */ public: |