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 c36efa31e [hotfix] Fix FileFormatTest.testCreateFileFormat
c36efa31e is described below

commit c36efa31e4deda4a8c97ff112da74d3a0183b012
Author: Jingsong <[email protected]>
AuthorDate: Tue May 7 12:57:17 2024 +0800

    [hotfix] Fix FileFormatTest.testCreateFileFormat
---
 paimon-core/src/test/java/org/apache/paimon/FileFormatTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/paimon-core/src/test/java/org/apache/paimon/FileFormatTest.java 
b/paimon-core/src/test/java/org/apache/paimon/FileFormatTest.java
index 5482fb554..08ba9010f 100644
--- a/paimon-core/src/test/java/org/apache/paimon/FileFormatTest.java
+++ b/paimon-core/src/test/java/org/apache/paimon/FileFormatTest.java
@@ -106,7 +106,7 @@ public class FileFormatTest {
         Options tableOptions = new Options();
         tableOptions.set(CoreOptions.FILE_FORMAT, identifier);
         tableOptions.set(CoreOptions.READ_BATCH_SIZE, 1024);
-        tableOptions.setString(identifier + ".hello", "world");
+        tableOptions.setString(identifier.toLowerCase() + ".hello", "world");
         FileFormat fileFormat = CoreOptions.createFileFormat(tableOptions, 
CoreOptions.FILE_FORMAT);
         assertThat(fileFormat instanceof OrcFileFormat).isTrue();
 

Reply via email to