1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

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
This commit is contained in:
unknown
2004-08-24 22:51:23 +03:00
parent 52b735a1a2
commit b8785595b9
5 changed files with 49 additions and 2 deletions

View File

@ -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;