aglinxinyuan opened a new issue, #5806: URL: https://github.com/apache/texera/issues/5806
### Task Summary Four text-search/match operator descriptors under `common/workflow-operator/` have no `<srcClassName>Spec.scala`. They share a common shape — match/filter tuples by a string predicate on a column — and each contributes operator metadata, physical-op wiring, and (for DictionaryMatcher) output-schema propagation that drift silently if untested. ### Scope | Source class | Lines | What's currently un-pinned | | --- | --- | --- | | `keywordSearch/KeywordSearchOpDesc.scala` | 78 | operatorInfo (`Keyword Search`, SEARCH_GROUP, 1-in/1-out, supportReconfiguration); `isCaseSensitive` default false; getPhysicalOp wires `KeywordSearchOpExec` | | `substringSearch/SubstringSearchOpDesc.scala` | 77 | operatorInfo (`Substring Search`, SEARCH_GROUP); `isCaseSensitive` default false; getPhysicalOp wires `SubstringSearchOpExec` | | `regex/RegexOpDesc.scala` | 75 | operatorInfo (`Regular Expression`, SEARCH_GROUP); getPhysicalOp wires `RegexOpExec` | | `dictionary/DictionaryMatcherOpDesc.scala` | 92 | operatorInfo (`Dictionary matcher`, SEARCH_GROUP); schema propagation — blank `resultAttribute` → null, non-blank → input schema + BOOLEAN result column | ### Out of scope No production-code changes. One `<srcClassName>Spec.scala` per source class. ### 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]
