Why is RC/Migrator analysis not converting DDL to upper case?
For example:
CREATE TABLE "Table_creator.Table_name"
...
The DDL remains case sensitive and the table creator and table name are not converted to upper case.
Release : 20.0
It is the double quotation marks " " that are preventing the translation of the lowercase schema and object names to uppercase.
Without the double quotes, then the lowercase will be converted to uppercase as expected.