lihaosky commented on code in PR #27154:
URL: https://github.com/apache/flink/pull/27154#discussion_r2480115672
##########
flink-table/flink-table-planner/src/test/java/org/apache/flink/table/planner/runtime/utils/VectorSearchITCaseBase.java:
##########
@@ -34,8 +36,17 @@
import static org.assertj.core.api.Assertions.assertThatThrownBy;
import static org.assertj.core.api.AssertionsForInterfaceTypes.assertThatList;
-/** ITCase to verify {@code VECTOR_SEARCH} function. */
-public class VectorSearchITCase extends StreamingTestBase {
+/** Base ITCase to verify {@code VECTOR_SEARCH} function. */
+public abstract class VectorSearchITCaseBase {
Review Comment:
I mean do we need to add specific config for subclass? i.e. For
`VectorSearchITCase` in stream case, add
```
env.setParallelism(4)
if (enableObjectReuse) {
this.env.getConfig.enableObjectReuse()
}
```
for batch case, add
https://github.com/apache/flink/blob/master/flink-table/flink-table-planner/src/test/scala/org/apache/flink/table/planner/runtime/utils/BatchTestBase.scala#L78?
--
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]