| 5036 | |
| 5037 | |
| 5038 | void YBatch::add(CheckStatusWrapper* status, unsigned count, const void* inBuffer) |
| 5039 | { |
| 5040 | try |
| 5041 | { |
| 5042 | YEntry<YBatch> entry(status, this); |
| 5043 | |
| 5044 | entry.next()->add(status, count, inBuffer); |
| 5045 | } |
| 5046 | catch (const Exception& e) |
| 5047 | { |
| 5048 | e.stuffException(status); |
| 5049 | } |
| 5050 | } |
| 5051 | |
| 5052 | |
| 5053 | void YBatch::addBlob(CheckStatusWrapper* status, unsigned length, const void* inBuffer, ISC_QUAD* blobId, |
no test coverage detected