| 392 | } |
| 393 | |
| 394 | bool searchStack(const ValueExprNode* node, const ValueExprNodeStack& stack) |
| 395 | { |
| 396 | for (ValueExprNodeStack::const_iterator iter(stack); iter.hasData(); ++iter) |
| 397 | { |
| 398 | if (fieldEqual(node, iter.object())) |
| 399 | return true; |
| 400 | } |
| 401 | |
| 402 | return false; |
| 403 | } |
| 404 | |
| 405 | double getCardinality(thread_db* tdbb, jrd_rel* relation, const Format* format) |
| 406 | { |
no test coverage detected