yuqi1129 commented on code in PR #8513: URL: https://github.com/apache/gravitino/pull/8513#discussion_r2340927635
########## catalogs/catalog-jdbc-postgresql/src/main/java/org/apache/gravitino/catalog/postgresql/converter/PostgreSqlExceptionConverter.java: ########## @@ -29,23 +29,36 @@ public class PostgreSqlExceptionConverter extends JdbcExceptionConverter { + private static final String DUPLICATE_DATABASE = "42P04"; + private static final String DUPLICATE_SCHEMA = "42P06"; + private static final String DUPLICATE_TABLE = "42P07"; + private static final String INVALID_SCHEMA_NAME = "3D000"; + private static final String INVALID_SCHEMA = "3F000"; + private static final String UNDEFINED_TABLE = "42P01"; + private static final String CONNECTION_EXCEPTION = "08"; // class code Review Comment: What is `class code`? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org