FANNG1 commented on code in PR #4358:
URL: https://github.com/apache/gravitino/pull/4358#discussion_r1704045131


##########
catalogs/catalog-jdbc-postgresql/src/test/java/org/apache/gravitino/catalog/postgresql/integration/test/CatalogPostgreSqlIT.java:
##########
@@ -292,6 +292,42 @@ void testCreateTableWithSpecialColumnNames() {
     Assertions.assertTrue(column.isPresent());
   }
 
+  @Test
+  void testCreateUpperCaseSchemaAndTable() {
+    // Create table from Gravitino API
+    Column[] columns = columnsWithSpecialNames();
+
+    String tableN = 
GravitinoITUtils.genRandomName("postgresql_it_table").toUpperCase();
+    String schemaN = 
GravitinoITUtils.genRandomName("postgresql_it_schema").toUpperCase();
+
+    // Create a schema with upper case name
+    Schema schema =
+        catalog.asSchemas().createSchema(schemaN, schema_comment, 
Collections.EMPTY_MAP);
+    System.out.println(schema);

Review Comment:
   please remove this



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to