Claus Pedersen
Member³
I have the following code in an editor:
Note how the 3 is shown as a number (blue text colour) whereas 6 is not.
1E2 and .5 are not recognised as numbers but 0.4 is.
This is also an issue in 15 beta
Code:
DECLARE
i NUMBER;
BEGIN
FOR x IN 3..6 LOOP
i := 1E2 * .5 * 0.4;
END LOOP;
END;
Note how the 3 is shown as a number (blue text colour) whereas 6 is not.
1E2 and .5 are not recognised as numbers but 0.4 is.
This is also an issue in 15 beta