-
Feature Request
-
Resolution: Done
-
L3 - Default
-
7.13.0
-
None
To reproduce:
Given:
Create a task with name "Test", complete it
When:
- Call POST /history/task with taskNameLike=%test%
- Call POST /history/task with taskNameLike=%Test%
Then:
- Provides no result
- Provides a result
Expected:
It would be nice if descriptionLike for Task queries and taskDescriptionLike for Historical Task queries could be case insensitive as well.
Note:
This is inconsistent with nameLike for Task queries, which are case insensitive as of https://jira.camunda.com/browse/CAM-6363
See also:
https://jira.camunda.com/browse/CAM-6472
https://jira.camunda.com/browse/CAM-6363
https://github.com/camunda/camunda-bpm-platform/commit/22de77b18493c73fbe76bd10ed5e31b496eb443e
nameLike, Tasks, does have UPPER(): https://github.com/camunda/camunda-bpm-platform/blob/22de77b18493c73fbe76bd10ed5e31b496eb443e/engine/src/main/resources/org/camunda/bpm/engine/impl/mapping/entity/Task.xml#L260
descriptionLIke, Tasks, no UPPER(): https://github.com/camunda/camunda-bpm-platform/blob/22de77b18493c73fbe76bd10ed5e31b496eb443e/engine/src/main/resources/org/camunda/bpm/engine/impl/mapping/entity/Task.xml#L265
taskNameLike, Historical Tasks, no UPPER(): https://github.com/camunda/camunda-bpm-platform/blob/22de77b18493c73fbe76bd10ed5e31b496eb443e/engine/src/main/resources/org/camunda/bpm/engine/impl/mapping/entity/HistoricTaskInstance.xml#L300
taskDescriptionLike, Historical Tasks, no UPPER(): https://github.com/camunda/camunda-bpm-platform/blob/22de77b18493c73fbe76bd10ed5e31b496eb443e/engine/src/main/resources/org/camunda/bpm/engine/impl/mapping/entity/HistoricTaskInstance.xml#L291