feature_masters
name
app_feature_items
feature_master_id number /fk feature_masters
name vc255 /nn
#api:y
Bug is that this produces PL/SQL APIs with the feature_master_id column repeated twice as follows:
procedure get_row (
p_id in number,
p_feature_master_id out number,
p_feature_master_id out number,
p_name out varchar2
);
procedure insert_row (
p_id in number default null,
p_feature_master_id in number default null,
p_feature_master_id in number default null,
p_name in varchar2 default null
);
procedure update_row (
p_id in number default null,
p_feature_master_id in number default null,
p_feature_master_id in number default null,
p_name in varchar2 default null
);
Reporting an issue from APEX discussion forum thread:
https://forums.oracle.com/ords/apexds/post/quick-sql-bug-in-api-generation-4298
Quick SQL Testcase:
Bug is that this produces PL/SQL APIs with the
feature_master_id
column repeated twice as follows: