| 728 | } |
| 729 | |
| 730 | void InternalStatement::getExtBlob(thread_db* tdbb, const dsc& src, dsc& dst) |
| 731 | { |
| 732 | fb_assert(dst.dsc_length == src.dsc_length); |
| 733 | fb_assert(dst.dsc_length == sizeof(bid)); |
| 734 | |
| 735 | if (isPermanentBlob(src) || (m_transaction->getScope() == traCommon && m_intConnection.isCurrent())) |
| 736 | memcpy(dst.dsc_address, src.dsc_address, sizeof(bid)); |
| 737 | else |
| 738 | Statement::getExtBlob(tdbb, src, dst); |
| 739 | } |
| 740 | |
| 741 | |
| 742 |
nothing calls this directly
no test coverage detected