You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hudi-spark-datasource/hudi-spark/src/test/java/org/apache/hudi/client/functional/TestHoodieBackedMetadata.java
-5
Original file line number
Diff line number
Diff line change
@@ -1980,9 +1980,6 @@ public void testColStatsPrefixLookup() throws IOException {
1980
1980
1981
1981
// there are 3 partitions in total and 2 commits. total entries should be 6.
1982
1982
assertEquals(result.size(), 6);
1983
-
result.forEach(entry -> {
1984
-
//LOG.warn("Prefix search entries just for record key col : " + entry.getRecordKey().toString() + " :: " + entry.getData().getColumnStatMetadata().get().toString());
1985
-
});
1986
1983
1987
1984
// prefix search for col(_hoodie_record_key) and first partition. only 2 files should be matched
@@ -1991,7 +1988,6 @@ public void testColStatsPrefixLookup() throws IOException {
1991
1988
// 1 partition and 2 commits. total entries should be 2.
1992
1989
assertEquals(result.size(), 2);
1993
1990
result.forEach(entry -> {
1994
-
// LOG.warn("Prefix search entries for record key col and first partition : " + entry.getRecordKey().toString() + " :: " + entry.getData().getColumnStatMetadata().get().toString());
@@ -2011,7 +2007,6 @@ public void testColStatsPrefixLookup() throws IOException {
2011
2007
// 1 partition and 2 commits. total entries should be 2.
2012
2008
assertEquals(result.size(), 2);
2013
2009
result.forEach(entry -> {
2014
-
// LOG.warn("Prefix search entries for record key col and first partition : " + entry.getRecordKey().toString() + " :: " + entry.getData().getColumnStatMetadata().get().toString());
0 commit comments