{
for (String value : stringLefts) {
for (String pattern : stringLefts) {
Boolean expected = null;
if (value != null && pattern != null) {
Regex regex = LikeUtils.likeToPattern(pattern, '\\');
expected = LikeUtils.regexMatches(regex, Slices.copiedBuffer(value, UTF_8));
}
assertExecute(generateExpression("%s like %s", value, pattern), expected);
}
}