0
Fixed
Invalid SQL generated for comments in a schema
Comment generation partially works, but it fails to account for a schema in PostgreSQL code generation.
I've added comments to my tables and columns. The table has a schema specified. However the generated script does not reference the schema. For example:
This is the code that's generated:
This is the code that SHOULD be generated:
I've added comments to my tables and columns. The table has a schema specified. However the generated script does not reference the schema. For example:
This is the code that's generated:
COMMENT ON TABLE "employee" IS 'Represents an employee.';
This is the code that SHOULD be generated:
COMMENT ON TABLE "schema"."employee" IS 'Represents an employee.';
Customer support service by UserEcho
Thanks for a bug report.
I'll let you note when the fix will be available on production.