YannByron commented on code in PR #6377:
URL: https://github.com/apache/paimon/pull/6377#discussion_r2419009798
##########
paimon-spark/paimon-spark-ut/src/test/java/org/apache/paimon/spark/SparkWriteITCase.java:
##########
@@ -339,15 +339,24 @@ public void testWriteWithNestedComplexDefaultValue() {
}
@ParameterizedTest
- @ValueSource(strings = {"order", "zorder", "hilbert"})
- public void testWriteWithClustering(String clusterStrategy) {
+ @CsvSource({
+ "order, true",
+ "zorder, true",
+ "hilbert, true",
+ "order, false",
+ "zorder, false",
+ "hilbert, false"
+ })
+ public void testWriteWithClustering(String clusterStrategy, boolean
useV2Write) {
Review Comment:
Can we optimize this UT so that we can check if there is `Sort` LogicalPlan
here.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]