1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

fixed bug of derived table in subselect

fixed bug in error handling


mysql-test/r/subselect.result:
  test of error handling
  test of derived tables inside subselect
mysql-test/t/subselect.test:
  test of error handling
  test of derived tables inside subselect
sql/sql_class.cc:
  fixed error handling error
sql/sql_lex.h:
  fifex layout
sql/sql_parse.cc:
  fixed processing of derived tables
sql/sql_select.cc:
  more quick abort on error
This commit is contained in:
unknown
2002-11-13 11:59:03 +02:00
parent 0c59356895
commit 6ed18d1c9f
6 changed files with 36 additions and 16 deletions

View File

@ -336,7 +336,7 @@ public:
}
st_select_lex* outer_select();
st_select_lex* next_select() { return (st_select_lex*) next; }
st_select_lex* next_select_in_list()
st_select_lex* next_select_in_list()
{
return (st_select_lex*) link_next;
}