diff options
author | monty@hundin.mysql.fi <> | 2001-11-26 02:09:45 +0200 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-11-26 02:09:45 +0200 |
commit | e9677eda60069ee8b2175736e25409e6d1eb4c97 (patch) | |
tree | bee3025aa18e97bb13d513402fb12b2c84f783fa /sql/sql_select.cc | |
parent | 964c292caa48489a3c83504bb4c3adeeac4d9470 (diff) | |
download | mariadb-git-e9677eda60069ee8b2175736e25409e6d1eb4c97.tar.gz |
Add missing exit_cond() to lock_global_read_lock().
Diffstat (limited to 'sql/sql_select.cc')
-rw-r--r-- | sql/sql_select.cc | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/sql/sql_select.cc b/sql/sql_select.cc index 2b2dff1bdac..131362167cb 100644 --- a/sql/sql_select.cc +++ b/sql/sql_select.cc @@ -4116,22 +4116,16 @@ do_select(JOIN *join,List<Item> *fields,TABLE *table,Procedure *procedure) if (error == -3) error=0; /* select_limit used */ } - if (!table) /* If sending data to client */ + if (error < 0) + join->result->send_error(0,NullS); /* purecov: inspected */ + else { - if (error < 0) - join->result->send_error(0,NullS); /* purecov: inspected */ - else + if (!table) // If sending data to client { join_free(join); // Unlock all cursors if (join->result->send_eof()) error= -1; } - } - else if (error < 0) - join->result->send_error(0,NullS); /* purecov: inspected */ - - if (error >= 0) - { DBUG_PRINT("info",("%ld records output",join->send_records)); } if (table) @@ -4226,10 +4220,8 @@ sub_select(JOIN *join,JOIN_TAB *join_tab,bool end_of_records) info->file->unlock_row(); } } while (!(error=info->read_record(info))); - if (error > 0) // Fatal error - return -1; } - else if (error > 0) + if (error > 0) // Fatal error return -1; if (!found && on_expr) |