MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / isNullable

Method isNullable

src/yvalve/why.cpp:322–337  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

320}
321
322FB_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
339int SQLDAMetadata::getSubType(CheckStatusWrapper* status, unsigned index)
340{

Callers 15

makeMethod · 0.45
getDescMethod · 0.45
initResultFunction · 0.45
makeAbsFunction · 0.45
makeAsciiCharFunction · 0.45
makeBinFunction · 0.45
makeBinShiftFunction · 0.45
makeBlobAppendFunction · 0.45
makeCeilFloorFunction · 0.45
makeHashFunction · 0.45
makeDecode64Function · 0.45
makeEncode64Function · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected