aglinxinyuan opened a new issue, #6018: URL: https://github.com/apache/texera/issues/6018
### Is your feature request related to a problem? Three operator function/type enums in `common/workflow-operator` have no unit-test coverage, so their wire contracts (constant → symbol mappings and Jackson serialization) are unpinned and could silently regress. ### Describe the solution you'd like Add `*Spec` test coverage pinning the behavior of: | Source class | Contract to pin | | --- | --- | | `AggregationFunction` | the 6 constants → `sum`/`count`/`average`/`min`/`max`/`concat`; Jackson `@JsonValue` round-trip | | `JoinType` | the 4 constants → `inner`/`left outer`/`right outer`/`full outer`; Jackson round-trip | | `TimeIntervalType` | the 6 constants → `year`…`second` (also `toString`); Jackson round-trip | No production-code changes expected. ### Additional context Part of the ongoing `workflow-operator` unit-test coverage effort. Addressed by https://github.com/apache/texera/pull/6002. -- 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]
