LIKE/RLIKE don't produce painless scripts and wrong results are returned, e.g.: ``` SELECT count(*), CASE WHEN text.keyword LIKE '%a%' then 1 ELSE 2 END as c FROM test_termvector GROUP BY t ``` will return one group with value 2.