nsivabalan commented on a change in pull request #1402: [WIP][HUDI-407] Adding
Simple Index
URL: https://github.com/apache/incubator-hudi/pull/1402#discussion_r405068106
##########
File path:
hudi-client/src/test/java/org/apache/hudi/TestHoodieClientOnCopyOnWriteStorage.java
##########
@@ -79,9 +82,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},{IndexType.GLOBAL_BLOOM},{IndexType.SIMPLE}};
Review comment:
aprrox 2 mins per index type.
----------------------------------------------------------------
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]
With regards,
Apache Git Services