aglinxinyuan opened a new issue, #5793: URL: https://github.com/apache/texera/issues/5793
### Task Summary `MapOpDesc`, `FilterOpDesc`, and `FlatMapOpDesc` are tiny abstract `LogicalOp` bases that establish the contract for the runtime-reconfiguration delegation pattern. None has a `<srcClassName>Spec.scala`, so a regression that breaks the inheritance, the `runtimeReconfiguration` delegation, or the abstract-class shape would land silently. ### Scope | Source class | Lines | What's currently un-pinned | | --- | --- | --- | | `common/workflow-operator/.../flatmap/FlatMapOpDesc.scala` | 24 | abstract-class shape; assignable as `LogicalOp` | | `common/workflow-operator/.../map/MapOpDesc.scala` | 38 | `runtimeReconfiguration` delegates to `newOpDesc.getPhysicalOp` and returns `Success(physicalOp, None)` | | `common/workflow-operator/.../filter/FilterOpDesc.scala` | 39 | same `runtimeReconfiguration` delegation as `MapOpDesc` | ### Out of scope No production-code changes. One `<srcClassName>Spec.scala` per source class, all under `common/workflow-operator/src/test/scala/`. ### Task Type - [x] Testing / QA -- 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]
