coverity#1249674 Missing break in switch

Change-Id: I1e957afe1dc35571128fac4432b54e8ae35aa9ab
This commit is contained in:
Caolán McNamara
2014-10-27 13:29:54 +00:00
parent a760198deb
commit 6cbdfedde1

View File

@@ -1978,6 +1978,7 @@ void OSQLParseNode::negateSearchCondition(OSQLParseNode*& pSearchCondition, bool
{
default:
assert(false && "OSQLParseNode::negateSearchCondition: unexpected node type!");
// fall-through
case SQL_NODE_EQUAL:
pNewComparison = new OSQLParseNode(OUString("<>"),SQL_NODE_NOTEQUAL,SQL_NOTEQUAL);
break;