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

Fixed my patch for CORE-3777 to cure the unexpectedly introduced regression.

This commit is contained in:
dimitr 2012-05-09 13:55:59 +00:00
parent 4ed8969760
commit b266e11a1c

View File

@ -5612,7 +5612,6 @@ jrd_nod* CMP_pass2(thread_db* tdbb, CompilerScratch* csb, jrd_nod* const node, j
case nod_current_timestamp:
case nod_current_date:
case nod_derived_expr:
case nod_stmt_expr:
#ifdef SCROLLABLE_CURSORS
case nod_seek:
#endif
@ -5623,6 +5622,10 @@ jrd_nod* CMP_pass2(thread_db* tdbb, CompilerScratch* csb, jrd_nod* const node, j
}
break;
case nod_stmt_expr:
csb->csb_impure += sizeof(impure_value);
break;
// compute the target descriptor to compute computational class
case nod_multiply: