nsivabalan commented on a change in pull request #1402:
URL: https://github.com/apache/incubator-hudi/pull/1402#discussion_r415476473
##########
File path:
hudi-client/src/test/java/org/apache/hudi/client/TestHoodieClientOnCopyOnWriteStorage.java
##########
@@ -80,9 +83,22 @@
import static org.mockito.Mockito.when;
@SuppressWarnings("unchecked")
+@RunWith(Parameterized.class)
public class TestHoodieClientOnCopyOnWriteStorage extends TestHoodieClientBase
{
private static final Logger LOG =
LogManager.getLogger(TestHoodieClientOnCopyOnWriteStorage.class);
+ private final IndexType indexType;
+
+ @Parameterized.Parameters(name = "{index}: Test with IndexType={0}")
+ public static Collection<Object[]> data() {
+ Object[][] data =
+ new Object[][] {{IndexType.BLOOM}};
Review comment:
@vinothchandar : have removed other index types to see travis CI
succeed. I got
`
The job exceeded the maximum time limit for jobs, and has been terminated.`
in travis CI when enabled.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]