-
Notifications
You must be signed in to change notification settings - Fork 24.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ESQL: Disable tests planned incorrectly on pre-8.13 (failing BWC) #118655
ESQL: Disable tests planned incorrectly on pre-8.13 (failing BWC) #118655
Conversation
Pinging @elastic/es-analytical-engine (Team:Analytics) |
Note: this has no effect on main, but I'd like to keep the files in sync with 8.x for easy backporting. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
Should we enable the auto-backport label, or did you wanna backport manually?
Thanks, Alex.
I do, to re-enable the disabled tests. |
This prevents two tests in `grok` and `dissect` suites - `overwriteName` and `overwriteNameWhere` and one in the `stats` suite - `byStringAndLongWithAlias` - to run against pre-8.13.0 versions. Reason being that coordinators prior to that version can generate invalid node plans, that'd fail (verification) on 8.18+ nodes. (cherry picked from commit 0441555)
…18655) (#118685) * ESQL: Disable grok.OverwriteName* on pre-8.13 BWC tests (#118655) This prevents two tests in `grok` and `dissect` suites - `overwriteName` and `overwriteNameWhere` and one in the `stats` suite - `byStringAndLongWithAlias` - to run against pre-8.13.0 versions. Reason being that coordinators prior to that version can generate invalid node plans, that'd fail (verification) on 8.18+ nodes. (cherry picked from commit 0441555) * re-enabled disabled tests
Prevent `stats.ByStringAndLongWithAlias` from running on pre-8.13 BWC. Related #118655.
Prevent `stats.ByStringAndLongWithAlias` from running on pre-8.13 BWC. Related elastic#118655. (cherry picked from commit 0efdc47)
…astic#118655) (elastic#118685) * ESQL: Disable grok.OverwriteName* on pre-8.13 BWC tests (elastic#118655) This prevents two tests in `grok` and `dissect` suites - `overwriteName` and `overwriteNameWhere` and one in the `stats` suite - `byStringAndLongWithAlias` - to run against pre-8.13.0 versions. Reason being that coordinators prior to that version can generate invalid node plans, that'd fail (verification) on 8.18+ nodes. (cherry picked from commit 0441555) * re-enabled disabled tests
This prevents two tests in
grok
anddissect
suites -overwriteName
andoverwriteNameWhere
and one in thestats
suite -byStringAndLongWithAlias
- to run against pre-8.13.0 versions. Reason being that coordinators prior to that version can generate invalid node plans, that'd fail (verification) on 8.18+ nodes.