diff options
author | unknown <bell@sanja.is.com.ua> | 2002-11-13 11:59:03 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2002-11-13 11:59:03 +0200 |
commit | 6ed18d1c9fa444eec6cbb5c5662a13ce7f759e4d (patch) | |
tree | 2722c35cc22b1701afca3e2a985b9b2845e1214c /sql/sql_class.cc | |
parent | 0c59356895585b379a599345547c570233c93d50 (diff) | |
download | mariadb-git-6ed18d1c9fa444eec6cbb5c5662a13ce7f759e4d.tar.gz |
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
Diffstat (limited to 'sql/sql_class.cc')
-rw-r--r-- | sql/sql_class.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sql/sql_class.cc b/sql/sql_class.cc index 887ee262777..f33d0f2ca28 100644 --- a/sql/sql_class.cc +++ b/sql/sql_class.cc @@ -873,7 +873,6 @@ bool select_singleval_subselect::send_data(List<Item> &items) DBUG_ENTER("select_singleval_subselect::send_data"); Item_singleval_subselect *it= (Item_singleval_subselect *)item; if (it->assigned()){ - thd->fatal_error= 1; my_message(ER_SUBSELECT_NO_1_ROW, ER(ER_SUBSELECT_NO_1_ROW), MYF(0)); DBUG_RETURN(1); } |