Claus Pedersen
Member³
I have the following piece of code with two records, the first embedded in the other:
	
	
	
		
Code completion after "myVar.myRec." gives a list of items in the record "rec", I expected a list of elements in "rec_inner" (the type of the attribute myRec).
Can you put this in the pile of "requests for future error corrections"?
				
			
		Code:
	
	<...>
  TYPE rec_inner IS RECORD (
    a NUMBER,
    b NUMBER);
  TYPE rec IS RECORD (
    x     NUMBER,
    y     NUMBER,
    myRec rec_inner);
  myVar rec;
BEGIN
  myVar.myRec.
<...>
	Can you put this in the pile of "requests for future error corrections"?