Description
If a query contains "like" conditions with escaped wildcards, but without unescaped wildcards, then the result does not include all rows in some cases. The reason is that such conditions are converted to "=", but the escaped wildcards are not unescaped. For example, the condition "[prop] like '10%'" is converted to "[prop] = '10%'" instead of "[prop] = '10%'". If there is an index for that property, the expected result is not found.