MSCEWI1056

Create Type Not Supported

triangle-exclamation

Severity

Low

Description

This message appears when a transformable Custom Type is defined, to add feedback about the transformable Custom Types being commented.

circle-info

The type definition is commented but still being taken into account for resolving usages, see MSCEWI1062 and MSCEWI1063 for more information.

Example code

Input Code (Oracle):

CREATE TYPE type1 AS OBJECT (column1 INT);

CREATE OR REPLACE PROCEDURE record_procedure
IS
    TYPE record_typ IS RECORD(col1 INTEGER, col2 FLOAT);
BEGIN
    NULL;
END;

Output Code:

Recommendations

Last updated