| 320 | } |
| 321 | |
| 322 | FB_BOOLEAN SQLDAMetadata::isNullable(CheckStatusWrapper* status, unsigned index) |
| 323 | { |
| 324 | if (offsets) |
| 325 | { |
| 326 | fb_assert(count > index); |
| 327 | return offsets[index].type & 1; |
| 328 | } |
| 329 | if (sqlda) |
| 330 | { |
| 331 | fb_assert(sqlda->sqld > (int) index); |
| 332 | return sqlda->sqlvar[index].sqltype & 1; |
| 333 | } |
| 334 | |
| 335 | fb_assert(false); |
| 336 | return FB_FALSE; |
| 337 | } |
| 338 | |
| 339 | int SQLDAMetadata::getSubType(CheckStatusWrapper* status, unsigned index) |
| 340 | { |
no outgoing calls
no test coverage detected