aokolnychyi commented on a change in pull request #1335:
URL: https://github.com/apache/iceberg/pull/1335#discussion_r470043363
##########
File path:
spark2/src/test/java/org/apache/iceberg/spark/source/TestSparkTableUtil.java
##########
@@ -239,18 +238,13 @@ public void testImportWithNameMapping() throws Exception {
List<String> actual = spark.read().format("iceberg").load(DB_NAME +
".target_table")
.select("data")
.sort("data")
- .filter("data<'c'")
- .collectAsList()
- .stream()
- .map(r -> r.getString(0))
- .collect(Collectors.toList());
+ .filter("data >= 'b'")
Review comment:
This would fail before the PR as the metrics were imported in the wrong
way. The previous predicate did not trigger this issue, so I changed it.
----------------------------------------------------------------
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]