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