| 1586 | |
| 1587 | |
| 1588 | ISC_STATUS API_ROUTINE isc_array_lookup_bounds(ISC_STATUS* userStatus, FB_API_HANDLE* dbHandle, FB_API_HANDLE* traHandle, |
| 1589 | const SCHAR* relationName, const SCHAR* fieldName, ISC_ARRAY_DESC* desc) |
| 1590 | { |
| 1591 | StatusVector status(userStatus); |
| 1592 | CheckStatusWrapper statusWrapper(&status); |
| 1593 | |
| 1594 | try |
| 1595 | { |
| 1596 | RefPtr<YAttachment> attachment(translateHandle(attachments, dbHandle)); |
| 1597 | RefPtr<YTransaction> transaction(translateHandle(transactions, traHandle)); |
| 1598 | |
| 1599 | iscArrayLookupBoundsImpl(attachment, transaction, relationName, fieldName, desc); |
| 1600 | } |
| 1601 | catch (const Exception& e) |
| 1602 | { |
| 1603 | e.stuffException(&statusWrapper); |
| 1604 | } |
| 1605 | |
| 1606 | return status[1]; |
| 1607 | } |
| 1608 | |
| 1609 | |
| 1610 | ISC_STATUS API_ROUTINE isc_array_lookup_desc(ISC_STATUS* userStatus, FB_API_HANDLE* dbHandle, FB_API_HANDLE* traHandle, |
nothing calls this directly
no test coverage detected