File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
fluss-lake/fluss-lake-lance/src/test/java/com/alibaba/fluss/lake/lance/tiering Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 3232import org .apache .arrow .vector .ipc .message .ArrowRecordBatch ;
3333import org .junit .jupiter .api .Test ;
3434
35+ import java .util .Arrays ;
3536import java .util .List ;
3637import java .util .concurrent .atomic .AtomicInteger ;
3738import java .util .concurrent .atomic .AtomicLong ;
@@ -44,7 +45,7 @@ public class LanceArrowWriterTest {
4445 @ Test
4546 public void test () throws Exception {
4647 try (BufferAllocator allocator = new RootAllocator (Long .MAX_VALUE )) {
47- List <DataField > fields = List . of (new DataField ("column1" , DataTypes .INT ()));
48+ List <DataField > fields = Arrays . asList (new DataField ("column1" , DataTypes .INT ()));
4849
4950 RowType rowType = new RowType (fields );
5051 final int totalRows = 125 ;
You can’t perform that action at this time.
0 commit comments