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

Fix backport error - still untested

This commit is contained in:
asfernandes 2010-10-27 17:42:53 +00:00
parent ebd34187ea
commit dd3feba874

View File

@ -2256,10 +2256,6 @@ static dsc* evlPower(Jrd::thread_db* tdbb, const SysFunction* function, Jrd::jrd
double v1 = MOV_get_double(value1);
double v2 = MOV_get_double(value2);
if ((v1 == 0 && v2 < 0) ||
(v1 < 0 && !(value2->isExact() && value2->dsc_scale == 0)))
if ((v1 == 0 && v2 < 0) ||
(v1 < 0 &&
(!value2->isExact() ||