Claus Pedersen
Member³
I beleive this bug is new to 7.1.5:
I have a pl/sql table and an index variable.
When I point the mouse cursor on an element, the element is not shown, but the content of the index variable.
E.g.:
When I hold the mourse cursor over myTable, nothing is shown, this is a known bug.
When I hold the mouse over (i), the tip says "i=1", which is OK.
When I hold the mouse over myColumn, the tip still says "i=1". Is this correct behaviour?
I have a pl/sql table and an index variable.
When I point the mouse cursor on an element, the element is not shown, but the content of the index variable.
E.g.:
Code:
FOR i IN myTable.first .. myTable.last LOOP
myTable(i).myColumn := i*2+1;
END LOOP;
When I hold the mouse over (i), the tip says "i=1", which is OK.
When I hold the mouse over myColumn, the tip still says "i=1". Is this correct behaviour?