| 335 | } |
| 336 | |
| 337 | void DsqlBatch::setDefBpb(unsigned parLength, const unsigned char* par) |
| 338 | { |
| 339 | m_defaultBpb.clear(); |
| 340 | m_defaultBpb.add(par, parLength); |
| 341 | setFlag(FLAG_DEFAULT_SEGMENTED, fb_utils::isBpbSegmented(m_defaultBpb.getCount(), m_defaultBpb.begin())); |
| 342 | } |
| 343 | |
| 344 | void DsqlBatch::addBlob(thread_db* tdbb, ULONG length, const void* inBuffer, ISC_QUAD* blobId, |
| 345 | unsigned parLength, const unsigned char* par) |
nothing calls this directly
no test coverage detected