8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 14:03:07 +01:00

Fixed the issue with ROW_COUNT being cleared after SUSPEND.

This commit is contained in:
dimitr 2006-01-25 12:11:37 +00:00
parent 891454a50e
commit dee763fff0

View File

@ -976,6 +976,8 @@ void EXE_start(thread_db* tdbb, jrd_req* request, jrd_tra* transaction)
request->req_records_inserted = 0;
request->req_records_deleted = 0;
request->req_records_affected.clear();
/* CVC: set up to count virtual operations on SQL views. */
request->req_view_flags = 0;
@ -1906,8 +1908,6 @@ static jrd_nod* looper(thread_db* tdbb, jrd_req* request, jrd_nod* in_node)
jrd_nod* node = in_node;
request->req_records_affected.clear();
// Catch errors so we can unwind cleanly
bool error_pending = false;