IDE_GetWindowObject and non standard object name

Buzz_ss

Member²
Hi.

I have found some issue when I use plugin procedure IDE_GetWindowObject . As example

Suppose I have two procedures:

SQL:
create or replace procedure "Test" is
begin
  null;
end "Test";

and

SQL:
create or replace procedure Test is
begin
  null;
end Test;

Call

Code:
IDE_GetWindowObject(
 pObjectType, pObjectOwner, pObjectName, pSubObject
);

returns pObjectName = 'Test' for both procedures. In the plugin code, I cannot determine exactly what procedure my window shows now.

Is it bug?
 
Last edited:
Back
Top