Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
# Backport This will backport the following commits from `main` to `8.x`: - [[ES|QL] Don't suggest unsupported fields (#200544)](#200544) <!--- Backport version: 9.4.3 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) <!--BACKPORT [{"author":{"name":"Stratoula Kalafateli","email":"[email protected]"},"sourceCommit":{"committedDate":"2024-11-18T15:45:25Z","message":"[ES|QL] Don't suggest unsupported fields (#200544)\n\n## Summary\r\n\r\nCloses https://github.com/elastic/kibana/issues/189666\r\n\r\nSpecifically:\r\n\r\n- we do not suggest unsupported fields\r\n- we add a warning if the field is used in the query\r\n\r\n### How to test\r\n\r\n1. Create an index with unsupported fields. I used this\r\n\r\n```\r\nPUT my-index-test-unsupported\r\n{\r\n \"mappings\" : {\r\n \"properties\" : {\r\n \"my_histogram\" : {\r\n \"type\" : \"histogram\"\r\n },\r\n \"my_text\" : {\r\n \"type\" : \"keyword\"\r\n }\r\n }\r\n }\r\n}\r\n\r\nPUT my-index-test-unsupported/_doc/1\r\n{\r\n \"my_text\" : \"histogram_1\",\r\n \"my_histogram\" : {\r\n \"values\" : [0.1, 0.2, 0.3, 0.4, 0.5], \r\n \"counts\" : [3, 7, 23, 12, 6] \r\n }\r\n}\r\n\r\nPUT my-index-test-unsupported/_doc/2\r\n{\r\n \"my_text\" : \"histogram_2\",\r\n \"my_histogram\" : {\r\n \"values\" : [0.1, 0.25, 0.35, 0.4, 0.45, 0.5], \r\n \"counts\" : [8, 17, 8, 7, 6, 2] \r\n }\r\n}\r\n```\r\n\r\n2. Go to the editor and try the autocomplete, it should not suggest the\r\nhistogram field\r\n\r\n<img width=\"998\" alt=\"image\"\r\nsrc=\"https://github.com/user-attachments/assets/2a9b4594-1f8f-4e7a-9ea3-d9086c770178\">\r\n\r\n3. Use a query like `FROM my-index-test-unsupported | KEEP my_histogram\r\n`. You should see a warning\r\n\r\n<img width=\"991\" alt=\"image\"\r\nsrc=\"https://github.com/user-attachments/assets/1bf747da-191f-46e2-b1b8-e5966653f405\">\r\n\r\n\r\n### Checklist\r\n\r\n- [ ] [Unit or functional\r\ntests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)\r\nwere updated or added to match the most common scenarios","sha":"3c3f2c11a9da2a26f75f601ee365af1a227295b6","branchLabelMapping":{"^v9.0.0$":"main","^v8.17.0$":"8.x","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:enhancement","v9.0.0","Feature:ES|QL","Team:ESQL","backport:version","v8.17.0"],"title":"[ES|QL] Don't suggest unsupported fields","number":200544,"url":"https://github.com/elastic/kibana/pull/200544","mergeCommit":{"message":"[ES|QL] Don't suggest unsupported fields (#200544)\n\n## Summary\r\n\r\nCloses https://github.com/elastic/kibana/issues/189666\r\n\r\nSpecifically:\r\n\r\n- we do not suggest unsupported fields\r\n- we add a warning if the field is used in the query\r\n\r\n### How to test\r\n\r\n1. Create an index with unsupported fields. I used this\r\n\r\n```\r\nPUT my-index-test-unsupported\r\n{\r\n \"mappings\" : {\r\n \"properties\" : {\r\n \"my_histogram\" : {\r\n \"type\" : \"histogram\"\r\n },\r\n \"my_text\" : {\r\n \"type\" : \"keyword\"\r\n }\r\n }\r\n }\r\n}\r\n\r\nPUT my-index-test-unsupported/_doc/1\r\n{\r\n \"my_text\" : \"histogram_1\",\r\n \"my_histogram\" : {\r\n \"values\" : [0.1, 0.2, 0.3, 0.4, 0.5], \r\n \"counts\" : [3, 7, 23, 12, 6] \r\n }\r\n}\r\n\r\nPUT my-index-test-unsupported/_doc/2\r\n{\r\n \"my_text\" : \"histogram_2\",\r\n \"my_histogram\" : {\r\n \"values\" : [0.1, 0.25, 0.35, 0.4, 0.45, 0.5], \r\n \"counts\" : [8, 17, 8, 7, 6, 2] \r\n }\r\n}\r\n```\r\n\r\n2. Go to the editor and try the autocomplete, it should not suggest the\r\nhistogram field\r\n\r\n<img width=\"998\" alt=\"image\"\r\nsrc=\"https://github.com/user-attachments/assets/2a9b4594-1f8f-4e7a-9ea3-d9086c770178\">\r\n\r\n3. Use a query like `FROM my-index-test-unsupported | KEEP my_histogram\r\n`. You should see a warning\r\n\r\n<img width=\"991\" alt=\"image\"\r\nsrc=\"https://github.com/user-attachments/assets/1bf747da-191f-46e2-b1b8-e5966653f405\">\r\n\r\n\r\n### Checklist\r\n\r\n- [ ] [Unit or functional\r\ntests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)\r\nwere updated or added to match the most common scenarios","sha":"3c3f2c11a9da2a26f75f601ee365af1a227295b6"}},"sourceBranch":"main","suggestedTargetBranches":["8.x"],"targetPullRequestStates":[{"branch":"main","label":"v9.0.0","branchLabelMappingKey":"^v9.0.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/200544","number":200544,"mergeCommit":{"message":"[ES|QL] Don't suggest unsupported fields (#200544)\n\n## Summary\r\n\r\nCloses https://github.com/elastic/kibana/issues/189666\r\n\r\nSpecifically:\r\n\r\n- we do not suggest unsupported fields\r\n- we add a warning if the field is used in the query\r\n\r\n### How to test\r\n\r\n1. Create an index with unsupported fields. I used this\r\n\r\n```\r\nPUT my-index-test-unsupported\r\n{\r\n \"mappings\" : {\r\n \"properties\" : {\r\n \"my_histogram\" : {\r\n \"type\" : \"histogram\"\r\n },\r\n \"my_text\" : {\r\n \"type\" : \"keyword\"\r\n }\r\n }\r\n }\r\n}\r\n\r\nPUT my-index-test-unsupported/_doc/1\r\n{\r\n \"my_text\" : \"histogram_1\",\r\n \"my_histogram\" : {\r\n \"values\" : [0.1, 0.2, 0.3, 0.4, 0.5], \r\n \"counts\" : [3, 7, 23, 12, 6] \r\n }\r\n}\r\n\r\nPUT my-index-test-unsupported/_doc/2\r\n{\r\n \"my_text\" : \"histogram_2\",\r\n \"my_histogram\" : {\r\n \"values\" : [0.1, 0.25, 0.35, 0.4, 0.45, 0.5], \r\n \"counts\" : [8, 17, 8, 7, 6, 2] \r\n }\r\n}\r\n```\r\n\r\n2. Go to the editor and try the autocomplete, it should not suggest the\r\nhistogram field\r\n\r\n<img width=\"998\" alt=\"image\"\r\nsrc=\"https://github.com/user-attachments/assets/2a9b4594-1f8f-4e7a-9ea3-d9086c770178\">\r\n\r\n3. Use a query like `FROM my-index-test-unsupported | KEEP my_histogram\r\n`. You should see a warning\r\n\r\n<img width=\"991\" alt=\"image\"\r\nsrc=\"https://github.com/user-attachments/assets/1bf747da-191f-46e2-b1b8-e5966653f405\">\r\n\r\n\r\n### Checklist\r\n\r\n- [ ] [Unit or functional\r\ntests](https://www.elastic.co/guide/en/kibana/master/development-tests.html)\r\nwere updated or added to match the most common scenarios","sha":"3c3f2c11a9da2a26f75f601ee365af1a227295b6"}},{"branch":"8.x","label":"v8.17.0","branchLabelMappingKey":"^v8.17.0$","isSourceBranch":false,"state":"NOT_CREATED"}]}] BACKPORT--> Co-authored-by: Stratoula Kalafateli <[email protected]>
- Loading branch information