use of org.apache.hadoop.hive.ql.exec.vector.mapjoin.MapJoinTestConfig.MapJoinTestImplementation in project hive by apache.
the class TestMapJoinOperator method executeTest.
private void executeTest(MapJoinTestDescription testDesc, MapJoinTestData testData) throws Exception {
RowTestObjectsMultiSet expectedTestRowMultiSet = createExpectedTestRowMultiSet(testDesc, testData);
// UNDONE: Inner count
System.out.println("*BENCHMARK* expectedTestRowMultiSet rowCount " + expectedTestRowMultiSet.getRowCount() + " totalCount " + expectedTestRowMultiSet.getTotalCount());
// Execute all implementation variations.
for (MapJoinTestImplementation mapJoinImplementation : MapJoinTestImplementation.values()) {
executeTestImplementation(mapJoinImplementation, testDesc, testData, expectedTestRowMultiSet);
}
}
Aggregations