| 1011 | } |
| 1012 | |
| 1013 | void insertBigInt(CheckStatusWrapper* status, unsigned char tag, ISC_INT64 value) |
| 1014 | { |
| 1015 | try |
| 1016 | { |
| 1017 | pb->insertBigInt(tag, value); |
| 1018 | } |
| 1019 | catch (const Exception& ex) |
| 1020 | { |
| 1021 | ex.stuffException(status); |
| 1022 | } |
| 1023 | } |
| 1024 | |
| 1025 | void insertBytes(CheckStatusWrapper* status, unsigned char tag, const void* bytes, unsigned length) |
| 1026 | { |
no test coverage detected