diff options
author | unknown <bell@sanja.is.com.ua> | 2004-08-24 22:51:23 +0300 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-08-24 22:51:23 +0300 |
commit | b8785595b9ce92e7d555bf6eb27371c9b7e541a6 (patch) | |
tree | 3eed091da43f199b74886d357bd7896b0329c2ac /sql/sql_lex.h | |
parent | 52b735a1a2ddd54ec265844c54690ea846dbcaa8 (diff) | |
download | mariadb-git-b8785595b9ce92e7d555bf6eb27371c9b7e541a6.tar.gz |
new method to detect commands where all VIEWs should be temporary tables (BUG#4803)
mysql-test/r/view.result:
Showing VIEW with VIEWs in subquery
mysql-test/t/view.test:
Showing VIEW with VIEWs in subquery
sql/sql_lex.cc:
new method to detect commands where all VIEWs should be temporary tables
sql/sql_lex.h:
new method to detect commands where all VIEWs should be temporary tables
sql/sql_view.cc:
new method to detect commands where all VIEWs should be temporary tables
debug output added
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index d25381072a5..84b5cf3454b 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -749,6 +749,7 @@ typedef struct st_lex bool can_be_merged(); bool can_use_merged(); + bool can_not_use_merged(); bool only_view_structure(); } LEX; |