MSCEWI1086

Replaced invalid characters for new identifier

triangle-exclamation

Severity

Low

Description

The given identifier has invalid characters for the output language. Those characters were replaced with their UTF-8 codes.

Example Code

Input Code:

CREATE PROCEDURE PROC1
AS
    "VAR0" int;
    "VAR`/1ͷ" varchar(20);
    "o*/o" float;
    " . " int;
    ". ." int;
    "123Name" int;
    "return" int;
    yield int;
    ident#10 int;
BEGIN
    NULL;
END;

Output Code:

Recommendations

Last updated