You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating a table with a column of type Interval and specifying a default value with precision, the TAPI generator creates a non-compilable package.
Example code:
createsequenceintervals_seq;
createtableintervals(
id number(9,0) default intervals_seq.nextvalnot nullprimary key,
after_days INTERVAL DAY (4) TO SECOND (0) DEFAULT INTERVAL '360' DAY(3));
exec om_tapigen.compile_api(p_table_name =>'INTERVALS',p_enable_column_defaults => true);
This results in the following definition within the package:
When creating a table with a column of type Interval and specifying a default value with precision, the TAPI generator creates a non-compilable package.
Example code:
This results in the following definition within the package:
However, it should read:
We are using:
Database: Oracle Database 19c
OM_TAPIGEN Version: 0.6.3
The text was updated successfully, but these errors were encountered: