This is an automated email from the ASF dual-hosted git repository.

jark pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/fluss.git


The following commit(s) were added to refs/heads/main by this push:
     new e2d06573a [hotfix][lance] Fix compile problem in LanceTieringTest 
(#2928)
e2d06573a is described below

commit e2d06573a204cb7cb23f9555d1bf5794924f5733
Author: Jark Wu <[email protected]>
AuthorDate: Wed Mar 25 14:46:49 2026 +0800

    [hotfix][lance] Fix compile problem in LanceTieringTest (#2928)
---
 .../java/org/apache/fluss/lake/lance/tiering/LanceTieringTest.java     | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/fluss-lake/fluss-lake-lance/src/test/java/org/apache/fluss/lake/lance/tiering/LanceTieringTest.java
 
b/fluss-lake/fluss-lake-lance/src/test/java/org/apache/fluss/lake/lance/tiering/LanceTieringTest.java
index 896bd19a3..64dae3696 100644
--- 
a/fluss-lake/fluss-lake-lance/src/test/java/org/apache/fluss/lake/lance/tiering/LanceTieringTest.java
+++ 
b/fluss-lake/fluss-lake-lance/src/test/java/org/apache/fluss/lake/lance/tiering/LanceTieringTest.java
@@ -381,7 +381,8 @@ class LanceTieringTest {
                         .property(ConfigOptions.TABLE_DATALAKE_ENABLED, true)
                         .customProperties(customProperties)
                         .build();
-        TableInfo tableInfo = TableInfo.of(tablePath, 0, 1, descriptor, 1L, 
1L);
+        TableInfo tableInfo =
+                TableInfo.of(tablePath, 0, 1, descriptor, 
DEFAULT_REMOTE_DATA_DIR, 1L, 1L);
 
         List<LanceWriteResult> lanceWriteResults = new ArrayList<>();
         SimpleVersionedSerializer<LanceWriteResult> writeResultSerializer =

Reply via email to