This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new d381e12d0 [comments] fix error comments in FileSystemCatalogTest
(#4557)
d381e12d0 is described below
commit d381e12d0a11d9dac45b3ccf1fc3c5e31e6a344c
Author: LsomeYeah <[email protected]>
AuthorDate: Wed Nov 20 19:20:42 2024 +0800
[comments] fix error comments in FileSystemCatalogTest (#4557)
---
.../src/test/java/org/apache/paimon/catalog/FileSystemCatalogTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/paimon-core/src/test/java/org/apache/paimon/catalog/FileSystemCatalogTest.java
b/paimon-core/src/test/java/org/apache/paimon/catalog/FileSystemCatalogTest.java
index 798402c6d..303a9d873 100644
---
a/paimon-core/src/test/java/org/apache/paimon/catalog/FileSystemCatalogTest.java
+++
b/paimon-core/src/test/java/org/apache/paimon/catalog/FileSystemCatalogTest.java
@@ -62,7 +62,7 @@ public class FileSystemCatalogTest extends CatalogTestBase {
.primaryKey("Pk1", "pk2", "pk3")
.build();
- // Create table throws Exception when table is system table
+ // Create table throws Exception if using uppercase when
'allow-upper-case' is false
assertThatExceptionOfType(IllegalArgumentException.class)
.isThrownBy(() -> catalog.createTable(identifier, schema,
false))
.withMessage("Field name [Pk1, Col1] cannot contain upper case
in the catalog.");