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

mcvsubbu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pinot.git


The following commit(s) were added to refs/heads/master by this push:
     new 85bb1fab54 Change list.of to immutableList.of to solve java 8 
compilation (#10929)
85bb1fab54 is described below

commit 85bb1fab54d44e847195e35e3e0b117022985d36
Author: Vivek Iyer Vaidyanathan <vviveki...@gmail.com>
AuthorDate: Thu Jun 15 21:13:39 2023 -0700

    Change list.of to immutableList.of to solve java 8 compilation (#10929)
---
 .../segment/processing/framework/SegmentProcessorFrameworkTest.java    | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/pinot-core/src/test/java/org/apache/pinot/core/segment/processing/framework/SegmentProcessorFrameworkTest.java
 
b/pinot-core/src/test/java/org/apache/pinot/core/segment/processing/framework/SegmentProcessorFrameworkTest.java
index e977ad364c..c0deaf85b5 100644
--- 
a/pinot-core/src/test/java/org/apache/pinot/core/segment/processing/framework/SegmentProcessorFrameworkTest.java
+++ 
b/pinot-core/src/test/java/org/apache/pinot/core/segment/processing/framework/SegmentProcessorFrameworkTest.java
@@ -18,6 +18,7 @@
  */
 package org.apache.pinot.core.segment.processing.framework;
 
+import com.google.common.collect.ImmutableList;
 import java.io.File;
 import java.io.IOException;
 import java.net.URL;
@@ -204,7 +205,7 @@ public class SegmentProcessorFrameworkTest {
 
     SegmentProcessorConfig config =
         new 
SegmentProcessorConfig.Builder().setTableConfig(tableConfig).setSchema(schema).build();
-    SegmentProcessorFramework framework = new 
SegmentProcessorFramework(config, workingDir, List.of(reader));
+    SegmentProcessorFramework framework = new 
SegmentProcessorFramework(config, workingDir, ImmutableList.of(reader));
     List<File> outputSegments = framework.process();
     assertEquals(outputSegments.size(), 1);
     ImmutableSegment segment = 
ImmutableSegmentLoader.load(outputSegments.get(0), ReadMode.mmap);


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org
For additional commands, e-mail: commits-h...@pinot.apache.org

Reply via email to