| 428 | } |
| 429 | |
| 430 | unsigned SQLDAMetadata::getNullOffset(CheckStatusWrapper* status, unsigned index) |
| 431 | { |
| 432 | if (!offsets) |
| 433 | assign(); |
| 434 | |
| 435 | fb_assert(count > index); |
| 436 | return offsets[index].indOffset; |
| 437 | } |
| 438 | |
| 439 | // ATTENTION!!! Keep this method in sync with MsgMetadata::MakeOffsets() |
| 440 | void SQLDAMetadata::assign() |
no test coverage detected