8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 22:03:03 +01:00

Fixed CORE-2389 - Wrong matching of SIMILAR TO expression with brackets

This commit is contained in:
asfernandes 2009-03-26 16:18:55 +00:00
parent d3534abb48
commit 62ad8ea507

View File

@ -1311,7 +1311,11 @@ bool SimilarToMatcher<StrConverter, CharType>::Evaluator::match()
}
if (node->len + node->len2 != 0 && p >= end)
return false;
{
ret = false;
state = msReturning;
break;
}
}
if (notInSet(bufferPos, 1, node->str3, node->len3) == 0)