| 709 | // statement. |
| 710 | |
| 711 | static bool isPermanentBlob(const dsc& src) |
| 712 | { |
| 713 | if (src.isBlob()) |
| 714 | { |
| 715 | const bid* srcBlobID = reinterpret_cast<bid*>(src.dsc_address); |
| 716 | return (srcBlobID->bid_internal.bid_relation_id != 0); |
| 717 | } |
| 718 | |
| 719 | return false; |
| 720 | } |
| 721 | |
| 722 | void InternalStatement::putExtBlob(thread_db* tdbb, dsc& src, dsc& dst) |
| 723 | { |
no test coverage detected